SimFin / simfin

Simple financial data for Python
https://simfin.com/
Other
299 stars 39 forks source link

fix: replace deprecated date_parser with pd.to_datetime #22

Closed ghost closed 12 months ago

ghost commented 1 year ago

The date_parser argument in pandas.read_csv() has been deprecated since Pandas 2.0 and is planned to be removed. This commit replaces the use of date_parser with the recommended pandas.to_datetime() function to parse date columns after reading the CSV file.