├── .coveragerc ├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── HISTORY.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── celery_pool_asyncio ├── __init__.py ├── async_to_sync.py ├── asynchronous.py ├── backends │ ├── __init__.py │ ├── amqp.py │ └── rpc.py ├── beat.py ├── coro_utils.py ├── cpa_canvas.py ├── drainer.py ├── environment_variables.py ├── exceptions.py ├── executors.py ├── monkey.py ├── monkey_utils.py ├── pool.py ├── result_set.py ├── scheduler.py ├── signal_send.py ├── tracer.py └── worker.py ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── readme.rst └── usage.rst ├── requirements_dev.txt ├── setup.cfg ├── setup.py ├── tests └── test_celery_pool_asyncio.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/README.md -------------------------------------------------------------------------------- /celery_pool_asyncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/__init__.py -------------------------------------------------------------------------------- /celery_pool_asyncio/async_to_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/async_to_sync.py -------------------------------------------------------------------------------- /celery_pool_asyncio/asynchronous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/asynchronous.py -------------------------------------------------------------------------------- /celery_pool_asyncio/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/backends/__init__.py -------------------------------------------------------------------------------- /celery_pool_asyncio/backends/amqp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/backends/amqp.py -------------------------------------------------------------------------------- /celery_pool_asyncio/backends/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/backends/rpc.py -------------------------------------------------------------------------------- /celery_pool_asyncio/beat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/beat.py -------------------------------------------------------------------------------- /celery_pool_asyncio/coro_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/coro_utils.py -------------------------------------------------------------------------------- /celery_pool_asyncio/cpa_canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/cpa_canvas.py -------------------------------------------------------------------------------- /celery_pool_asyncio/drainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/drainer.py -------------------------------------------------------------------------------- /celery_pool_asyncio/environment_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/environment_variables.py -------------------------------------------------------------------------------- /celery_pool_asyncio/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/exceptions.py -------------------------------------------------------------------------------- /celery_pool_asyncio/executors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/executors.py -------------------------------------------------------------------------------- /celery_pool_asyncio/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/monkey.py -------------------------------------------------------------------------------- /celery_pool_asyncio/monkey_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/monkey_utils.py -------------------------------------------------------------------------------- /celery_pool_asyncio/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/pool.py -------------------------------------------------------------------------------- /celery_pool_asyncio/result_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/result_set.py -------------------------------------------------------------------------------- /celery_pool_asyncio/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/scheduler.py -------------------------------------------------------------------------------- /celery_pool_asyncio/signal_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/signal_send.py -------------------------------------------------------------------------------- /celery_pool_asyncio/tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/celery_pool_asyncio/tracer.py -------------------------------------------------------------------------------- /celery_pool_asyncio/worker.py: -------------------------------------------------------------------------------- 1 | def should_use_eventloop(self): 2 | return True 3 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_celery_pool_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/tests/test_celery_pool_asyncio.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai3341/celery-pool-asyncio/HEAD/tox.ini --------------------------------------------------------------------------------