Reputation: 257
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
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