Improvement
- Added the
AsyncClient
wrapper which is intended forasyncio
environment usage.AsyncClient
has the same methods with the same parameters as the standardClient
, but they are coroutines when applicable. Internally, these methods from theClient
that perform I/O operations are wrapped in a run_in_executor call.
See also the updated run_async example.
Full Changelog: v0.7.15...v0.7.16