├── .gitignore ├── LICENSE ├── README.md ├── dataenforce └── __init__.py ├── setup.py └── tests ├── test_dataset.py └── test_validate.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CedricFR/dataenforce/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CedricFR/dataenforce/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CedricFR/dataenforce/HEAD/README.md -------------------------------------------------------------------------------- /dataenforce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CedricFR/dataenforce/HEAD/dataenforce/__init__.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CedricFR/dataenforce/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CedricFR/dataenforce/HEAD/tests/test_dataset.py -------------------------------------------------------------------------------- /tests/test_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CedricFR/dataenforce/HEAD/tests/test_validate.py --------------------------------------------------------------------------------