An open API service indexing awesome lists of open source software.

https://github.com/emelyantsev/concurrency-in-python-with-asyncio


https://github.com/emelyantsev/concurrency-in-python-with-asyncio

asynchronous-programming asyncio python

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

### Concurrency in python with asyncio

1. [Getting to know asyncio](https://github.com/emelyantsev/concurrency-in-python-with-asyncio/tree/main/chapter_01)
2. [Asyncio basics](https://github.com/emelyantsev/concurrency-in-python-with-asyncio/tree/main/chapter_02)
3. [A first asyncio application](https://github.com/emelyantsev/concurrency-in-python-with-asyncio/tree/main/chapter_03)
4. [Concurrent web requests](https://github.com/emelyantsev/concurrency-in-python-with-asyncio/tree/main/chapter_04)
5. [Non-blocking database drivers](https://github.com/emelyantsev/concurrency-in-python-with-asyncio/tree/main/chapter_05)
6. [Handling CPU-bound work](https://github.com/emelyantsev/concurrency-in-python-with-asyncio/tree/main/chapter_06)
7. [Handling blocking work with threads](https://github.com/emelyantsev/concurrency-in-python-with-asyncio/tree/main/chapter_07)
8. [Streams](https://github.com/emelyantsev/concurrency-in-python-with-asyncio/tree/main/chapter_08)
9. [Web applications](https://github.com/emelyantsev/concurrency-in-python-with-asyncio/tree/main/chapter_09)
10. [Microservices](https://github.com/emelyantsev/concurrency-in-python-with-asyncio/tree/main/chapter_10)
11. [Synchronization](https://github.com/emelyantsev/concurrency-in-python-with-asyncio/tree/main/chapter_11)
12. [Asynchronous queues](https://github.com/emelyantsev/concurrency-in-python-with-asyncio/tree/main/chapter_12)
13. [Managing subprocesses](https://github.com/emelyantsev/concurrency-in-python-with-asyncio/tree/main/chapter_13)