xlsx2csv
xlsx2csv copied to clipboard
Listed python alternatives are out of date
- https://github.com/staale/py-xlsx last updated 9 years ago
- https://github.com/leegao/pyXLSX last updated 14 years ago
It makes me a bit nervous to use something so old with modern pythons.
When I searched for python xlsx, I got:
- openpyxl - last updated 2023
- pandas.read_excel - seems heavyweight
- pyexcel - last updated 9 months ago, but not passing its tests
- a whole page of alternatives
It's a confusing world out there, I'm not sure what the best alternative is.
Upon reflection, pandas is likely the most supported, even though it's heavyweight for this.
Sorry to keep chattering about this, but I think like pandas uses openpyxl by default.
See https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.read_excel.html
engine{‘openpyxl’, ‘calamine’, ‘odf’, ‘pyxlsb’, ‘xlrd’}, default None
Also see https://openpyxl.readthedocs.io/en/stable/pandas.html.