File: __init__.py

package info (click to toggle)
nordugrid-arc 7.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 29,364 kB
  • sloc: cpp: 136,663; python: 12,452; perl: 12,313; php: 11,408; sh: 10,878; ansic: 3,305; makefile: 3,161; xml: 180; sql: 130; javascript: 53; sed: 30
file content (18 lines) | stat: -rw-r--r-- 470 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
try:

    # Import/initialise all the swig modules (low level wrappers)
    import _arc

    # Import the high level wrappers (proxy classes) into this namespace
    from arc.common import *
    from arc.loader import *
    from arc.message import *
    from arc.compute import *
    from arc.communication import *
    from arc.credential import *
    from arc.data import *
    from arc.delegation import *
    from arc.security import *

except ImportError:
    pass