├── .bumpversion.cfg ├── .coveragerc ├── .env ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .travis.yml ├── Dockerfile ├── HISTORY.md ├── LICENSE ├── README.md ├── docker-compose.yaml ├── docs └── latest │ └── index.html ├── kev ├── __init__.py ├── backends │ ├── __init__.py │ ├── redis │ │ ├── __init__.py │ │ └── db.py │ ├── s3 │ │ ├── __init__.py │ │ └── db.py │ └── s3redis │ │ ├── __init__.py │ │ └── db.py ├── document.py ├── exceptions.py ├── loading.py ├── properties.py ├── query.py ├── testcase.py ├── tests │ ├── __init__.py │ ├── documents.py │ ├── properties.py │ └── utils.py └── utils.py ├── poetry.lock ├── pyproject.toml ├── requirements.txt └── setup.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/.coveragerc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/Dockerfile -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/latest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/docs/latest/index.html -------------------------------------------------------------------------------- /kev/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/kev/__init__.py -------------------------------------------------------------------------------- /kev/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/kev/backends/__init__.py -------------------------------------------------------------------------------- /kev/backends/redis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kev/backends/redis/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/kev/backends/redis/db.py -------------------------------------------------------------------------------- /kev/backends/s3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kev/backends/s3/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/kev/backends/s3/db.py -------------------------------------------------------------------------------- /kev/backends/s3redis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kev/backends/s3redis/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/kev/backends/s3redis/db.py -------------------------------------------------------------------------------- /kev/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/kev/document.py -------------------------------------------------------------------------------- /kev/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/kev/exceptions.py -------------------------------------------------------------------------------- /kev/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/kev/loading.py -------------------------------------------------------------------------------- /kev/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/kev/properties.py -------------------------------------------------------------------------------- /kev/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/kev/query.py -------------------------------------------------------------------------------- /kev/testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/kev/testcase.py -------------------------------------------------------------------------------- /kev/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/kev/tests/__init__.py -------------------------------------------------------------------------------- /kev/tests/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/kev/tests/documents.py -------------------------------------------------------------------------------- /kev/tests/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/kev/tests/properties.py -------------------------------------------------------------------------------- /kev/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/kev/tests/utils.py -------------------------------------------------------------------------------- /kev/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/kev/utils.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwigo/kev/HEAD/setup.py --------------------------------------------------------------------------------