05-31-2020, 01:28 AM
it seems you are missing the database connector to PostgreSQL. It is called psycopg2
From our docs,
http://community.southpawtech.com/docs/s...c-general/
"You will also need a Python DB connectivity module. For PostgreSQL, use psycopg2 and for MySQL use mysqlclient"
I can see that this module is not explicitly listed in the list of required modules and kind of mentioned afterwards. This is because the module will depend on the database you use, but I can see how it can be missed. We'll try to make it clearer on the documentation.
From our docs,
http://community.southpawtech.com/docs/s...c-general/
"You will also need a Python DB connectivity module. For PostgreSQL, use psycopg2 and for MySQL use mysqlclient"
I can see that this module is not explicitly listed in the list of required modules and kind of mentioned afterwards. This is because the module will depend on the database you use, but I can see how it can be missed. We'll try to make it clearer on the documentation.