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
- Host: GitHub
- URL: https://github.com/emelyantsev/concurrency-in-python-with-asyncio
- Owner: emelyantsev
- Created: 2025-01-25T16:36:27.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-20T17:52:58.000Z (over 1 year ago)
- Last Synced: 2025-03-20T18:38:17.396Z (over 1 year ago)
- Topics: asynchronous-programming, asyncio, python
- Language: Python
- Homepage:
- Size: 99.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)