Home > front end >  Is there an alternative for Postgres for Python 3.9?
Is there an alternative for Postgres for Python 3.9?

Time:10-18

I am trying to use psycopg2 to connect to a Postgres DB but apparently it is not supported in 3.9. Is there another alternative I can use?

CodePudding user response:

Documentation says that 3.9 is supported

Python versions from 3.6 to 3.9

https://www.psycopg.org/docs/install.html#prerequisites

Here is list on Postgres Wiki for other libs https://wiki.postgresql.org/wiki/Python

You can also search on python package index https://pypi.org/search/?q=postgre&o=&c=Topic :: Database&c=Programming Language :: Python

  • Related