├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ └── python-tests.yml ├── .gitignore ├── .readthedocs.yaml ├── AUTHORS.md ├── CONTRIBUTING.md ├── HISTORY.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── datools ├── __init__.py ├── cli.py ├── datools.py ├── errors.py ├── explanations.py ├── models.py ├── sqlalchemy_utils.py └── table_statistics.py ├── docs ├── Makefile ├── authors.md ├── conf.py ├── contributing.md ├── datools.rst ├── examples.md ├── history.md ├── index.rst ├── installation.rst ├── make.bat ├── modules.rst └── readme.md ├── examples └── diff │ ├── .gitignore │ └── intel-sensor.ipynb ├── mypy.ini ├── requirements.txt ├── requirements_dev.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── db_engine_creators.py ├── fixtures.py ├── test_datools.py ├── test_diff.py ├── test_sqlalchemy_utils.py ├── test_table_statistics.py └── utils.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/python-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/.github/workflows/python-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/README.md -------------------------------------------------------------------------------- /datools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/datools/__init__.py -------------------------------------------------------------------------------- /datools/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/datools/cli.py -------------------------------------------------------------------------------- /datools/datools.py: -------------------------------------------------------------------------------- 1 | """Main module.""" 2 | -------------------------------------------------------------------------------- /datools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/datools/errors.py -------------------------------------------------------------------------------- /datools/explanations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/datools/explanations.py -------------------------------------------------------------------------------- /datools/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/datools/models.py -------------------------------------------------------------------------------- /datools/sqlalchemy_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/datools/sqlalchemy_utils.py -------------------------------------------------------------------------------- /datools/table_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/datools/table_statistics.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.md: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../AUTHORS.md 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../CONTRIBUTING.md 2 | -------------------------------------------------------------------------------- /docs/datools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/docs/datools.rst -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/history.md: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../HISTORY.md 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../README.md 2 | -------------------------------------------------------------------------------- /examples/diff/.gitignore: -------------------------------------------------------------------------------- 1 | data.txt* 2 | intel-sensor.sqlite 3 | -------------------------------------------------------------------------------- /examples/diff/intel-sensor.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/examples/diff/intel-sensor.ipynb -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/mypy.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Unit test package for datools.""" 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/db_engine_creators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/tests/db_engine_creators.py -------------------------------------------------------------------------------- /tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/tests/fixtures.py -------------------------------------------------------------------------------- /tests/test_datools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/tests/test_datools.py -------------------------------------------------------------------------------- /tests/test_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/tests/test_diff.py -------------------------------------------------------------------------------- /tests/test_sqlalchemy_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/tests/test_sqlalchemy_utils.py -------------------------------------------------------------------------------- /tests/test_table_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/tests/test_table_statistics.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcua/datools/HEAD/tox.ini --------------------------------------------------------------------------------