We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 288eb7d commit 535e5abCopy full SHA for 535e5ab
README.md
@@ -83,15 +83,14 @@ pip install --pre zbdpay[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 zbdpay import DefaultAioHttpClient
89
from zbdpay import AsyncZbdPayments
90
91
92
async def main() -> None:
93
async with AsyncZbdPayments(
94
- apikey=os.environ.get("ZBD_PAYMENTS_API_KEY"), # This is the default and can be omitted
+ apikey="My Apikey",
95
http_client=DefaultAioHttpClient(),
96
) as client:
97
await client.lightning_address.send_payment(
0 commit comments