gitextract_xygol1wo/ ├── .coveragerc ├── .github/ │ ├── stale.yml │ └── workflows/ │ ├── ci-workflow.yml │ └── publish-workflow.yml ├── .gitignore ├── .readthedocs.yaml ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── SECURITY.md ├── docs/ │ ├── .gitignore │ ├── Makefile │ ├── _templates/ │ │ ├── links.html │ │ └── sidebarlogo.html │ ├── _themes/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README │ │ ├── flask/ │ │ │ ├── layout.html │ │ │ ├── page.html │ │ │ ├── relations.html │ │ │ ├── static/ │ │ │ │ └── flasky.css_t │ │ │ └── theme.conf │ │ └── flask_theme_support.py │ ├── api.rst │ ├── changelog.rst │ ├── conf.py │ ├── contribute.rst │ ├── extend.rst │ ├── extensions.rst │ ├── getting-started.rst │ ├── index.rst │ ├── intro.rst │ ├── make.bat │ ├── upgrade.rst │ └── usage.rst ├── mypy.ini ├── pyproject.toml ├── pytest.ini ├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── test_middlewares.py │ ├── test_operations.py │ ├── test_queries.py │ ├── test_storages.py │ ├── test_tables.py │ ├── test_tinydb.py │ └── test_utils.py └── tinydb/ ├── __init__.py ├── database.py ├── middlewares.py ├── mypy_plugin.py ├── operations.py ├── py.typed ├── queries.py ├── storages.py ├── table.py ├── utils.py └── version.py