Async Python Jetstream Client pypi.org/project/atproto_jetstream/
atproto jetstream python zstd
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

add build step

required so we can ship the zstd dictionary

+7 -3
+1 -1
.gitignore
··· 9 9 # Virtual environments 10 10 .venv 11 11 12 - atproto_jetstream/zstd_dictionary 12 + src/atproto_jetstream/zstd_dictionary
atproto_jetstream/__init__.py src/atproto_jetstream/__init__.py
atproto_jetstream/py.typed src/atproto_jetstream/py.typed
+4
pyproject.toml
··· 13 13 [project.urls] 14 14 Repository = "https://tangled.org/@nauta.one/atproto_jetstream" 15 15 Issues = "https://tangled.org/@nauta.one/atproto_jetstream/issues" 16 + 17 + [build-system] 18 + requires = ["uv_build>=0.10.0,<0.11.0"] 19 + build-backend = "uv_build"
+2 -2
uv.lock
··· 75 75 ] 76 76 77 77 [[package]] 78 - name = "atproto_jetstream" 78 + name = "atproto-jetstream" 79 79 version = "0.2.0" 80 - source = { virtual = "." } 80 + source = { editable = "." } 81 81 dependencies = [ 82 82 { name = "aiohttp" }, 83 83 ]