I have a python API that hits a URL and receives a JSON. There is a table that contains order data
Order_id ZipCode delivery_date total
The json returned by the API contains the city and state of the zipcode being passed.
I want to :
- Add new column to the table
City and State
- Update the above 2 column based on the corresponding zip code
How can this be done through python ?
you can use an adapter to establish first a connection to python like psycopg2 or sqlalchemy
using psycopg2
and then instantiate the class postgress, and call the methode read or write giving the if the goal is to write or read from the database.