I'd like to use in2csv
to convert excel files into csv in my python code, but without running it as a separate process using exec. Instead, I'd like to directly import the function and use it, like in2csv("input.xls", "output.csv")
, or still better, get directly the structure of the file in python without using the csv reader out the output file.
Is it possible?
Thank you!