Python converts xml or xsl to html format

Source: Internet
Author: User
This article mainly introduces how to convert xml or xsl to html format using Python. This article provides the implementation code directly. if you need it, refer to a small program that uses python to process xml conversion the next day, used to convert xml and xsl into html.

Libxml2 is used. Therefore, libxml2 must be installed first.

# -*- coding: mbcs -*- #!/usr/bin/pythonimport libxml2, libxsltclass compoundXML:   def __init__(self):     self._result = None     self._xsl = None     self._xml = None           def do(self, xml_file_name, xsl_file_name):        self._xml = libxml2.parseFile(xml_file_name)     if self._xml == None:       return 0    styledoc = libxml2.parseFile(xsl_file_name)     if styledoc == None:       return 0    self._xsl = libxslt.parseStylesheetDoc(styledoc)     if self._xsl == None:       return 0    self._result = self._xsl.applyStylesheet(self._xml, None)              def get_xml_doc(self):     return self._result                def get_translated(self):     return self._result.serialize('UTF-8')        def save_translated(self, file_name):     self._xsl.saveResultToFilename(file_name, self._result, 0)       def release(self):     '''     this function must be called in the end.     '''     self._xsl.freeStylesheet()     self._xml.freeDoc()     self._result.freeDoc()     self._xsl = None     self._xml = None     self._result = None         if __name__ == '__main__':   test = compoundXML()   test.do('test/testxmlutil.xml', 'test/testxmlutil.xsl')   print test.get_translated()   test.save_translated('test/testxmlutil.htm')   test.release()

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.