I feel this is a stupid question. I found the python library I need to use. In particular csvkit . I need to use this in an existing application that I created. However, the whole use case that I could see is from the command line, where the arguments are passed as follows:
in2csv ne_1033_data.xlsx > data.csv
Can I import this and use it in my application? Sort of:
from csvkit import in2csv
in2csv(ne_1033_data.xlsx, data.csv)
Thanks for helping me. I'm sure I don’t understand something ...
source
share