├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ └── features_request.yaml └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── LICENSE ├── README.rst ├── docker-compose.yml ├── docs ├── api.rst ├── conf.py ├── contributing.rst ├── differences.rst ├── index.rst ├── userguide.rst └── versionhistory.rst ├── pyproject.toml ├── src └── redis_anyio │ ├── __init__.py │ ├── _client.py │ ├── _connection.py │ ├── _exceptions.py │ ├── _lock.py │ ├── _pipeline.py │ ├── _resp3 │ ├── __init__.py │ ├── _parser.py │ ├── _serializer.py │ └── _types.py │ ├── _subscription.py │ ├── _types.py │ ├── _utils.py │ └── py.typed └── tests ├── __init__.py ├── conftest.py ├── resp3 ├── test_parser.py └── test_serializer.py └── test_client.py /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/features_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/.github/ISSUE_TEMPLATE/features_request.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/README.rst -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/differences.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/docs/differences.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/userguide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/docs/userguide.rst -------------------------------------------------------------------------------- /docs/versionhistory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/docs/versionhistory.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/redis_anyio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/src/redis_anyio/__init__.py -------------------------------------------------------------------------------- /src/redis_anyio/_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/src/redis_anyio/_client.py -------------------------------------------------------------------------------- /src/redis_anyio/_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/src/redis_anyio/_connection.py -------------------------------------------------------------------------------- /src/redis_anyio/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/src/redis_anyio/_exceptions.py -------------------------------------------------------------------------------- /src/redis_anyio/_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/src/redis_anyio/_lock.py -------------------------------------------------------------------------------- /src/redis_anyio/_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/src/redis_anyio/_pipeline.py -------------------------------------------------------------------------------- /src/redis_anyio/_resp3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/src/redis_anyio/_resp3/__init__.py -------------------------------------------------------------------------------- /src/redis_anyio/_resp3/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/src/redis_anyio/_resp3/_parser.py -------------------------------------------------------------------------------- /src/redis_anyio/_resp3/_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/src/redis_anyio/_resp3/_serializer.py -------------------------------------------------------------------------------- /src/redis_anyio/_resp3/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/src/redis_anyio/_resp3/_types.py -------------------------------------------------------------------------------- /src/redis_anyio/_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/src/redis_anyio/_subscription.py -------------------------------------------------------------------------------- /src/redis_anyio/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/src/redis_anyio/_types.py -------------------------------------------------------------------------------- /src/redis_anyio/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/src/redis_anyio/_utils.py -------------------------------------------------------------------------------- /src/redis_anyio/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/resp3/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/tests/resp3/test_parser.py -------------------------------------------------------------------------------- /tests/resp3/test_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/tests/resp3/test_serializer.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/redis-anyio/HEAD/tests/test_client.py --------------------------------------------------------------------------------