We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41feabc commit 6002d27Copy full SHA for 6002d27
README.md
@@ -83,15 +83,14 @@ pip install asktable[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 asktable import DefaultAioHttpClient
89
from asktable import AsyncAsktable
90
91
92
async def main() -> None:
93
async with AsyncAsktable(
94
- api_key=os.environ.get("ASKTABLE_API_KEY"), # This is the default and can be omitted
+ api_key="My API Key",
95
http_client=DefaultAioHttpClient(),
96
) as client:
97
datasource = await client.datasources.create(
0 commit comments