├── .gitignore ├── .travis.yml ├── README.md ├── assets └── happy-snake.jpg ├── requirements.txt ├── setup.py ├── simpleq ├── __init__.py ├── jobs.py ├── queues.py └── workers.py └── tests ├── test_jobs.py ├── test_queues.py └── test_workers.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | .coverage 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/simpleq/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/simpleq/HEAD/README.md -------------------------------------------------------------------------------- /assets/happy-snake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/simpleq/HEAD/assets/happy-snake.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/simpleq/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/simpleq/HEAD/setup.py -------------------------------------------------------------------------------- /simpleq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simpleq/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/simpleq/HEAD/simpleq/jobs.py -------------------------------------------------------------------------------- /simpleq/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/simpleq/HEAD/simpleq/queues.py -------------------------------------------------------------------------------- /simpleq/workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/simpleq/HEAD/simpleq/workers.py -------------------------------------------------------------------------------- /tests/test_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/simpleq/HEAD/tests/test_jobs.py -------------------------------------------------------------------------------- /tests/test_queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/simpleq/HEAD/tests/test_queues.py -------------------------------------------------------------------------------- /tests/test_workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/simpleq/HEAD/tests/test_workers.py --------------------------------------------------------------------------------