PKG-INFO 1.9 KB

1234567891011121314151617181920212223242526272829303132333435
  1. Metadata-Version: 1.1
  2. Name: et_xmlfile
  3. Version: 1.0.1
  4. Summary: An implementation of lxml.xmlfile for the standard library
  5. Home-page: https://bitbucket.org/openpyxl/et_xmlfile
  6. Author: See ATUHORS.txt
  7. Author-email: charlie.clark@clark-consulting.eu
  8. License: MIT
  9. Description: et_xmfile
  10. =========
  11. et_xmlfile is a low memory library for creating large XML files.
  12. It is based upon the `xmlfile module from lxml <http://lxml.de/api.html#incremental-xml-generation>`_ with the aim of allowing code to be developed that will work with both libraries. It was developed initially for the openpyxl project but is now a standalone module.
  13. The code was written by Elias Rabel as part of the `Python Düsseldorf <http://pyddf.de>`_ openpyxl sprint in September 2014.
  14. Note on performance
  15. -------------------
  16. The code was not developed with performance in mind but turned out to be faster than the existing SAX-based implementation but is significantly slower than lxml's xmlfile. There is one area where an optimisation for lxml will negatively affect the performance of et_xmfile and that is when using the `.element()` method on an xmlfile context manager. It is, therefore, recommended not to use this, though the method is provided for code compatibility.
  17. Platform: UNKNOWN
  18. Classifier: Development Status :: 5 - Production/Stable
  19. Classifier: Operating System :: MacOS :: MacOS X
  20. Classifier: Operating System :: Microsoft :: Windows
  21. Classifier: Operating System :: POSIX
  22. Classifier: License :: OSI Approved :: MIT License
  23. Classifier: Programming Language :: Python
  24. Classifier: Programming Language :: Python :: 2.6
  25. Classifier: Programming Language :: Python :: 2.7
  26. Classifier: Programming Language :: Python :: 3.3
  27. Classifier: Programming Language :: Python :: 3.4
  28. Requires: python (>=2.6.0)