The same quickstart flow using AsyncConfigClient with async/await.
AsyncConfigClientas an async context manager (async with)await client.get()for non-blocking readsasyncio.gather()for concurrent reads — faster than sequentialawait client.set_many()for atomic multi-writes
cd examples
make setup
cd async-client
python main.py- live-config — async watcher with live updates
- fastapi-integration — async client in a web app