#asynchronous-programming

[ follow ]
Python
fromRealpython
20 hours ago

Exploring Asynchronous Iterators and Iterables - Real Python

Asynchronous iterators and iterables enable non-blocking iteration over awaitable objects in Python, supporting async for loops, async generator expressions, and use within async loops and comprehensions.
Python
fromMedium
2 months ago

If You Write Python, You Must Understand Asyncio

asyncio is Python's built-in library enabling asynchronous programming with async/await, allowing concurrent task progress during I/O waits.
Software development
fromMedium
2 months ago

Measure Carefully-Because You'll Fix What You Measure (Based on true story!)

Measure asynchronous work completion, not just scheduling; callbacks can make execution time appear near-zero and hide real costs.
#javascript
[ Load more ]