···13131414```python
1515from asyncio import run
1616-from atproto_jetstream import Jetstream
1616+from atproto_jetstream import Jetstream, JetstreamOptions
171718181919async def main():
2020- async with Jetstream("jetstream1.us-east.bsky.network") as stream:
2020+ options = JetstreamOptions("wss://jetstream1.us-east.bsky.network/subscribe")
2121+ async with Jetstream(options) as stream:
2122 async for event in stream:
2223 match event.kind:
2324 case "account":