PKG-INFO 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. Metadata-Version: 1.0
  2. Name: lxml
  3. Version: 2.2.2
  4. Summary: Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.
  5. Home-page: http://codespeak.net/lxml
  6. Author: lxml dev team
  7. Author-email: lxml-dev@codespeak.net
  8. License: UNKNOWN
  9. Download-URL: http://pypi.python.org/packages/source/l/lxml/lxml-2.2.2.tar.gz
  10. Description: lxml is a Pythonic, mature binding for the libxml2 and libxslt libraries. It
  11. provides safe and convenient access to these libraries using the ElementTree
  12. API.
  13. It extends the ElementTree API significantly to offer support for XPath,
  14. RelaxNG, XML Schema, XSLT, C14N and much more.
  15. To contact the project, go to the `project home page
  16. <http://codespeak.net>`_ or see our bug tracker at
  17. https://launchpad.net/lxml
  18. In case you want to use the current in-development version of lxml, you can
  19. get it from the subversion repository at http://codespeak.net/svn/lxml/trunk .
  20. Running ``easy_install lxml==dev`` will install it from
  21. http://codespeak.net/svn/lxml/trunk#egg=lxml-dev
  22. After an official release of a new stable series, current bug fixes become
  23. available at http://codespeak.net/svn/lxml/branch/lxml-2.2 .
  24. Running ``easy_install lxml==2.2bugfix`` will install this
  25. version from
  26. http://codespeak.net/svn/lxml/branch/lxml-2.2#egg=lxml-2.2bugfix
  27. 2.2.2 (2009-06-21)
  28. ==================
  29. Features added
  30. --------------
  31. * New helper functions ``strip_attributes()``, ``strip_elements()``,
  32. ``strip_tags()`` in lxml.etree to remove attributes/subtrees/tags
  33. from a subtree.
  34. Bugs fixed
  35. ----------
  36. * Namespace cleanup on subtree insertions could result in missing
  37. namespace declarations (and potentially crashes) if the element
  38. defining a namespace was deleted and the namespace was not used by
  39. the top element of the inserted subtree but only in deeper subtrees.
  40. * Raising an exception from a parser target callback didn't always
  41. terminate the parser.
  42. * Only {true, false, 1, 0} are accepted as the lexical representation for
  43. BoolElement ({True, False, T, F, t, f} not any more), restoring lxml <= 2.0
  44. behaviour.
  45. Other changes
  46. -------------
  47. Platform: UNKNOWN
  48. Classifier: Development Status :: 5 - Production/Stable
  49. Classifier: Intended Audience :: Developers
  50. Classifier: Intended Audience :: Information Technology
  51. Classifier: License :: OSI Approved :: BSD License
  52. Classifier: Programming Language :: Cython
  53. Classifier: Programming Language :: Python :: 2
  54. Classifier: Programming Language :: Python :: 2.3
  55. Classifier: Programming Language :: Python :: 2.4
  56. Classifier: Programming Language :: Python :: 2.5
  57. Classifier: Programming Language :: Python :: 2.6
  58. Classifier: Programming Language :: Python :: 3
  59. Classifier: Programming Language :: Python :: 3.0
  60. Classifier: Programming Language :: C
  61. Classifier: Operating System :: OS Independent
  62. Classifier: Topic :: Text Processing :: Markup :: HTML
  63. Classifier: Topic :: Text Processing :: Markup :: XML
  64. Classifier: Topic :: Software Development :: Libraries :: Python Modules