├── CHANGES ├── LICENSE ├── README.md ├── check.py ├── clean.py ├── samples ├── blockingworker.py └── boto │ └── sdb.py ├── setup.py ├── test ├── test_equipped.py └── test_workerpool.py └── workerpool ├── QueueWrapper.py ├── __init__.py ├── exceptions.py ├── jobs.py ├── pools.py └── workers.py /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shazow/workerpool/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shazow/workerpool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shazow/workerpool/HEAD/README.md -------------------------------------------------------------------------------- /check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shazow/workerpool/HEAD/check.py -------------------------------------------------------------------------------- /clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shazow/workerpool/HEAD/clean.py -------------------------------------------------------------------------------- /samples/blockingworker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shazow/workerpool/HEAD/samples/blockingworker.py -------------------------------------------------------------------------------- /samples/boto/sdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shazow/workerpool/HEAD/samples/boto/sdb.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shazow/workerpool/HEAD/setup.py -------------------------------------------------------------------------------- /test/test_equipped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shazow/workerpool/HEAD/test/test_equipped.py -------------------------------------------------------------------------------- /test/test_workerpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shazow/workerpool/HEAD/test/test_workerpool.py -------------------------------------------------------------------------------- /workerpool/QueueWrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shazow/workerpool/HEAD/workerpool/QueueWrapper.py -------------------------------------------------------------------------------- /workerpool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shazow/workerpool/HEAD/workerpool/__init__.py -------------------------------------------------------------------------------- /workerpool/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shazow/workerpool/HEAD/workerpool/exceptions.py -------------------------------------------------------------------------------- /workerpool/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shazow/workerpool/HEAD/workerpool/jobs.py -------------------------------------------------------------------------------- /workerpool/pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shazow/workerpool/HEAD/workerpool/pools.py -------------------------------------------------------------------------------- /workerpool/workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shazow/workerpool/HEAD/workerpool/workers.py --------------------------------------------------------------------------------