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 b78de8a commit 5527cacCopy full SHA for 5527cac
README.md
@@ -83,14 +83,15 @@ pip install orb-billing[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 orb import DefaultAioHttpClient
89
from orb import AsyncOrb
90
91
92
async def main() -> None:
93
async with AsyncOrb(
- api_key="My API Key",
94
+ api_key=os.environ.get("ORB_API_KEY"), # This is the default and can be omitted
95
http_client=DefaultAioHttpClient(),
96
) as client:
97
customer = await client.customers.create(
0 commit comments