You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was wondering if support for pandas I/O (https://pandas.pydata.org/docs/user_guide/io.html) was possible to add and in scope for this package. Their I/O functions also have an encoding= argument:
Reader functions like pandas.read_excel, pandas.read_csv
Writer functions like pandas.DataFrame.to_excel, pandas.DataFrame.to_csv
I am not really sure how to do this. Maybe it would even be better to check in general if any function you call has an encoding= keyword argument, or would that be likely to produce false positives?
The text was updated successfully, but these errors were encountered:
First of all, thanks for your project.
I was wondering if support for pandas I/O (https://pandas.pydata.org/docs/user_guide/io.html) was possible to add and in scope for this package. Their I/O functions also have an
encoding=
argument:pandas.read_excel
,pandas.read_csv
pandas.DataFrame.to_excel
,pandas.DataFrame.to_csv
I am not really sure how to do this. Maybe it would even be better to check in general if any function you call has an
encoding=
keyword argument, or would that be likely to produce false positives?The text was updated successfully, but these errors were encountered: