Mars Lan 52a54b9fda
feat(ingest): add PostgreSQL ETL script (#1712)
Also add a simple docker file for testing
2020-06-25 15:28:42 -07:00

8 lines
315 B
Python

from common import run
# See https://docs.sqlalchemy.org/en/13/dialects/postgresql.html#module-sqlalchemy.dialects.postgresql.psycopg2 for more details
URL = '' # e.g. postgresql+psycopg2://user:password@host:port
OPTIONS = {} # e.g. {"client_encoding": "utf8"}
PLATFORM = 'postgresql'
run(URL, OPTIONS, PLATFORM)