├── .gitignore ├── README.md ├── requirements.txt ├── test_asyncio.py ├── test_multiprocessing.py ├── test_multithreading.py ├── test_synchronous.py └── timer.py /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | .idea/ 3 | __pycache__/ 4 | 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilkumarsingh/async-http-requests-tut/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | aiohttp 3 | -------------------------------------------------------------------------------- /test_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilkumarsingh/async-http-requests-tut/HEAD/test_asyncio.py -------------------------------------------------------------------------------- /test_multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilkumarsingh/async-http-requests-tut/HEAD/test_multiprocessing.py -------------------------------------------------------------------------------- /test_multithreading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilkumarsingh/async-http-requests-tut/HEAD/test_multithreading.py -------------------------------------------------------------------------------- /test_synchronous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilkumarsingh/async-http-requests-tut/HEAD/test_synchronous.py -------------------------------------------------------------------------------- /timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilkumarsingh/async-http-requests-tut/HEAD/timer.py --------------------------------------------------------------------------------