pip install nlpio
from nlpio import strip_html_tags
print(strip_html_tags('<h1>Hello World</h1>')) # "Hello World"
python setup.py sdist bdist_wheel
twine upload dist/*
python -m pip install -e .
python
>>> from nlpio import strip_html_tags
>>> print(strip_html_tags('<h1>Hello World</h1>'))
This works is under MIT License.