{"id":28215545,"url":"https://github.com/stefantaubert/english-text-normalization","last_synced_at":"2025-06-25T07:05:26.099Z","repository":{"id":77474322,"uuid":"457332674","full_name":"stefantaubert/english-text-normalization","owner":"stefantaubert","description":"Command-line interface (CLI) and library to normalize English texts.","archived":false,"fork":false,"pushed_at":"2024-01-23T11:02:01.000Z","size":241,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-12T06:46:49.120Z","etag":null,"topics":["nlp","preprocessing","text-normalization","tts"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stefantaubert.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":"CITATION.cff","codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-02-09T11:37:15.000Z","updated_at":"2025-05-22T15:11:21.000Z","dependencies_parsed_at":"2024-01-18T16:40:26.703Z","dependency_job_id":"af90d1ba-1f25-423f-ba02-d80f6b15e910","html_url":"https://github.com/stefantaubert/english-text-normalization","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/stefantaubert/english-text-normalization","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stefantaubert%2Fenglish-text-normalization","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stefantaubert%2Fenglish-text-normalization/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stefantaubert%2Fenglish-text-normalization/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stefantaubert%2Fenglish-text-normalization/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stefantaubert","download_url":"https://codeload.github.com/stefantaubert/english-text-normalization/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stefantaubert%2Fenglish-text-normalization/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261225639,"owners_count":23127178,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["nlp","preprocessing","text-normalization","tts"],"created_at":"2025-05-17T22:11:18.852Z","updated_at":"2025-06-25T07:05:26.079Z","avatar_url":"https://github.com/stefantaubert.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# english-text-normalization\n\n[![PyPI](https://img.shields.io/pypi/v/english-text-normalization.svg)](https://pypi.python.org/pypi/english-text-normalization)\n[![PyPI](https://img.shields.io/pypi/pyversions/english-text-normalization.svg)](https://pypi.python.org/pypi/english-text-normalization)\n[![MIT](https://img.shields.io/github/license/jasminsternkopf/english_text_normalization.svg)](https://github.com/jasminsternkopf/english_text_normalization/blob/main/LICENSE)\n[![PyPI](https://img.shields.io/pypi/wheel/english-text-normalization.svg)](https://pypi.python.org/pypi/english-text-normalization/#files)\n![PyPI](https://img.shields.io/pypi/implementation/english-text-normalization.svg)\n[![PyPI](https://img.shields.io/github/commits-since/jasminsternkopf/english_text_normalization/latest/main.svg)](https://github.com/jasminsternkopf/english_text_normalization/compare/v0.0.3...main)\n[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.10555229.svg)](https://doi.org/10.5281/zenodo.10555229)\n\nCommand-line interface (CLI) and library to normalize English texts.\n\n## Installation\n\n```sh\npip install english-text-normalization --user\n```\n\n## Usage as CLI\n\n```sh\n# Show supported normalizing operations\nnorm-eng-cli list-operations -h\n\n# Normalize\nnorm-eng-cli normalize -h\n```\n\n## Usage as a library\n\n```py\nfrom english_text_normalization import *\n```\n\n## Development setup\n\n```sh\n# update\nsudo apt update\n# install Python 3.8, 3.9, 3.10, 3.11 \u0026 3.12 for ensuring that tests can be run\nsudo apt install python3-pip \\\n  python3.8 python3.8-dev python3.8-distutils python3.8-venv \\\n  python3.9 python3.9-dev python3.9-distutils python3.9-venv \\\n  python3.10 python3.10-dev python3.10-distutils python3.10-venv \\\n  python3.11 python3.11-dev python3.11-distutils python3.11-venv \\\n  python3.12 python3.12-dev python3.12-distutils python3.12-venv\n# install pipenv for creation of virtual environments\npython3.8 -m pip install pipenv --user\n\n# check out repo\ngit clone https://github.com/jasminsternkopf/english_text_normalization.git\ncd english_text_normalization\n# create virtual environment\npython3.8 -m pipenv install --dev\n```\n\n## Running the tests\n\n```sh\n# first install the tool like in \"Development setup\"\n# then, navigate into the directory of the repo (if not already done)\ncd english_text_normalization\n# activate environment\npython3.8 -m pipenv shell\n# run tests\ntox\n```\n\nFinal lines of test result output:\n\n```log\n  py38: commands succeeded\n  py39: commands succeeded\n  py310: commands succeeded\n  py311: commands succeeded\n  py312: commands succeeded\n  congratulations :)\n```\n\n## License\n\nMIT License\n\n## Acknowledgments\n\nFunded by the Deutsche Forschungsgemeinschaft (DFG, German Research Foundation) – Project-ID 416228727 – CRC 1410\n\n## Citation\n\nIf you want to cite this repo, you can use this BibTeX-entry generated by GitHub (see *About =\u003e Cite this repository*).\n\n```txt\nSternkopf, J. and Taubert, S. (2024). english-text-normalization (Version 0.0.3) [Computer software]. https://doi.org/10.5281/zenodo.10555229\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstefantaubert%2Fenglish-text-normalization","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstefantaubert%2Fenglish-text-normalization","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstefantaubert%2Fenglish-text-normalization/lists"}