Answers for "write geopands into postgres python"

1

write geopands into postgres python

from sqlalchemy import create_engine
db_connection_url = "postgres://myusername:mypassword@myhost:5432/mydatabase";
engine = create_engine(db_connection_url)
countries_gdf.to_postgis(name="countries_table", con=engine)
Posted by: Guest on January-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language