lxml 5.3.2__cp39-cp39-macosx_10_9_universal2.whl → 6.0.0__cp39-cp39-macosx_10_9_universal2.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. lxml/__init__.py +1 -1
  2. lxml/_elementpath.cpython-39-darwin.so +0 -0
  3. lxml/_elementpath.py +3 -1
  4. lxml/apihelpers.pxi +25 -17
  5. lxml/builder.cpython-39-darwin.so +0 -0
  6. lxml/builder.py +11 -0
  7. lxml/debug.pxi +0 -54
  8. lxml/etree.cpython-39-darwin.so +0 -0
  9. lxml/etree.h +24 -28
  10. lxml/etree.pyx +154 -33
  11. lxml/etree_api.h +59 -50
  12. lxml/extensions.pxi +3 -6
  13. lxml/html/__init__.py +7 -3
  14. lxml/html/_difflib.cpython-39-darwin.so +0 -0
  15. lxml/html/_difflib.py +2106 -0
  16. lxml/html/builder.py +40 -0
  17. lxml/html/defs.py +3 -3
  18. lxml/html/diff.cpython-39-darwin.so +0 -0
  19. lxml/html/diff.py +406 -312
  20. lxml/includes/etree_defs.h +6 -6
  21. lxml/includes/libexslt/exsltconfig.h +3 -3
  22. lxml/includes/libxml/HTMLparser.h +41 -45
  23. lxml/includes/libxml/HTMLtree.h +1 -0
  24. lxml/includes/libxml/SAX.h +2 -186
  25. lxml/includes/libxml/SAX2.h +2 -3
  26. lxml/includes/libxml/c14n.h +1 -12
  27. lxml/includes/libxml/catalog.h +1 -0
  28. lxml/includes/libxml/debugXML.h +0 -138
  29. lxml/includes/libxml/encoding.h +131 -59
  30. lxml/includes/libxml/entities.h +12 -20
  31. lxml/includes/libxml/globals.h +0 -16
  32. lxml/includes/libxml/hash.h +19 -0
  33. lxml/includes/libxml/list.h +2 -2
  34. lxml/includes/libxml/nanoftp.h +3 -173
  35. lxml/includes/libxml/nanohttp.h +17 -0
  36. lxml/includes/libxml/parser.h +505 -256
  37. lxml/includes/libxml/parserInternals.h +26 -98
  38. lxml/includes/libxml/relaxng.h +7 -2
  39. lxml/includes/libxml/threads.h +0 -6
  40. lxml/includes/libxml/tree.h +61 -97
  41. lxml/includes/libxml/uri.h +11 -0
  42. lxml/includes/libxml/valid.h +49 -14
  43. lxml/includes/libxml/xinclude.h +12 -0
  44. lxml/includes/libxml/xlink.h +4 -0
  45. lxml/includes/libxml/xmlIO.h +33 -35
  46. lxml/includes/libxml/xmlautomata.h +19 -2
  47. lxml/includes/libxml/xmlerror.h +32 -18
  48. lxml/includes/libxml/xmlexports.h +61 -15
  49. lxml/includes/libxml/xmlmemory.h +27 -64
  50. lxml/includes/libxml/xmlmodule.h +4 -0
  51. lxml/includes/libxml/xmlreader.h +13 -3
  52. lxml/includes/libxml/xmlregexp.h +7 -106
  53. lxml/includes/libxml/xmlsave.h +15 -1
  54. lxml/includes/libxml/xmlschemas.h +10 -5
  55. lxml/includes/libxml/xmlunicode.h +3 -190
  56. lxml/includes/libxml/xmlversion.h +15 -194
  57. lxml/includes/libxml/xmlwriter.h +1 -0
  58. lxml/includes/libxml/xpath.h +9 -15
  59. lxml/includes/libxml/xpathInternals.h +9 -3
  60. lxml/includes/libxml/xpointer.h +1 -91
  61. lxml/includes/libxslt/xsltconfig.h +6 -6
  62. lxml/includes/lxml-version.h +1 -1
  63. lxml/includes/tree.pxd +10 -12
  64. lxml/includes/xmlparser.pxd +46 -8
  65. lxml/lxml.etree.h +24 -28
  66. lxml/lxml.etree_api.h +59 -50
  67. lxml/objectify.cpython-39-darwin.so +0 -0
  68. lxml/objectify.pyx +11 -7
  69. lxml/parser.pxi +106 -47
  70. lxml/sax.cpython-39-darwin.so +0 -0
  71. lxml/sax.py +11 -0
  72. lxml/saxparser.pxi +14 -14
  73. lxml/schematron.pxi +8 -3
  74. lxml/serializer.pxi +71 -3
  75. lxml/xslt.pxi +10 -3
  76. lxml-6.0.0.dist-info/METADATA +163 -0
  77. {lxml-5.3.2.dist-info → lxml-6.0.0.dist-info}/RECORD +81 -79
  78. {lxml-5.3.2.dist-info → lxml-6.0.0.dist-info}/WHEEL +2 -1
  79. {lxml-5.3.2.dist-info → lxml-6.0.0.dist-info}/licenses/LICENSE.txt +3 -1
  80. lxml-5.3.2.dist-info/METADATA +0 -100
  81. {lxml-5.3.2.dist-info → lxml-6.0.0.dist-info}/licenses/LICENSES.txt +0 -0
  82. {lxml-5.3.2.dist-info → lxml-6.0.0.dist-info}/top_level.txt +0 -0
@@ -1,100 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: lxml
3
- Version: 5.3.2
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@lxml.de
8
- Maintainer: lxml dev team
9
- Maintainer-email: lxml@lxml.de
10
- License: BSD-3-Clause
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 :: 3
18
- Classifier: Programming Language :: Python :: 3.6
19
- Classifier: Programming Language :: Python :: 3.7
20
- Classifier: Programming Language :: Python :: 3.8
21
- Classifier: Programming Language :: Python :: 3.9
22
- Classifier: Programming Language :: Python :: 3.10
23
- Classifier: Programming Language :: Python :: 3.11
24
- Classifier: Programming Language :: Python :: 3.12
25
- Classifier: Programming Language :: C
26
- Classifier: Operating System :: OS Independent
27
- Classifier: Topic :: Text Processing :: Markup :: HTML
28
- Classifier: Topic :: Text Processing :: Markup :: XML
29
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
30
- Requires-Python: >=3.6
31
- License-File: LICENSE.txt
32
- License-File: LICENSES.txt
33
- Provides-Extra: source
34
- Requires-Dist: Cython<3.1.0,>=3.0.11; 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: html-clean
42
- Requires-Dist: lxml_html_clean; extra == "html-clean"
43
- Dynamic: author
44
- Dynamic: author-email
45
- Dynamic: classifier
46
- Dynamic: description
47
- Dynamic: home-page
48
- Dynamic: license
49
- Dynamic: license-file
50
- Dynamic: maintainer
51
- Dynamic: maintainer-email
52
- Dynamic: project-url
53
- Dynamic: provides-extra
54
- Dynamic: requires-python
55
- Dynamic: summary
56
-
57
- lxml is a Pythonic, mature binding for the libxml2 and libxslt libraries. It
58
- provides safe and convenient access to these libraries using the ElementTree
59
- API.
60
-
61
- It extends the ElementTree API significantly to offer support for XPath,
62
- RelaxNG, XML Schema, XSLT, C14N and much more.
63
-
64
- To contact the project, go to the `project home page
65
- <https://lxml.de/>`_ or see our bug tracker at
66
- https://launchpad.net/lxml
67
-
68
- In case you want to use the current in-development version of lxml,
69
- you can get it from the github repository at
70
- https://github.com/lxml/lxml . Note that this requires Cython to
71
- build the sources, see the build instructions on the project home
72
- page. To the same end, running ``easy_install lxml==dev`` will
73
- install lxml from
74
- https://github.com/lxml/lxml/tarball/master#egg=lxml-dev if you have
75
- an appropriate version of Cython installed.
76
-
77
-
78
- After an official release of a new stable series, bug fixes may become
79
- available at
80
- https://github.com/lxml/lxml/tree/lxml-5.3 .
81
- Running ``easy_install lxml==5.3bugfix`` will install
82
- the unreleased branch state from
83
- https://github.com/lxml/lxml/tarball/lxml-5.3#egg=lxml-5.3bugfix
84
- as soon as a maintenance branch has been established. Note that this
85
- requires Cython to be installed at an appropriate version for the build.
86
-
87
- 5.3.2 (2025-04-05)
88
- ==================
89
-
90
- This release resolves CVE-2025-24928 as described in
91
- https://gitlab.gnome.org/GNOME/libxml2/-/issues/847
92
-
93
- Bugs fixed
94
- ----------
95
-
96
- * Binary wheels use libxml2 2.12.10 and libxslt 1.1.42.
97
-
98
- * Binary wheels for Windows use a patched libxml2 2.11.9 and libxslt 1.1.39.
99
-
100
-