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 d29939b commit 6597cb7Copy full SHA for 6597cb7
README.md
@@ -89,14 +89,15 @@ pip install increase[aiohttp]
89
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
90
91
```python
92
+import os
93
import asyncio
94
from increase import DefaultAioHttpClient
95
from increase import AsyncIncrease
96
97
98
async def main() -> None:
99
async with AsyncIncrease(
- api_key="My API Key",
100
+ api_key=os.environ.get("INCREASE_API_KEY"), # This is the default and can be omitted
101
http_client=DefaultAioHttpClient(),
102
) as client:
103
account = await client.accounts.create(
0 commit comments