├── .bumpversion.cfg ├── .cookiecutterrc ├── .coveragerc ├── .editorconfig ├── .github └── workflows │ └── github-actions.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── SECURITY.md ├── ci ├── bootstrap.py ├── requirements.txt └── templates │ └── .github │ └── workflows │ └── github-actions.yml ├── docs ├── authors.rst ├── changelog.rst ├── conf.py ├── contributing.rst ├── index.rst ├── installation.rst ├── readme.rst ├── redis-lock diagram (v3.0).png ├── redis-lock diagram (v3.0).svg ├── redis-lock diagram.png ├── redis-lock diagram.svg ├── reference │ ├── index.rst │ └── redis_lock.rst ├── requirements.txt ├── spelling_wordlist.txt └── usage.rst ├── examples ├── README.rst ├── bench.py ├── bench.rst ├── plain.py └── test-tmux.py ├── pyproject.toml ├── pytest.ini ├── setup.cfg ├── setup.py ├── src └── redis_lock │ ├── __init__.py │ └── django_cache.py ├── tests ├── config.py ├── conftest.py ├── helper.py ├── test_django_integration.py ├── test_project │ ├── __init__.py │ └── settings.py └── test_redis_lock.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.cookiecutterrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/.cookiecutterrc -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/.github/workflows/github-actions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ci/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/ci/bootstrap.py -------------------------------------------------------------------------------- /ci/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/ci/requirements.txt -------------------------------------------------------------------------------- /ci/templates/.github/workflows/github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/ci/templates/.github/workflows/github-actions.yml -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/redis-lock diagram (v3.0).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/docs/redis-lock diagram (v3.0).png -------------------------------------------------------------------------------- /docs/redis-lock diagram (v3.0).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/docs/redis-lock diagram (v3.0).svg -------------------------------------------------------------------------------- /docs/redis-lock diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/docs/redis-lock diagram.png -------------------------------------------------------------------------------- /docs/redis-lock diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/docs/redis-lock diagram.svg -------------------------------------------------------------------------------- /docs/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/docs/reference/index.rst -------------------------------------------------------------------------------- /docs/reference/redis_lock.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/docs/reference/redis_lock.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/spelling_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/docs/spelling_wordlist.txt -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/examples/README.rst -------------------------------------------------------------------------------- /examples/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/examples/bench.py -------------------------------------------------------------------------------- /examples/bench.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/examples/bench.rst -------------------------------------------------------------------------------- /examples/plain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/examples/plain.py -------------------------------------------------------------------------------- /examples/test-tmux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/examples/test-tmux.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/setup.py -------------------------------------------------------------------------------- /src/redis_lock/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/src/redis_lock/__init__.py -------------------------------------------------------------------------------- /src/redis_lock/django_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/src/redis_lock/django_cache.py -------------------------------------------------------------------------------- /tests/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/tests/config.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/tests/helper.py -------------------------------------------------------------------------------- /tests/test_django_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/tests/test_django_integration.py -------------------------------------------------------------------------------- /tests/test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/tests/test_project/settings.py -------------------------------------------------------------------------------- /tests/test_redis_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/tests/test_redis_lock.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/python-redis-lock/HEAD/tox.ini --------------------------------------------------------------------------------