Installation
httpx for non-blocking HTTP.
Initialize
Context manager
All methods are async
Every method from the sync client has an async equivalent:API parity
The async client has the same methods as the sync client. Just addawait before each call.
| Sync | Async |
|---|---|
m.add(msgs) | await m.add(msgs) |
m.search(q) | await m.search(q) |
m.search_all(q) | await m.search_all(q) |
m.get_profile() | await m.get_profile() |
m.episodes() | await m.episodes() |