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 c4c4185 commit 82c38c4Copy full SHA for 82c38c4
README.md
@@ -96,15 +96,14 @@ pip install browserbase[aiohttp]
96
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
97
98
```python
99
-import os
100
import asyncio
101
from browserbase import DefaultAioHttpClient
102
from browserbase import AsyncBrowserbase
103
104
105
async def main() -> None:
106
async with AsyncBrowserbase(
107
- api_key=os.environ.get("BROWSERBASE_API_KEY"), # This is the default and can be omitted
+ api_key="My API Key",
108
http_client=DefaultAioHttpClient(),
109
) as client:
110
session = await client.sessions.create(
0 commit comments