Export your Pandas analysis really easily to a PostgresSQL database table with this tutorial. We used Docker Compose to create the postgres database with docker compose up
and the related compose.yaml
file.
Add requirements.txt
from below.
python3 -m pip install -r requirements.txt
Make a file named .env
with the PostgresSQL connection string like:
DATABASE_URL=postgres://myuser:mypass@localhost:5430/mydb
Run python3 df_to_sql.py