├── .github └── workflows │ ├── codeql-analysis.yml │ └── python-package.yml ├── .gitignore ├── CHANGES.txt ├── LICENSE.txt ├── README.md ├── cleanco ├── __init__.py ├── classify.py ├── clean.py ├── non_nfkd_map.py └── termdata.py ├── setup.cfg ├── setup.py ├── tests ├── README.txt ├── __init__.py ├── companies.csv └── test_cleanname.py └── tox.ini /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psolin/cleanco/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psolin/cleanco/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psolin/cleanco/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psolin/cleanco/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psolin/cleanco/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psolin/cleanco/HEAD/README.md -------------------------------------------------------------------------------- /cleanco/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psolin/cleanco/HEAD/cleanco/__init__.py -------------------------------------------------------------------------------- /cleanco/classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psolin/cleanco/HEAD/cleanco/classify.py -------------------------------------------------------------------------------- /cleanco/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psolin/cleanco/HEAD/cleanco/clean.py -------------------------------------------------------------------------------- /cleanco/non_nfkd_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psolin/cleanco/HEAD/cleanco/non_nfkd_map.py -------------------------------------------------------------------------------- /cleanco/termdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psolin/cleanco/HEAD/cleanco/termdata.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psolin/cleanco/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psolin/cleanco/HEAD/setup.py -------------------------------------------------------------------------------- /tests/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psolin/cleanco/HEAD/tests/README.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/companies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psolin/cleanco/HEAD/tests/companies.csv -------------------------------------------------------------------------------- /tests/test_cleanname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psolin/cleanco/HEAD/tests/test_cleanname.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psolin/cleanco/HEAD/tox.ini --------------------------------------------------------------------------------