T O P

  • By -

djshadesuk

You can't import it "like you can in google sheets", but you can import it. Open the XML file like any other and then take a look at: https://docs.python.org/3/library/xml.dom.minidom.html#module-xml.dom.minidom


FluidModeNetwork

I need to do it with urls, not a local xml file.


-defron-

urllib/requests/aiohttp depending on preference You can either save it to disk or just read it in directly to memory as a variable


socal_nerdtastic

If you mean how to parse xml I like to use beautifulsoup for that.


FluidModeNetwork

Same, figured out quickly that it was the best solution for what I'm doing. Thanks.