Importing and parsing xlsx with python standard library?

Is there any way to parse a excel doc (xlsx) with the python standard library, I see tons of third party libraries but I did want to install anything if I don't have to.

I just need to open a workbook and parse two columns. Any suggestions are welcome! thanks!

Ignition comes with the Apache POI libraries. Use them. (Lots of examples here on the forum.)

1 Like

Thanks, I wasn't aware of those modules. I'll search the forum