Add text cleaning function

This commit is contained in:
2021-04-18 12:12:31 -04:00
parent 30902c8235
commit 765f6f59b7
4 changed files with 163 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="hexlib",
version="1.38",
version="1.39",
description="Misc utility methods",
author="simon987",
author_email="me@simon987.net",
@@ -13,6 +13,6 @@ setup(
]},
install_requires=[
"ImageHash", "influxdb", "siphash", "python-dateutil", "redis", "orjson", "zstandard",
"u-msgpack-python", "psycopg2-binary", "fake-useragent", "bs4"
"u-msgpack-python", "psycopg2-binary", "fake-useragent", "bs4", "lxml", "nltk"
]
)