dilshod/xlsx2csv

Support pathlib.Path as arguments to Xlsx2csv and Xlsx2csv.convert

Opened this issue · 1 comments

Python's open function supports pathlib.Path so I think this library should also support it instead of me having to do

Xlsx2csv(str(xlsx_file), outputencoding='utf-8').convert(str(csv_file))

This is trivial to implement, and is a standard in modern Python code. Shocking this is lagging.