#asynchronous-programming

[ follow ]
Python
fromRealpython
9 hours ago

Downloading Files From URLs With Python - Real Python

Python enables efficient file downloads from URLs using urllib and requests libraries, with streaming and parallel processing options for improved performance.
fromRealpython
2 weeks ago

Hands-On Python 3 Concurrency With the asyncio Module Quiz - Real Python

This quiz sharpens your intuition for Python's asyncio module. You'll decide when async is the right tool, see how the event loop schedules work, and understand how coroutines pause and resume around I/O.
Python
#javascript
Python
fromRealpython
3 months 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
5 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
5 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.
[ Load more ]