I'm using pg8000 on an App Engine flask application so that I can be able to process a CSV file and insert it into a PSQL instance (hosted on AZURE
).
Why am I using pg8000
and not psycopg2
? -> Because app engine doesn't support psycopg2.
So far, the docs of pg8000
don't state a function that will do this like the one psycopg2 has. I haven't found an example that achieves this on SO or any other place, including the docs.
Anyone knows if this is possible?