qureeying data from postgresql using python code example
Example: python to postgresql
from sqlalchemy import create_engine
engine = create_engine('postgresql://postgres:admin1@localhost:5432/postgres')
from sqlalchemy import create_engine
engine = create_engine('postgresql://postgres:admin1@localhost:5432/postgres')