├── .coverage ├── .coveragerc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── PULL_REQUEST.md ├── README.rst ├── __init__.py ├── _config.yml ├── artwork └── tinymplogo.png ├── benchmarks └── benchmark.py ├── codecov.yml ├── example.py ├── requirements.txt ├── setup.py ├── tests ├── .cache │ └── v │ │ └── cache │ │ └── lastfailed ├── .coverage ├── __init__.py ├── conftest.py ├── modifytests.sh ├── test_middlewares.py ├── test_operations.py ├── test_queries.py ├── test_storages.py ├── test_tables.py ├── test_tinydb.py └── test_utils.py └── tinymp.py /.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/.coverage -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/PULL_REQUEST.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/README.rst -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/_config.yml -------------------------------------------------------------------------------- /artwork/tinymplogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/artwork/tinymplogo.png -------------------------------------------------------------------------------- /benchmarks/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/benchmarks/benchmark.py -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/codecov.yml -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/example.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tinydb>=3.7.0 2 | msgpack-python>=0.4.8 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/setup.py -------------------------------------------------------------------------------- /tests/.cache/v/cache/lastfailed: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/tests/.coverage -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/modifytests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/tests/modifytests.sh -------------------------------------------------------------------------------- /tests/test_middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/tests/test_middlewares.py -------------------------------------------------------------------------------- /tests/test_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/tests/test_operations.py -------------------------------------------------------------------------------- /tests/test_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/tests/test_queries.py -------------------------------------------------------------------------------- /tests/test_storages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/tests/test_storages.py -------------------------------------------------------------------------------- /tests/test_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/tests/test_tables.py -------------------------------------------------------------------------------- /tests/test_tinydb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/tests/test_tinydb.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tinymp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alshapton/TinyMP/HEAD/tinymp.py --------------------------------------------------------------------------------