File: example1.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 (15 lines) | stat: -rw-r--r-- 269 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python

from __future__ import print_function
import drmaa


def main():
    """Create a drmaa session and exit"""
    s=drmaa.Session()
    s.initialize()
    print('A session was started successfully')
    s.exit()

if __name__=='__main__':
    main()