Async Python Jetstream Client

fix readme indentation & add issue tracker link

Changed files
+2 -1
+1 -1
README.md
··· 19 19 async def main(): 20 20 async with Jetstream("jetstream1.us-east.bsky.network") as stream: 21 21 async for event in stream: 22 - match event.kind: 22 + match event.kind: 23 23 case "account": 24 24 print(event.account) 25 25 case "identity":
+1
pyproject.toml
··· 12 12 13 13 [project.urls] 14 14 Repository = "https://tangled.org/@nauta.one/atproto_jetstream" 15 + Issues = "https://tangled.org/@nauta.one/atproto_jetstream/issues"