PKG-INFO 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. Metadata-Version: 2.1
  2. Name: lxml
  3. Version: 4.9.1
  4. Summary: Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.
  5. Home-page: https://lxml.de/
  6. Author: lxml dev team
  7. Author-email: lxml-dev@lxml.de
  8. Maintainer: lxml dev team
  9. Maintainer-email: lxml-dev@lxml.de
  10. License: BSD
  11. Project-URL: Source, https://github.com/lxml/lxml
  12. Classifier: Development Status :: 5 - Production/Stable
  13. Classifier: Intended Audience :: Developers
  14. Classifier: Intended Audience :: Information Technology
  15. Classifier: License :: OSI Approved :: BSD License
  16. Classifier: Programming Language :: Cython
  17. Classifier: Programming Language :: Python :: 2
  18. Classifier: Programming Language :: Python :: 2.7
  19. Classifier: Programming Language :: Python :: 3
  20. Classifier: Programming Language :: Python :: 3.5
  21. Classifier: Programming Language :: Python :: 3.6
  22. Classifier: Programming Language :: Python :: 3.7
  23. Classifier: Programming Language :: Python :: 3.8
  24. Classifier: Programming Language :: Python :: 3.9
  25. Classifier: Programming Language :: Python :: 3.10
  26. Classifier: Programming Language :: C
  27. Classifier: Operating System :: OS Independent
  28. Classifier: Topic :: Text Processing :: Markup :: HTML
  29. Classifier: Topic :: Text Processing :: Markup :: XML
  30. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  31. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, != 3.4.*
  32. Provides-Extra: source
  33. Provides-Extra: cssselect
  34. Provides-Extra: html5
  35. Provides-Extra: htmlsoup
  36. License-File: LICENSE.txt
  37. License-File: LICENSES.txt
  38. lxml is a Pythonic, mature binding for the libxml2 and libxslt libraries. It
  39. provides safe and convenient access to these libraries using the ElementTree
  40. API.
  41. It extends the ElementTree API significantly to offer support for XPath,
  42. RelaxNG, XML Schema, XSLT, C14N and much more.
  43. To contact the project, go to the `project home page
  44. <https://lxml.de/>`_ or see our bug tracker at
  45. https://launchpad.net/lxml
  46. In case you want to use the current in-development version of lxml,
  47. you can get it from the github repository at
  48. https://github.com/lxml/lxml . Note that this requires Cython to
  49. build the sources, see the build instructions on the project home
  50. page. To the same end, running ``easy_install lxml==dev`` will
  51. install lxml from
  52. https://github.com/lxml/lxml/tarball/master#egg=lxml-dev if you have
  53. an appropriate version of Cython installed.
  54. After an official release of a new stable series, bug fixes may become
  55. available at
  56. https://github.com/lxml/lxml/tree/lxml-4.9 .
  57. Running ``easy_install lxml==4.9bugfix`` will install
  58. the unreleased branch state from
  59. https://github.com/lxml/lxml/tarball/lxml-4.9#egg=lxml-4.9bugfix
  60. as soon as a maintenance branch has been established. Note that this
  61. requires Cython to be installed at an appropriate version for the build.
  62. 4.9.1 (2022-07-01)
  63. ==================
  64. Bugs fixed
  65. ----------
  66. * A crash was resolved when using ``iterwalk()`` (or ``canonicalize()``)
  67. after parsing certain incorrect input. Note that ``iterwalk()`` can crash
  68. on *valid* input parsed with the same parser *after* failing to parse the
  69. incorrect input.