First read [the official site of BigSQL](https://www.bigsql.org/docs/faq.jsp), it could help
– Guil23Apr 29 '17 at 09:02
Than you Guil23.It will help me to understand BigSQL,but it won't have any guide for python to BigSQL connection
– Python LearnerApr 29 '17 at 09:37
BigSQL is just a Postgres distribution that contains a regular Postgres database server. You should be able to use any Postgres + Python tutorial
– Apr 29 '17 at 09:45
Thank you @a_horse_with_no_name. I found command to connect postgress on server import psycopg2
conn = psycopg2.connect(database='yourdb', user='dbuser', password='abcd1234', host='server', port='5432', sslmode='require') but while I'm trying it by putting my details, I'm getting error message: conn = _connect(dsn, connection_factory=connection_factory, **kwasync)
OperationalError
– Python LearnerMay 02 '17 at 11:07