source: trunk/plugin/togap.py @ 25

Last change on this file since 25 was 25, checked in by bastiaans, 19 years ago

plugin/togap.py:

bla

File size: 317 bytes
RevLine 
[23]1#!/usr/bin/env python
2
3from PBSQuery import PBSQuery
4
5class PBSDataGatherer:
6
7        def __init__( self ):
8
9                self.pq = PBSQuery()
[25]10               
11        def getJobList( self ):
[23]12
[25]13                joblist = self.pq.getjobs().items
14                #for name, job in joblist:
15                       
16
[23]17def main():
18
19        gather = PBSDataGatherer()
20
21        print 'blaat'
22
23if __name__ == '__main__':
24        main()
Note: See TracBrowser for help on using the repository browser.