#asyncio
Tag
-
Livestream notes: Replacing aiohttp with httpx in kr8s
This post will be updated with notes from the livestream throughout the day. Today I will be streaming some open source code refactoring.
-
Awaitable Objects and Async Context Managers in Python
Python objects are synchronous by default. When working with asyncio if we create an object the __init__ is a regular function and we cannot do any async work in here.