Postgresql – Hide pandas warning: SQLAlchemy
I want to hide this warning UserWarning: pandas only support SQLAlchemy connectable(engine/connection) ordatabase string URI or sqlite3 DBAPI2 connectionother DBAPI2 objects are not tested, please consider using SQLAlchemy and I've tried import warnings warnings.simplefilter(action='ignore', category=UserWarning) import pandas but the warning…