当从parse_date数据库检索数据时,Pandas parse_date应该如何工作?要解析为日期的列名列表。Dict of {column_name: format string}其中的格式字符串在解析字符串时是兼容的,或者在解析整数时间戳时是(D,s,ns,ms,us)之一。{column_name: arg },其中arg对应于pandas.to_datetime()的关键字参数,对于没有本地日期时间支持的数据库尤其有用,例如SQLite。
例如,我想从MySQL Sakila数据库
我想隐藏这个警告,UserWarning: pandas only support SQLAlchemy connectable(engine/connection) ordatabase string URI or sqlite3 DBAPI2 connectionother DBAPI2 objects are not tested, please consider using SQLAlchemy,我已经试过了warnings.simplefilter(action='ignore', category=UserWarning)
imp