gitextract_ipci6wv1/ ├── .coveragerc ├── .gitignore ├── .isort.cfg ├── CHANGELOG.rst ├── LICENSE ├── README.rst ├── requirements/ │ ├── base.txt │ └── dev.txt ├── scourgify/ │ ├── __init__.py │ ├── address_constants.py │ ├── cleaning.py │ ├── exceptions.py │ ├── normalize.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── config/ │ │ │ ├── __init__.py │ │ │ └── address_constants.yaml │ │ ├── test_address_normalization.py │ │ └── test_cleaning.py │ └── validations.py ├── setup.cfg ├── setup.py └── tox.ini