├── .editorconfig ├── .github └── workflows │ └── main.yml ├── .gitignore ├── AUTHORS.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── datakit ├── __init__.py ├── command_helpers.py ├── datakit_app.py ├── help.py ├── main.py └── utils.py ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── datakit.rst ├── developers.rst ├── history.rst ├── index.rst ├── make.bat └── readme.rst ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── helpers.py ├── test_command_helpers.py ├── test_datakit_app.py ├── test_help.py ├── test_utils.py └── utils.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/README.rst -------------------------------------------------------------------------------- /datakit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/datakit/__init__.py -------------------------------------------------------------------------------- /datakit/command_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/datakit/command_helpers.py -------------------------------------------------------------------------------- /datakit/datakit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/datakit/datakit_app.py -------------------------------------------------------------------------------- /datakit/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/datakit/help.py -------------------------------------------------------------------------------- /datakit/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/datakit/main.py -------------------------------------------------------------------------------- /datakit/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/datakit/utils.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/datakit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/docs/datakit.rst -------------------------------------------------------------------------------- /docs/developers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/docs/developers.rst -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cliff 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/test_command_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/tests/test_command_helpers.py -------------------------------------------------------------------------------- /tests/test_datakit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/tests/test_datakit_app.py -------------------------------------------------------------------------------- /tests/test_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/tests/test_help.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/datakit-core/HEAD/tox.ini --------------------------------------------------------------------------------