├── .github ├── release-drafter-config.yml └── workflows │ ├── codeql-analysis.yml │ ├── publish-pypi.yml │ └── release-drafter.yml ├── .gitignore ├── .travis.yml ├── API.md ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── gendoc.py ├── pyproject.toml ├── rejson ├── __init__.py ├── client.py └── path.py ├── tests ├── __init__.py └── test_rejson.py └── tox.ini /.github/release-drafter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/.github/release-drafter-config.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/publish-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/.github/workflows/publish-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/.travis.yml -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/API.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/README.md -------------------------------------------------------------------------------- /gendoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/gendoc.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rejson/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/rejson/__init__.py -------------------------------------------------------------------------------- /rejson/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/rejson/client.py -------------------------------------------------------------------------------- /rejson/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/rejson/path.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_rejson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/tests/test_rejson.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisJSON/redisjson-py/HEAD/tox.ini --------------------------------------------------------------------------------