Sourav Gupta
Sourav Gupta

Reputation: 257

Methods to connect to AWS Redshift through Python 3.x (Windows7) apart from using psycopg2

Are there any other ways to connect to AWS Redshift through Python 3.x on Windows 7 - 64 bit platform, apart from using psycopg2? Is psycopg2, the only library which we can use to connect to Redshift?

Upvotes: 1

Views: 414

Answers (1)

Zac R.
Zac R.

Reputation: 548

You can find all the available drivers on the postgres wiki: https://wiki.postgresql.org/wiki/Python

There is one other driver supported on Windows, but in general psycopg2 is your best bet.

Upvotes: 1

Related Questions