Changes between Version 64 and Version 65 of RemoteJobs
- Timestamp:
- Jan 16, 2019, 8:56:51 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RemoteJobs
v64 v65 500 500 }}} 501 501 == Python binding == 502 The file tools/submit_api.py contains a Python binding of some of above RPCs.502 The file lib/submit_api.py contains a Python binding of some of above RPCs. 503 503 For examples of its use, see tools/submit_api_test.py. 504 504 … … 548 548 {{{ 549 549 req = REQUEST() 550 req.project = 'http://isaac.ssl.berkeley.edu/test/' 551 req.authenticator = get_auth() 550 [req.project, req.authenticator] = get_auth() 552 551 req.batch_id = 271 553 552 req.get_cpu_time = True … … 607 606 get_output_files(req):: req attributes: batch_id 608 607 retire_batch(req):: req attributes: batch_id 608 get_job_counts(req):: req attributes: project. Returns counts of results and workunits in various states (e.g. ready to send). 609 609 610 610 == HTTP/XML interface ==