Hi Everyone! This being my first community post, very excited to learn from all your experiences 🙂
I wrote a python script to iteratively parse an XML File to an excel table (csv) for further Alteryx analysis. I want to modify my use case to incorporate this parsing logic within a single canvas itself (instead of first running my python script separately and then plugging the resulting csv into my canvas).
I was hoping to achieve this by using the Python tool, but as I understand the tool reads all inputs as a pandas dataframe by default and this causes incompatibility with my parsing script as I make use of the "xml" python library that directly deals with an input XML file.
I was wondering if there was any way in which I can directly read the XML file stored locally, in my Jupyter notebook within Alteryx and replicate my script.Â
Any suggestions would be greatly appreciated and do let me know in case any further details are required, thank you!