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 2a5d531 commit 3ee6948Copy full SHA for 3ee6948
README.md
@@ -87,15 +87,14 @@ pip install isaacus[aiohttp]
87
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
88
89
```python
90
-import os
91
import asyncio
92
from isaacus import DefaultAioHttpClient
93
from isaacus import AsyncIsaacus
94
95
96
async def main() -> None:
97
async with AsyncIsaacus(
98
- api_key=os.environ.get("ISAACUS_API_KEY"), # This is the default and can be omitted
+ api_key="My API Key",
99
http_client=DefaultAioHttpClient(),
100
) as client:
101
universal_classification = await client.classifications.universal.create(
0 commit comments