File: example6.py

package info (click to toggle)
drmaa 0.7.9-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 360 kB
  • sloc: python: 1,295; makefile: 130; sh: 34
file content (21 lines) | stat: -rw-r--r-- 498 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python

from __future__ import print_function
import drmaa


def main():
    """Query the system."""
    s = drmaa.Session()
    s.initialize()
    print('A DRMAA object was created')
    print('Supported contact strings: ' + s.contact)
    print('Supported DRM systems: ' + str(s.drmsInfo))
    print('Supported DRMAA implementations: ' + str(s.drmaaImplementation))
    print('Version ' + str(s.version))

    print('Exiting')
    s.exit()
    
if __name__=='__main__':
    main()