├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml ├── tests ├── basic.py ├── get_request.py ├── listen.py └── sample_fastapi │ ├── application.py │ ├── main.py │ └── server.py └── turboasync ├── loop.py ├── tasks.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | venv 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeilBotelho/turboAsync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeilBotelho/turboAsync/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeilBotelho/turboAsync/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeilBotelho/turboAsync/HEAD/tests/basic.py -------------------------------------------------------------------------------- /tests/get_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeilBotelho/turboAsync/HEAD/tests/get_request.py -------------------------------------------------------------------------------- /tests/listen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeilBotelho/turboAsync/HEAD/tests/listen.py -------------------------------------------------------------------------------- /tests/sample_fastapi/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeilBotelho/turboAsync/HEAD/tests/sample_fastapi/application.py -------------------------------------------------------------------------------- /tests/sample_fastapi/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeilBotelho/turboAsync/HEAD/tests/sample_fastapi/main.py -------------------------------------------------------------------------------- /tests/sample_fastapi/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeilBotelho/turboAsync/HEAD/tests/sample_fastapi/server.py -------------------------------------------------------------------------------- /turboasync/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeilBotelho/turboAsync/HEAD/turboasync/loop.py -------------------------------------------------------------------------------- /turboasync/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeilBotelho/turboAsync/HEAD/turboasync/tasks.py -------------------------------------------------------------------------------- /turboasync/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeilBotelho/turboAsync/HEAD/turboasync/utils.py --------------------------------------------------------------------------------