How Python converts xml and xsl to html

Source: Internet
Author: User
This article mainly introduces how to convert xml and xsl to html in Python. The example shows how to use the libxml2 module to convert xml and xsl to html, which has some reference value, for more information about how to convert xml and xsl to html, see the example in this article. Share it with you for your reference. The specific analysis is as follows:

Libxml2 is required, so libxml2 must be installed first. The code is as follows:

# -*- 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 = Noneif __name__ == '__main__':  test = compoundXML()  test.do('test/testxmlutil.xml', 'test/testxmlutil.xsl')  print test.get_translated()  test.save_translated('test/testxmlutil.htm')  test.release()

I hope this article will help you with Python programming.

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.