We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c93f487 commit 0de7cb3Copy full SHA for 0de7cb3
README.md
@@ -79,15 +79,14 @@ pip install openint[aiohttp]
79
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
80
81
```python
82
-import os
83
import asyncio
84
from openint import DefaultAioHttpClient
85
from openint import AsyncOpenint
86
87
88
async def main() -> None:
89
async with AsyncOpenint(
90
- token=os.environ.get("OPENINT_API_KEY"), # This is the default and can be omitted
+ token="My Token",
91
http_client=DefaultAioHttpClient(),
92
) as client:
93
page = await client.list_connections()
0 commit comments