Multi-scheduler job dispatcher
Project description
Description
The Chore dispatcher is a multi-job scheduler module for sending jobs to different systems. It was developed to help manage bioinformatics jobs in a django website environment. But should equally work well outside of django.
How to Use the Module
A simple example:
from chore.shell import JobManager
manager = JobManager()
manager.submit('job_1', 'wait 10')
Basic options example:
manager = JobManager(pipedir='/specific/stash_dir', batch=True)
manager.submit('job_1', cmd='wait 10')
A slurm example:
from chore.slurm import JobManager
manager = JobManager('/tmp/stash_dir', batch=True)
manager.submit('job_1', 'wait 10', provide='job_2')
manager.submit('job_2', 'wait 20', depend='job_1')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
chore-0.8.11.tar.gz
(18.1 kB
view details)
File details
Details for the file chore-0.8.11.tar.gz.
File metadata
- Download URL: chore-0.8.11.tar.gz
- Upload date:
- Size: 18.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/2.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46bb41e43b5701621e80fb65771c751a7b5f8ba3d33686111b2ccc242910955a
|
|
| MD5 |
c79ac43e8eb8f9a9c77e20e6015b27e5
|
|
| BLAKE2b-256 |
7c93ecf170a800be1c07cb56388eee1eb54731c8af5e215c950063de537aa7d8
|