![]() |
Parse encrypted xml file to csv - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: Parse encrypted xml file to csv (/thread-27201.html) |
Parse encrypted xml file to csv - Mekala - May-29-2020 Hi, I have encrypted the XML file and need to parse and save it to the CSV file. Does python have any module to do this task? and example? RE: Parse encrypted xml file to csv - Larz60+ - May-29-2020 lxml package is designed for this: https://lxml.de/ beautifulsoup can also do this as a wrapper around lxml, making it somewhat easier. see: https://www.crummy.com/software/BeautifulSoup/bs4/doc/ both of these sites have aplenty of examples RE: Parse encrypted xml file to csv - Mekala - May-30-2020 But I want to parse encrypted xml file. |