You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
3.1 KiB

4 years ago
  1. Metadata-Version: 2.1
  2. Name: lxml
  3. Version: 4.2.5
  4. Summary: Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.
  5. Home-page: http://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. Platform: UNKNOWN
  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.6
  19. Classifier: Programming Language :: Python :: 2.7
  20. Classifier: Programming Language :: Python :: 3
  21. Classifier: Programming Language :: Python :: 3.3
  22. Classifier: Programming Language :: Python :: 3.4
  23. Classifier: Programming Language :: Python :: 3.5
  24. Classifier: Programming Language :: Python :: 3.6
  25. Classifier: Programming Language :: Python :: 3.7
  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. Provides-Extra: htmlsoup
  32. Provides-Extra: html5
  33. Provides-Extra: cssselect
  34. Provides-Extra: source
  35. Provides-Extra: cssselect
  36. Requires-Dist: cssselect (>=0.7); extra == 'cssselect'
  37. Provides-Extra: html5
  38. Requires-Dist: html5lib; extra == 'html5'
  39. Provides-Extra: htmlsoup
  40. Requires-Dist: BeautifulSoup4; extra == 'htmlsoup'
  41. Provides-Extra: source
  42. Requires-Dist: Cython (>=0.26.1); extra == 'source'
  43. lxml is a Pythonic, mature binding for the libxml2 and libxslt libraries. It
  44. provides safe and convenient access to these libraries using the ElementTree
  45. API.
  46. It extends the ElementTree API significantly to offer support for XPath,
  47. RelaxNG, XML Schema, XSLT, C14N and much more.
  48. To contact the project, go to the `project home page
  49. <http://lxml.de/>`_ or see our bug tracker at
  50. https://launchpad.net/lxml
  51. In case you want to use the current in-development version of lxml,
  52. you can get it from the github repository at
  53. https://github.com/lxml/lxml . Note that this requires Cython to
  54. build the sources, see the build instructions on the project home
  55. page. To the same end, running ``easy_install lxml==dev`` will
  56. install lxml from
  57. https://github.com/lxml/lxml/tarball/master#egg=lxml-dev if you have
  58. an appropriate version of Cython installed.
  59. After an official release of a new stable series, bug fixes may become
  60. available at
  61. https://github.com/lxml/lxml/tree/lxml-4.2 .
  62. Running ``easy_install lxml==4.2bugfix`` will install
  63. the unreleased branch state from
  64. https://github.com/lxml/lxml/tarball/lxml-4.2#egg=lxml-4.2bugfix
  65. as soon as a maintenance branch has been established. Note that this
  66. requires Cython to be installed at an appropriate version for the build.
  67. 4.2.5 (2018-09-09)
  68. ==================
  69. Bugs fixed
  70. ----------
  71. * Javascript URLs that used URL escaping were not removed by the HTML cleaner.
  72. Security problem found by Omar Eissa.