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 1519322 commit 334bdfaCopy full SHA for 334bdfa
1 file changed
README.md
@@ -79,15 +79,14 @@ pip install runloop_api_client[aiohttp]
79
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
80
81
```python
82
-import os
83
import asyncio
84
from runloop_api_client import DefaultAioHttpClient
85
from runloop_api_client import AsyncRunloop
86
87
88
async def main() -> None:
89
async with AsyncRunloop(
90
- bearer_token=os.environ.get("RUNLOOP_API_KEY"), # This is the default and can be omitted
+ bearer_token="My Bearer Token",
91
http_client=DefaultAioHttpClient(),
92
) as client:
93
devbox_view = await client.devboxes.create()
0 commit comments