0
I am using the xlsx2csv available in: https://github.com/dilshod/xlsx2csv
from xlsx2csv import Xlsx2csv
Xlsx2csv("myfile.xlsx", outputencoding="utf-8").convert("myfile.csv")
Someone who already used or Python Tips, can help understand how to use the example above, but specifying by the name of the Excel tab the content I want to transform to CSV?
Example, xlsx file has the "tabs" (spreadsheets) named "brazil", "usa", "Canada". I want to turn to CSV only the tab of "usa"..
Hello! I suggest you improve the title of your question, because you can’t understand your doubt with the title you used. Your question could also have more details of your problem.
– Dherik
Thanks, I made some adjustments ;)
– hmm
You can find the answer at: https://stackoverflow.com/questions/20105118/convert-xlsx-to-csv-correctly-using-python
– AlexandroGonSan