We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34c2827 commit 3d8cf3dCopy full SHA for 3d8cf3d
README.md
@@ -83,15 +83,14 @@ pip install brand.dev[aiohttp]
83
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
84
85
```python
86
-import os
87
import asyncio
88
from brand.dev import DefaultAioHttpClient
89
from brand.dev import AsyncBrandDev
90
91
92
async def main() -> None:
93
async with AsyncBrandDev(
94
- api_key=os.environ.get("BRAND_DEV_API_KEY"), # This is the default and can be omitted
+ api_key="My API Key",
95
http_client=DefaultAioHttpClient(),
96
) as client:
97
brand = await client.brand.retrieve(
0 commit comments