···1314```python
15from asyncio import run
16-from atproto_jetstream import Jetstream
171819async def main():
20- async with Jetstream("jetstream1.us-east.bsky.network") as stream:
021 async for event in stream:
22 match event.kind:
23 case "account":
···1314```python
15from asyncio import run
16+from atproto_jetstream import Jetstream, JetstreamOptions
171819async def main():
20+ options = JetstreamOptions("wss://jetstream1.us-east.bsky.network/subscribe")
21+ async with Jetstream(options) as stream:
22 async for event in stream:
23 match event.kind:
24 case "account":
···456async def main():
7- options = JetstreamOptions(compress=True)
8- async with Jetstream("jetstream1.us-east.bsky.network", options=options) as stream:
0009 async for event in stream:
10 match event.kind:
11 case "account":
···456async def main():
7+ options = JetstreamOptions(
8+ endpoint="wss://jetstream1.us-east.bsky.network/subscribe",
9+ compress=True,
10+ )
11+ async with Jetstream(options) as stream:
12 async for event in stream:
13 match event.kind:
14 case "account":