Add pgsql wrapper & delitem for persistent state

This commit is contained in:
2021-02-06 15:41:18 -05:00
parent a2cfab55bc
commit 7d330a0f9f
3 changed files with 101 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="hexlib",
version="1.26",
version="1.28",
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"
"u-msgpack-python", "psycopg2-binary"
]
)