We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e0136d commit 55cf613Copy full SHA for 55cf613
README.md
@@ -102,14 +102,15 @@ pip install runloop_api_client[aiohttp]
102
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
103
104
```python
105
+import os
106
import asyncio
107
from runloop_api_client import DefaultAioHttpClient
108
from runloop_api_client import AsyncRunloop
109
110
111
async def main() -> None:
112
async with AsyncRunloop(
- bearer_token="My Bearer Token",
113
+ bearer_token=os.environ.get("RUNLOOP_API_KEY"), # This is the default and can be omitted
114
http_client=DefaultAioHttpClient(),
115
) as client:
116
devbox_view = await client.devboxes.create()
0 commit comments