├── .gitignore ├── LICENSE ├── README.md ├── bounded_pool_executor └── __init__.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | /dist/ 3 | /*.egg-info 4 | /.idea 5 | /.git 6 | /build 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowshon/bounded_pool_executor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowshon/bounded_pool_executor/HEAD/README.md -------------------------------------------------------------------------------- /bounded_pool_executor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowshon/bounded_pool_executor/HEAD/bounded_pool_executor/__init__.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowshon/bounded_pool_executor/HEAD/setup.py --------------------------------------------------------------------------------