Package saga :: Package job
[frames] | no frames]

Source Code for Package saga.job

 1  #  Copyright (c) 2005-2009 Hartmut Kaiser 
 2  #  Copyright (c) 2010 Ole Weidner 
 3  #  
 4  #  Distributed under the Boost Software License, Version 1.0. (See accompanying 
 5  #  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 
 6   
 7  # This file must be located inside a directory named SAGA/job which in turn  
 8  # should be located in a directory listed in your PYTHON_PATH 
 9   
10  """ 
11  The SAGA Job API package.  
12   
13  The SAGA job API is used to submit and monitor jobs (computational tasks) on  
14  local and remote queueing systems and grid/distributed middleware. 
15   
16  More on the concepts of the SAGA API can be found here: 
17  U{http://www.gridforum.org/documents/GFD.90.pdf} 
18  """ 
19   
20  from _job import *            # import job package 
21   
22 -class description(_job.description):
23 pass
24
25 -class job(_job.job):
26 pass
27
28 -class job_state(_job.job_state):
29 pass
30
31 -class self(_job.self):
32 pass
33
34 -class service(_job.service):
35 pass
36