├── .github └── workflows │ ├── build_docs.yml │ ├── entry_point_test.yml │ ├── lint_check.yml │ ├── release.yml │ ├── release_notes_updated.yml │ └── unit_tests_with_latest_deps.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── RELEASE.MD ├── autonormalize ├── .gitignore ├── __init__.py ├── autonormalize.py ├── classes.py ├── dfd.py ├── examples │ ├── example_3 │ └── example_data_gen.py ├── normalize.py └── tests │ ├── __init__.py │ ├── test_classes.py │ ├── test_dfd.py │ ├── test_example.py │ ├── test_normalize.py │ └── test_version.py ├── contributing.md ├── dev-requirements.txt ├── docs ├── Makefile ├── make.bat └── source │ ├── _static │ ├── images │ │ ├── alteryx_open_source.svg │ │ ├── copyright.svg │ │ ├── github.svg │ │ └── twitter.svg │ └── style.css │ ├── _templates │ ├── accessor_callable.rst │ ├── accessor_method.rst │ ├── class.rst │ ├── class_with_properties.rst │ ├── data_check_class.rst │ ├── data_check_message.rst │ ├── estimator_class.rst │ ├── layout.html │ ├── pipeline_class.rst │ └── transformer_class.rst │ ├── api_reference.rst │ ├── conf.py │ ├── guides │ ├── demo │ │ ├── __init__.py │ │ ├── food │ │ │ ├── FAO.csv │ │ │ └── __init__.py │ │ └── liquor │ │ │ ├── Iowa_Liquor_Sales.csv │ │ │ └── __init__.py │ ├── editing_dependencies.ipynb │ ├── kaggle_food_dataset.ipynb │ └── kaggle_liquor_sales_dataset.ipynb │ ├── images │ └── alteryx_innovation_labs.png │ ├── index.ipynb │ ├── install.rst │ ├── release_notes.rst │ └── set-headers.py ├── gif.gif ├── presentation.key ├── release └── upload.sh ├── requirements.txt ├── setup.cfg ├── setup.py └── test-requirements.txt /.github/workflows/build_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/.github/workflows/build_docs.yml -------------------------------------------------------------------------------- /.github/workflows/entry_point_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/.github/workflows/entry_point_test.yml -------------------------------------------------------------------------------- /.github/workflows/lint_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/.github/workflows/lint_check.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/release_notes_updated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/.github/workflows/release_notes_updated.yml -------------------------------------------------------------------------------- /.github/workflows/unit_tests_with_latest_deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/.github/workflows/unit_tests_with_latest_deps.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/RELEASE.MD -------------------------------------------------------------------------------- /autonormalize/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.csv 3 | *.pyc 4 | 5 | __pycache__/ -------------------------------------------------------------------------------- /autonormalize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/autonormalize/__init__.py -------------------------------------------------------------------------------- /autonormalize/autonormalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/autonormalize/autonormalize.py -------------------------------------------------------------------------------- /autonormalize/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/autonormalize/classes.py -------------------------------------------------------------------------------- /autonormalize/dfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/autonormalize/dfd.py -------------------------------------------------------------------------------- /autonormalize/examples/example_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/autonormalize/examples/example_3 -------------------------------------------------------------------------------- /autonormalize/examples/example_data_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/autonormalize/examples/example_data_gen.py -------------------------------------------------------------------------------- /autonormalize/normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/autonormalize/normalize.py -------------------------------------------------------------------------------- /autonormalize/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autonormalize/tests/test_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/autonormalize/tests/test_classes.py -------------------------------------------------------------------------------- /autonormalize/tests/test_dfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/autonormalize/tests/test_dfd.py -------------------------------------------------------------------------------- /autonormalize/tests/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/autonormalize/tests/test_example.py -------------------------------------------------------------------------------- /autonormalize/tests/test_normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/autonormalize/tests/test_normalize.py -------------------------------------------------------------------------------- /autonormalize/tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/autonormalize/tests/test_version.py -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/contributing.md -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/images/alteryx_open_source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/_static/images/alteryx_open_source.svg -------------------------------------------------------------------------------- /docs/source/_static/images/copyright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/_static/images/copyright.svg -------------------------------------------------------------------------------- /docs/source/_static/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/_static/images/github.svg -------------------------------------------------------------------------------- /docs/source/_static/images/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/_static/images/twitter.svg -------------------------------------------------------------------------------- /docs/source/_static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/_static/style.css -------------------------------------------------------------------------------- /docs/source/_templates/accessor_callable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/_templates/accessor_callable.rst -------------------------------------------------------------------------------- /docs/source/_templates/accessor_method.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/_templates/accessor_method.rst -------------------------------------------------------------------------------- /docs/source/_templates/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/_templates/class.rst -------------------------------------------------------------------------------- /docs/source/_templates/class_with_properties.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/_templates/class_with_properties.rst -------------------------------------------------------------------------------- /docs/source/_templates/data_check_class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/_templates/data_check_class.rst -------------------------------------------------------------------------------- /docs/source/_templates/data_check_message.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/_templates/data_check_message.rst -------------------------------------------------------------------------------- /docs/source/_templates/estimator_class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/_templates/estimator_class.rst -------------------------------------------------------------------------------- /docs/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/_templates/layout.html -------------------------------------------------------------------------------- /docs/source/_templates/pipeline_class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/_templates/pipeline_class.rst -------------------------------------------------------------------------------- /docs/source/_templates/transformer_class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/_templates/transformer_class.rst -------------------------------------------------------------------------------- /docs/source/api_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/api_reference.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/guides/demo/__init__.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | PWD = os.path.dirname(__file__) 4 | -------------------------------------------------------------------------------- /docs/source/guides/demo/food/FAO.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/guides/demo/food/FAO.csv -------------------------------------------------------------------------------- /docs/source/guides/demo/food/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/guides/demo/food/__init__.py -------------------------------------------------------------------------------- /docs/source/guides/demo/liquor/Iowa_Liquor_Sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/guides/demo/liquor/Iowa_Liquor_Sales.csv -------------------------------------------------------------------------------- /docs/source/guides/demo/liquor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/guides/demo/liquor/__init__.py -------------------------------------------------------------------------------- /docs/source/guides/editing_dependencies.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/guides/editing_dependencies.ipynb -------------------------------------------------------------------------------- /docs/source/guides/kaggle_food_dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/guides/kaggle_food_dataset.ipynb -------------------------------------------------------------------------------- /docs/source/guides/kaggle_liquor_sales_dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/guides/kaggle_liquor_sales_dataset.ipynb -------------------------------------------------------------------------------- /docs/source/images/alteryx_innovation_labs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/images/alteryx_innovation_labs.png -------------------------------------------------------------------------------- /docs/source/index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/index.ipynb -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/release_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/release_notes.rst -------------------------------------------------------------------------------- /docs/source/set-headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/docs/source/set-headers.py -------------------------------------------------------------------------------- /gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/gif.gif -------------------------------------------------------------------------------- /presentation.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/presentation.key -------------------------------------------------------------------------------- /release/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/release/upload.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alteryx/autonormalize/HEAD/test-requirements.txt --------------------------------------------------------------------------------