mirror of
https://github.com/vale981/jobmanager
synced 2025-03-06 10:21:39 -05:00
25 lines
581 B
Markdown
25 lines
581 B
Markdown
jobmanager
|
|
==========
|
|
|
|
Easy distributed computing based on the python class SyncManager for remote communication and python module multiprocessing for local parallelism.
|
|
|
|
### Documentation
|
|
The documentation is available at http://cimatosa.github.io/jobmanager/
|
|
|
|
### Developer's note
|
|
After cloning into jobmanager, create a virtual environment
|
|
|
|
virtualenv --system-site-packages ve_jm
|
|
source ve_jm/bin/activate
|
|
|
|
Install all dependencies
|
|
|
|
python setup.py develop
|
|
|
|
Running an example
|
|
|
|
python examples/simple_example.py
|
|
|
|
Running tests
|
|
|
|
python setup.py test
|