Instructions for saving to SQL?

Hello @bpolasek,

There are a few ways:

You can save a dataframe directly to sql using df.to_sql.
https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.to_sql.html

You can hook up to PostgreSQL and push updates that way:

Or, if you want transactions and SQL strings, you can use a library like pyodbc.

I personally use the last option, as I do some pretty extensive updates to a SQL server.