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 dfd4e86 commit de35b9dCopy full SHA for de35b9d
README.md
@@ -94,15 +94,14 @@ pip install --pre zeroentropy[aiohttp]
94
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
95
96
```python
97
-import os
98
import asyncio
99
from zeroentropy import DefaultAioHttpClient
100
from zeroentropy import AsyncZeroEntropy
101
102
103
async def main() -> None:
104
async with AsyncZeroEntropy(
105
- api_key=os.environ.get("ZEROENTROPY_API_KEY"), # This is the default and can be omitted
+ api_key="My API Key",
106
http_client=DefaultAioHttpClient(),
107
) as client:
108
response = await client.documents.add(
0 commit comments