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.
- lxml/__init__.py +1 -1
- lxml/_elementpath.cpython-39-darwin.so +0 -0
- lxml/_elementpath.py +3 -1
- lxml/apihelpers.pxi +25 -17
- lxml/builder.cpython-39-darwin.so +0 -0
- lxml/builder.py +11 -0
- lxml/debug.pxi +0 -54
- lxml/etree.cpython-39-darwin.so +0 -0
- lxml/etree.h +24 -28
- lxml/etree.pyx +154 -33
- lxml/etree_api.h +59 -50
- lxml/extensions.pxi +3 -6
- lxml/html/__init__.py +7 -3
- lxml/html/_difflib.cpython-39-darwin.so +0 -0
- lxml/html/_difflib.py +2106 -0
- lxml/html/builder.py +40 -0
- lxml/html/defs.py +3 -3
- lxml/html/diff.cpython-39-darwin.so +0 -0
- lxml/html/diff.py +406 -312
- lxml/includes/etree_defs.h +6 -6
- lxml/includes/libexslt/exsltconfig.h +3 -3
- lxml/includes/libxml/HTMLparser.h +41 -45
- lxml/includes/libxml/HTMLtree.h +1 -0
- lxml/includes/libxml/SAX.h +2 -186
- lxml/includes/libxml/SAX2.h +2 -3
- lxml/includes/libxml/c14n.h +1 -12
- lxml/includes/libxml/catalog.h +1 -0
- lxml/includes/libxml/debugXML.h +0 -138
- lxml/includes/libxml/encoding.h +131 -59
- lxml/includes/libxml/entities.h +12 -20
- lxml/includes/libxml/globals.h +0 -16
- lxml/includes/libxml/hash.h +19 -0
- lxml/includes/libxml/list.h +2 -2
- lxml/includes/libxml/nanoftp.h +3 -173
- lxml/includes/libxml/nanohttp.h +17 -0
- lxml/includes/libxml/parser.h +505 -256
- lxml/includes/libxml/parserInternals.h +26 -98
- lxml/includes/libxml/relaxng.h +7 -2
- lxml/includes/libxml/threads.h +0 -6
- lxml/includes/libxml/tree.h +61 -97
- lxml/includes/libxml/uri.h +11 -0
- lxml/includes/libxml/valid.h +49 -14
- lxml/includes/libxml/xinclude.h +12 -0
- lxml/includes/libxml/xlink.h +4 -0
- lxml/includes/libxml/xmlIO.h +33 -35
- lxml/includes/libxml/xmlautomata.h +19 -2
- lxml/includes/libxml/xmlerror.h +32 -18
- lxml/includes/libxml/xmlexports.h +61 -15
- lxml/includes/libxml/xmlmemory.h +27 -64
- lxml/includes/libxml/xmlmodule.h +4 -0
- lxml/includes/libxml/xmlreader.h +13 -3
- lxml/includes/libxml/xmlregexp.h +7 -106
- lxml/includes/libxml/xmlsave.h +15 -1
- lxml/includes/libxml/xmlschemas.h +10 -5
- lxml/includes/libxml/xmlunicode.h +3 -190
- lxml/includes/libxml/xmlversion.h +15 -194
- lxml/includes/libxml/xmlwriter.h +1 -0
- lxml/includes/libxml/xpath.h +9 -15
- lxml/includes/libxml/xpathInternals.h +9 -3
- lxml/includes/libxml/xpointer.h +1 -91
- lxml/includes/libxslt/xsltconfig.h +6 -6
- lxml/includes/lxml-version.h +1 -1
- lxml/includes/tree.pxd +10 -12
- lxml/includes/xmlparser.pxd +46 -8
- lxml/lxml.etree.h +24 -28
- lxml/lxml.etree_api.h +59 -50
- lxml/objectify.cpython-39-darwin.so +0 -0
- lxml/objectify.pyx +11 -7
- lxml/parser.pxi +106 -47
- lxml/sax.cpython-39-darwin.so +0 -0
- lxml/sax.py +11 -0
- lxml/saxparser.pxi +14 -14
- lxml/schematron.pxi +8 -3
- lxml/serializer.pxi +71 -3
- lxml/xslt.pxi +10 -3
- lxml-6.0.0.dist-info/METADATA +163 -0
- {lxml-5.3.2.dist-info → lxml-6.0.0.dist-info}/RECORD +81 -79
- {lxml-5.3.2.dist-info → lxml-6.0.0.dist-info}/WHEEL +2 -1
- {lxml-5.3.2.dist-info → lxml-6.0.0.dist-info}/licenses/LICENSE.txt +3 -1
- lxml-5.3.2.dist-info/METADATA +0 -100
- {lxml-5.3.2.dist-info → lxml-6.0.0.dist-info}/licenses/LICENSES.txt +0 -0
- {lxml-5.3.2.dist-info → lxml-6.0.0.dist-info}/top_level.txt +0 -0
lxml-5.3.2.dist-info/METADATA
DELETED
@@ -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
|
-
|
File without changes
|
File without changes
|