├── .github └── workflows │ └── run_tests.yml ├── .gitignore ├── AUTHORS ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── aioprocessing ├── __init__.py ├── connection.py ├── executor.py ├── locks.py ├── managers.py ├── mp.py ├── pool.py ├── process.py ├── queues.py └── util.py ├── pyproject.toml ├── requirements.txt ├── runtests.py ├── tester.py └── tests ├── .gitignore ├── __init__.py ├── _base_test.py ├── connection_tests.py ├── lock_tests.py ├── pickle_test.py ├── pool_test.py ├── process_test.py └── queue_test.py /.github/workflows/run_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/.github/workflows/run_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/README.md -------------------------------------------------------------------------------- /aioprocessing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/aioprocessing/__init__.py -------------------------------------------------------------------------------- /aioprocessing/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/aioprocessing/connection.py -------------------------------------------------------------------------------- /aioprocessing/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/aioprocessing/executor.py -------------------------------------------------------------------------------- /aioprocessing/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/aioprocessing/locks.py -------------------------------------------------------------------------------- /aioprocessing/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/aioprocessing/managers.py -------------------------------------------------------------------------------- /aioprocessing/mp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/aioprocessing/mp.py -------------------------------------------------------------------------------- /aioprocessing/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/aioprocessing/pool.py -------------------------------------------------------------------------------- /aioprocessing/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/aioprocessing/process.py -------------------------------------------------------------------------------- /aioprocessing/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/aioprocessing/queues.py -------------------------------------------------------------------------------- /aioprocessing/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/aioprocessing/util.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flake8 2 | -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/runtests.py -------------------------------------------------------------------------------- /tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/tester.py -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.pyc 3 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/tests/_base_test.py -------------------------------------------------------------------------------- /tests/connection_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/tests/connection_tests.py -------------------------------------------------------------------------------- /tests/lock_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/tests/lock_tests.py -------------------------------------------------------------------------------- /tests/pickle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/tests/pickle_test.py -------------------------------------------------------------------------------- /tests/pool_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/tests/pool_test.py -------------------------------------------------------------------------------- /tests/process_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/tests/process_test.py -------------------------------------------------------------------------------- /tests/queue_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dano/aioprocessing/HEAD/tests/queue_test.py --------------------------------------------------------------------------------