Search
Page 6 of 7. Showing 68 results (0.02 seconds)
jobArchive01.py
'); sys.path.append('../../api/python'); import qb def main(): job = {} job['name'] = 'python test job' job['cpus'] = 1 job['prototype'] = 'cmdline' job['requirements…jobSubmit01.py
qb def main(): job = {} job['name'] = 'python test job' job['cpus'] = 1 job['prototype'] = 'cmdline' job['requirements'] = 'host.os=linux' package…QubeGUI Installation
The QubeGUI is a set of python scripts that use the qb python module and wxPython. It is compiled for each platform so it can run independently and not require installation…SimpleCmds Location
the qube.py script, you will find the simpleCmd directory in: $QBDIR/api/Python/qb/GUI/ where $QBDIR is the location of the Qube directory. This can also be found by going to File…Basic_SimpleCMD.py
('/Applications/pfx/qube/api/python'); else: sys.path.append('/usr/local/pfx/qube/api/python'); import qb def main(): job = {} job['name'] = 'Maya BatchRender (rib) TUTORIAL' job…Development Options
also be run directly via python. It uses all standard python libraries and the qb python module. Since full access to the python code is available, the QubeGUI can also…Submitting a Job from Application
: Install the Maya Jobtype on the client machine Launch Maya, and click load and autoload for the qb plugin Using: Under the Qube menu, select Submit Fill in any override…deletionCascade.py
#!/usr/bin/env python import qb task = [] def newJob(name, status='blocked'): job = { 'prototype': 'cmdline', 'name': 'job %s' % name, 'label': 'job…How to easily kill or remove an entire job process group
/env python import qb task = [] def newJob(name, status='blocked'): job = { 'prototype': 'cmdline', 'name': 'job %s' % name, 'label': 'job %s' % name…workerLock.py
'] if not os.path.exists(qbApiDir): sys.exit(2) if qbApiDir not in sys.path: sys.path.append(qbApiDir) import qb HOSTNAME = socket.gethostname() TIME_FMT = '[%b %d, %Y %X…