├── .github ├── pr-labeler.yml ├── release-drafter.yml └── workflows │ ├── pr-labeler.yml │ ├── publish-pypi.yml │ ├── release-drafter.yml │ └── tox.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── src └── fastapi_redis_cache │ ├── __init__.py │ ├── cache.py │ ├── client.py │ ├── enums.py │ ├── key_gen.py │ ├── redis.py │ ├── types.py │ ├── util.py │ └── version.py ├── tests ├── __init__.py ├── conftest.py ├── main.py └── test_cache.py └── tox.ini /.github/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/.github/pr-labeler.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/.github/workflows/pr-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/publish-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/.github/workflows/publish-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/tox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/.github/workflows/tox.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/setup.py -------------------------------------------------------------------------------- /src/fastapi_redis_cache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/src/fastapi_redis_cache/__init__.py -------------------------------------------------------------------------------- /src/fastapi_redis_cache/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/src/fastapi_redis_cache/cache.py -------------------------------------------------------------------------------- /src/fastapi_redis_cache/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/src/fastapi_redis_cache/client.py -------------------------------------------------------------------------------- /src/fastapi_redis_cache/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/src/fastapi_redis_cache/enums.py -------------------------------------------------------------------------------- /src/fastapi_redis_cache/key_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/src/fastapi_redis_cache/key_gen.py -------------------------------------------------------------------------------- /src/fastapi_redis_cache/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/src/fastapi_redis_cache/redis.py -------------------------------------------------------------------------------- /src/fastapi_redis_cache/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/src/fastapi_redis_cache/types.py -------------------------------------------------------------------------------- /src/fastapi_redis_cache/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/src/fastapi_redis_cache/util.py -------------------------------------------------------------------------------- /src/fastapi_redis_cache/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/src/fastapi_redis_cache/version.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/tests/main.py -------------------------------------------------------------------------------- /tests/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/tests/test_cache.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-luna/fastapi-redis-cache/HEAD/tox.ini --------------------------------------------------------------------------------