├── .coveragerc ├── .flake8 ├── .github ├── CODEOWNERS └── workflows │ ├── ci.yml │ ├── initiate_release.yml │ ├── release.yml │ └── reviewdog.yml ├── .gitignore ├── .versionrc.js ├── CHANGELOG.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── SECURITY.md ├── assets └── logo.svg ├── dotgit ├── hooks-wrapper ├── hooks │ └── pre-commit-format.sh └── setup-hooks.sh ├── pyproject.toml ├── scripts └── get_changelog_diff.js ├── setup.py └── stream ├── __init__.py ├── client ├── __init__.py ├── async_client.py ├── base.py └── client.py ├── collections ├── __init__.py ├── base.py └── collections.py ├── exceptions.py ├── feed ├── __init__.py ├── base.py └── feeds.py ├── personalization ├── __init__.py ├── base.py └── personalizations.py ├── reactions ├── __init__.py ├── base.py └── reaction.py ├── serializer.py ├── tests ├── __init__.py ├── conftest.py ├── test_async_client.py └── test_client.py ├── users ├── __init__.py ├── base.py └── user.py └── utils.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = stream/tests/* -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @JimmyPettersson85 @xernobyl 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/initiate_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/.github/workflows/initiate_release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/reviewdog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/.github/workflows/reviewdog.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.versionrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/.versionrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/Makefile -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /dotgit/hooks-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/dotgit/hooks-wrapper -------------------------------------------------------------------------------- /dotgit/hooks/pre-commit-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/dotgit/hooks/pre-commit-format.sh -------------------------------------------------------------------------------- /dotgit/setup-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/dotgit/setup-hooks.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/get_changelog_diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/scripts/get_changelog_diff.js -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/setup.py -------------------------------------------------------------------------------- /stream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/__init__.py -------------------------------------------------------------------------------- /stream/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/client/__init__.py -------------------------------------------------------------------------------- /stream/client/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/client/async_client.py -------------------------------------------------------------------------------- /stream/client/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/client/base.py -------------------------------------------------------------------------------- /stream/client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/client/client.py -------------------------------------------------------------------------------- /stream/collections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/collections/__init__.py -------------------------------------------------------------------------------- /stream/collections/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/collections/base.py -------------------------------------------------------------------------------- /stream/collections/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/collections/collections.py -------------------------------------------------------------------------------- /stream/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/exceptions.py -------------------------------------------------------------------------------- /stream/feed/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/feed/__init__.py -------------------------------------------------------------------------------- /stream/feed/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/feed/base.py -------------------------------------------------------------------------------- /stream/feed/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/feed/feeds.py -------------------------------------------------------------------------------- /stream/personalization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/personalization/__init__.py -------------------------------------------------------------------------------- /stream/personalization/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/personalization/base.py -------------------------------------------------------------------------------- /stream/personalization/personalizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/personalization/personalizations.py -------------------------------------------------------------------------------- /stream/reactions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/reactions/__init__.py -------------------------------------------------------------------------------- /stream/reactions/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/reactions/base.py -------------------------------------------------------------------------------- /stream/reactions/reaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/reactions/reaction.py -------------------------------------------------------------------------------- /stream/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/serializer.py -------------------------------------------------------------------------------- /stream/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stream/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/tests/conftest.py -------------------------------------------------------------------------------- /stream/tests/test_async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/tests/test_async_client.py -------------------------------------------------------------------------------- /stream/tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/tests/test_client.py -------------------------------------------------------------------------------- /stream/users/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/users/__init__.py -------------------------------------------------------------------------------- /stream/users/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/users/base.py -------------------------------------------------------------------------------- /stream/users/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/users/user.py -------------------------------------------------------------------------------- /stream/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-python/HEAD/stream/utils.py --------------------------------------------------------------------------------