├── .bumpversion.cfg ├── .github ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── normality ├── __init__.py ├── cleaning.py ├── constants.py ├── encoding.py ├── paths.py ├── py.typed ├── scripts.py ├── slugify.py ├── stringify.py ├── transliteration.py └── util.py ├── pyproject.toml └── tests ├── __init__.py ├── fixtures └── utf-16.txt ├── test_cleaning.py ├── test_normality.py ├── test_paths.py └── test_scripts.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/README.md -------------------------------------------------------------------------------- /normality/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/normality/__init__.py -------------------------------------------------------------------------------- /normality/cleaning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/normality/cleaning.py -------------------------------------------------------------------------------- /normality/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/normality/constants.py -------------------------------------------------------------------------------- /normality/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/normality/encoding.py -------------------------------------------------------------------------------- /normality/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/normality/paths.py -------------------------------------------------------------------------------- /normality/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /normality/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/normality/scripts.py -------------------------------------------------------------------------------- /normality/slugify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/normality/slugify.py -------------------------------------------------------------------------------- /normality/stringify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/normality/stringify.py -------------------------------------------------------------------------------- /normality/transliteration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/normality/transliteration.py -------------------------------------------------------------------------------- /normality/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/normality/util.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/utf-16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/tests/fixtures/utf-16.txt -------------------------------------------------------------------------------- /tests/test_cleaning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/tests/test_cleaning.py -------------------------------------------------------------------------------- /tests/test_normality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/tests/test_normality.py -------------------------------------------------------------------------------- /tests/test_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/tests/test_paths.py -------------------------------------------------------------------------------- /tests/test_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/normality/HEAD/tests/test_scripts.py --------------------------------------------------------------------------------