├── README.md ├── celery_sample_project ├── main.py ├── tasks.py ├── templates │ └── index.html └── test_main.py ├── install_dep.sh └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijeth-aradhya/celery-priority-tasking/HEAD/README.md -------------------------------------------------------------------------------- /celery_sample_project/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijeth-aradhya/celery-priority-tasking/HEAD/celery_sample_project/main.py -------------------------------------------------------------------------------- /celery_sample_project/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijeth-aradhya/celery-priority-tasking/HEAD/celery_sample_project/tasks.py -------------------------------------------------------------------------------- /celery_sample_project/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijeth-aradhya/celery-priority-tasking/HEAD/celery_sample_project/templates/index.html -------------------------------------------------------------------------------- /celery_sample_project/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijeth-aradhya/celery-priority-tasking/HEAD/celery_sample_project/test_main.py -------------------------------------------------------------------------------- /install_dep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijeth-aradhya/celery-priority-tasking/HEAD/install_dep.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | celery==4.0.2 2 | Flask==0.12.1 3 | redis==2.10.5 4 | 5 | --------------------------------------------------------------------------------