lxml 6.0.0__cp313-cp313-manylinux_2_31_armv7l.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/ElementInclude.py +244 -0
- lxml/__init__.py +22 -0
- lxml/_elementpath.cpython-313-arm-linux-gnueabihf.so +0 -0
- lxml/_elementpath.py +343 -0
- lxml/apihelpers.pxi +1801 -0
- lxml/builder.cpython-313-arm-linux-gnueabihf.so +0 -0
- lxml/builder.py +243 -0
- lxml/classlookup.pxi +580 -0
- lxml/cleanup.pxi +215 -0
- lxml/cssselect.py +101 -0
- lxml/debug.pxi +36 -0
- lxml/docloader.pxi +178 -0
- lxml/doctestcompare.py +488 -0
- lxml/dtd.pxi +479 -0
- lxml/etree.cpython-313-arm-linux-gnueabihf.so +0 -0
- lxml/etree.h +244 -0
- lxml/etree.pyx +3853 -0
- lxml/etree_api.h +204 -0
- lxml/extensions.pxi +830 -0
- lxml/html/ElementSoup.py +10 -0
- lxml/html/__init__.py +1927 -0
- lxml/html/_diffcommand.py +86 -0
- lxml/html/_difflib.cpython-313-arm-linux-gnueabihf.so +0 -0
- lxml/html/_difflib.py +2106 -0
- lxml/html/_html5builder.py +100 -0
- lxml/html/_setmixin.py +56 -0
- lxml/html/builder.py +173 -0
- lxml/html/clean.py +21 -0
- lxml/html/defs.py +135 -0
- lxml/html/diff.cpython-313-arm-linux-gnueabihf.so +0 -0
- lxml/html/diff.py +972 -0
- lxml/html/formfill.py +299 -0
- lxml/html/html5parser.py +260 -0
- lxml/html/soupparser.py +314 -0
- lxml/html/usedoctest.py +13 -0
- lxml/includes/__init__.pxd +0 -0
- lxml/includes/__init__.py +0 -0
- lxml/includes/c14n.pxd +25 -0
- lxml/includes/config.pxd +3 -0
- lxml/includes/dtdvalid.pxd +18 -0
- lxml/includes/etree_defs.h +379 -0
- lxml/includes/etreepublic.pxd +237 -0
- lxml/includes/extlibs/__init__.py +0 -0
- lxml/includes/extlibs/libcharset.h +45 -0
- lxml/includes/extlibs/localcharset.h +137 -0
- lxml/includes/extlibs/zconf.h +543 -0
- lxml/includes/extlibs/zlib.h +1938 -0
- lxml/includes/htmlparser.pxd +56 -0
- lxml/includes/libexslt/__init__.py +0 -0
- lxml/includes/libexslt/exslt.h +108 -0
- lxml/includes/libexslt/exsltconfig.h +70 -0
- lxml/includes/libexslt/exsltexports.h +63 -0
- lxml/includes/libxml/HTMLparser.h +339 -0
- lxml/includes/libxml/HTMLtree.h +148 -0
- lxml/includes/libxml/SAX.h +18 -0
- lxml/includes/libxml/SAX2.h +170 -0
- lxml/includes/libxml/__init__.py +0 -0
- lxml/includes/libxml/c14n.h +115 -0
- lxml/includes/libxml/catalog.h +183 -0
- lxml/includes/libxml/chvalid.h +230 -0
- lxml/includes/libxml/debugXML.h +79 -0
- lxml/includes/libxml/dict.h +82 -0
- lxml/includes/libxml/encoding.h +307 -0
- lxml/includes/libxml/entities.h +147 -0
- lxml/includes/libxml/globals.h +25 -0
- lxml/includes/libxml/hash.h +251 -0
- lxml/includes/libxml/list.h +137 -0
- lxml/includes/libxml/nanoftp.h +16 -0
- lxml/includes/libxml/nanohttp.h +98 -0
- lxml/includes/libxml/parser.h +1633 -0
- lxml/includes/libxml/parserInternals.h +591 -0
- lxml/includes/libxml/relaxng.h +224 -0
- lxml/includes/libxml/schemasInternals.h +959 -0
- lxml/includes/libxml/schematron.h +143 -0
- lxml/includes/libxml/threads.h +81 -0
- lxml/includes/libxml/tree.h +1326 -0
- lxml/includes/libxml/uri.h +106 -0
- lxml/includes/libxml/valid.h +485 -0
- lxml/includes/libxml/xinclude.h +141 -0
- lxml/includes/libxml/xlink.h +193 -0
- lxml/includes/libxml/xmlIO.h +419 -0
- lxml/includes/libxml/xmlautomata.h +163 -0
- lxml/includes/libxml/xmlerror.h +962 -0
- lxml/includes/libxml/xmlexports.h +96 -0
- lxml/includes/libxml/xmlmemory.h +188 -0
- lxml/includes/libxml/xmlmodule.h +61 -0
- lxml/includes/libxml/xmlreader.h +444 -0
- lxml/includes/libxml/xmlregexp.h +116 -0
- lxml/includes/libxml/xmlsave.h +111 -0
- lxml/includes/libxml/xmlschemas.h +254 -0
- lxml/includes/libxml/xmlschemastypes.h +152 -0
- lxml/includes/libxml/xmlstring.h +140 -0
- lxml/includes/libxml/xmlunicode.h +15 -0
- lxml/includes/libxml/xmlversion.h +332 -0
- lxml/includes/libxml/xmlwriter.h +489 -0
- lxml/includes/libxml/xpath.h +569 -0
- lxml/includes/libxml/xpathInternals.h +639 -0
- lxml/includes/libxml/xpointer.h +48 -0
- lxml/includes/libxslt/__init__.py +0 -0
- lxml/includes/libxslt/attributes.h +39 -0
- lxml/includes/libxslt/documents.h +93 -0
- lxml/includes/libxslt/extensions.h +262 -0
- lxml/includes/libxslt/extra.h +72 -0
- lxml/includes/libxslt/functions.h +78 -0
- lxml/includes/libxslt/imports.h +75 -0
- lxml/includes/libxslt/keys.h +53 -0
- lxml/includes/libxslt/namespaces.h +68 -0
- lxml/includes/libxslt/numbersInternals.h +73 -0
- lxml/includes/libxslt/pattern.h +84 -0
- lxml/includes/libxslt/preproc.h +43 -0
- lxml/includes/libxslt/security.h +104 -0
- lxml/includes/libxslt/templates.h +77 -0
- lxml/includes/libxslt/transform.h +207 -0
- lxml/includes/libxslt/variables.h +118 -0
- lxml/includes/libxslt/xslt.h +110 -0
- lxml/includes/libxslt/xsltInternals.h +1995 -0
- lxml/includes/libxslt/xsltconfig.h +146 -0
- lxml/includes/libxslt/xsltexports.h +64 -0
- lxml/includes/libxslt/xsltlocale.h +44 -0
- lxml/includes/libxslt/xsltutils.h +343 -0
- lxml/includes/lxml-version.h +3 -0
- lxml/includes/relaxng.pxd +64 -0
- lxml/includes/schematron.pxd +34 -0
- lxml/includes/tree.pxd +492 -0
- lxml/includes/uri.pxd +5 -0
- lxml/includes/xinclude.pxd +22 -0
- lxml/includes/xmlerror.pxd +852 -0
- lxml/includes/xmlparser.pxd +303 -0
- lxml/includes/xmlschema.pxd +35 -0
- lxml/includes/xpath.pxd +136 -0
- lxml/includes/xslt.pxd +190 -0
- lxml/isoschematron/__init__.py +348 -0
- lxml/isoschematron/resources/rng/iso-schematron.rng +709 -0
- lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl +75 -0
- lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl +77 -0
- lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl +313 -0
- lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl +1160 -0
- lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl +55 -0
- lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl +1796 -0
- lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl +588 -0
- lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt +84 -0
- lxml/iterparse.pxi +438 -0
- lxml/lxml.etree.h +244 -0
- lxml/lxml.etree_api.h +204 -0
- lxml/nsclasses.pxi +281 -0
- lxml/objectify.cpython-313-arm-linux-gnueabihf.so +0 -0
- lxml/objectify.pyx +2149 -0
- lxml/objectpath.pxi +332 -0
- lxml/parser.pxi +2059 -0
- lxml/parsertarget.pxi +180 -0
- lxml/proxy.pxi +619 -0
- lxml/public-api.pxi +178 -0
- lxml/pyclasslookup.py +3 -0
- lxml/readonlytree.pxi +565 -0
- lxml/relaxng.pxi +165 -0
- lxml/sax.cpython-313-arm-linux-gnueabihf.so +0 -0
- lxml/sax.py +286 -0
- lxml/saxparser.pxi +875 -0
- lxml/schematron.pxi +173 -0
- lxml/serializer.pxi +1849 -0
- lxml/usedoctest.py +13 -0
- lxml/xinclude.pxi +67 -0
- lxml/xmlerror.pxi +1654 -0
- lxml/xmlid.pxi +179 -0
- lxml/xmlschema.pxi +215 -0
- lxml/xpath.pxi +487 -0
- lxml/xslt.pxi +957 -0
- lxml/xsltext.pxi +242 -0
- lxml-6.0.0.dist-info/METADATA +163 -0
- lxml-6.0.0.dist-info/RECORD +174 -0
- lxml-6.0.0.dist-info/WHEEL +5 -0
- lxml-6.0.0.dist-info/licenses/LICENSE.txt +31 -0
- lxml-6.0.0.dist-info/licenses/LICENSES.txt +29 -0
- lxml-6.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,332 @@
|
|
1
|
+
/*
|
2
|
+
* Summary: compile-time version information
|
3
|
+
* Description: compile-time version information for the XML library
|
4
|
+
*
|
5
|
+
* Copy: See Copyright for the status of this software.
|
6
|
+
*
|
7
|
+
* Author: Daniel Veillard
|
8
|
+
*/
|
9
|
+
|
10
|
+
#ifndef __XML_VERSION_H__
|
11
|
+
#define __XML_VERSION_H__
|
12
|
+
|
13
|
+
/**
|
14
|
+
* LIBXML_DOTTED_VERSION:
|
15
|
+
*
|
16
|
+
* the version string like "1.2.3"
|
17
|
+
*/
|
18
|
+
#define LIBXML_DOTTED_VERSION "2.14.4"
|
19
|
+
|
20
|
+
/**
|
21
|
+
* LIBXML_VERSION:
|
22
|
+
*
|
23
|
+
* the version number: 1.2.3 value is 10203
|
24
|
+
*/
|
25
|
+
#define LIBXML_VERSION 21404
|
26
|
+
|
27
|
+
/**
|
28
|
+
* LIBXML_VERSION_STRING:
|
29
|
+
*
|
30
|
+
* the version number string, 1.2.3 value is "10203"
|
31
|
+
*/
|
32
|
+
#define LIBXML_VERSION_STRING "21404"
|
33
|
+
|
34
|
+
/**
|
35
|
+
* LIBXML_VERSION_EXTRA:
|
36
|
+
*
|
37
|
+
* extra version information, used to show a git commit description
|
38
|
+
*/
|
39
|
+
#define LIBXML_VERSION_EXTRA ""
|
40
|
+
|
41
|
+
/**
|
42
|
+
* LIBXML_TEST_VERSION:
|
43
|
+
*
|
44
|
+
* Macro to check that the libxml version in use is compatible with
|
45
|
+
* the version the software has been compiled against
|
46
|
+
*/
|
47
|
+
#define LIBXML_TEST_VERSION xmlCheckVersion(21404);
|
48
|
+
|
49
|
+
/**
|
50
|
+
* LIBXML_THREAD_ENABLED:
|
51
|
+
*
|
52
|
+
* Whether the thread support is configured in
|
53
|
+
*/
|
54
|
+
#if 1
|
55
|
+
#define LIBXML_THREAD_ENABLED
|
56
|
+
#endif
|
57
|
+
|
58
|
+
/**
|
59
|
+
* LIBXML_THREAD_ALLOC_ENABLED:
|
60
|
+
*
|
61
|
+
* Whether the allocation hooks are per-thread
|
62
|
+
*/
|
63
|
+
#if 0
|
64
|
+
#define LIBXML_THREAD_ALLOC_ENABLED
|
65
|
+
#endif
|
66
|
+
|
67
|
+
/**
|
68
|
+
* LIBXML_TREE_ENABLED:
|
69
|
+
*
|
70
|
+
* Always enabled since 2.14.0
|
71
|
+
*/
|
72
|
+
#define LIBXML_TREE_ENABLED
|
73
|
+
|
74
|
+
/**
|
75
|
+
* LIBXML_OUTPUT_ENABLED:
|
76
|
+
*
|
77
|
+
* Whether the serialization/saving support is configured in
|
78
|
+
*/
|
79
|
+
#if 1
|
80
|
+
#define LIBXML_OUTPUT_ENABLED
|
81
|
+
#endif
|
82
|
+
|
83
|
+
/**
|
84
|
+
* LIBXML_PUSH_ENABLED:
|
85
|
+
*
|
86
|
+
* Whether the push parsing interfaces are configured in
|
87
|
+
*/
|
88
|
+
#if 1
|
89
|
+
#define LIBXML_PUSH_ENABLED
|
90
|
+
#endif
|
91
|
+
|
92
|
+
/**
|
93
|
+
* LIBXML_READER_ENABLED:
|
94
|
+
*
|
95
|
+
* Whether the xmlReader parsing interface is configured in
|
96
|
+
*/
|
97
|
+
#if 1
|
98
|
+
#define LIBXML_READER_ENABLED
|
99
|
+
#endif
|
100
|
+
|
101
|
+
/**
|
102
|
+
* LIBXML_PATTERN_ENABLED:
|
103
|
+
*
|
104
|
+
* Whether the xmlPattern node selection interface is configured in
|
105
|
+
*/
|
106
|
+
#if 1
|
107
|
+
#define LIBXML_PATTERN_ENABLED
|
108
|
+
#endif
|
109
|
+
|
110
|
+
/**
|
111
|
+
* LIBXML_WRITER_ENABLED:
|
112
|
+
*
|
113
|
+
* Whether the xmlWriter saving interface is configured in
|
114
|
+
*/
|
115
|
+
#if 1
|
116
|
+
#define LIBXML_WRITER_ENABLED
|
117
|
+
#endif
|
118
|
+
|
119
|
+
/**
|
120
|
+
* LIBXML_SAX1_ENABLED:
|
121
|
+
*
|
122
|
+
* Whether the older SAX1 interface is configured in
|
123
|
+
*/
|
124
|
+
#if 1
|
125
|
+
#define LIBXML_SAX1_ENABLED
|
126
|
+
#endif
|
127
|
+
|
128
|
+
/**
|
129
|
+
* LIBXML_HTTP_ENABLED:
|
130
|
+
*
|
131
|
+
* Whether the HTTP support is configured in
|
132
|
+
*/
|
133
|
+
#if 0
|
134
|
+
#define LIBXML_HTTP_ENABLED
|
135
|
+
#endif
|
136
|
+
|
137
|
+
/**
|
138
|
+
* LIBXML_VALID_ENABLED:
|
139
|
+
*
|
140
|
+
* Whether the DTD validation support is configured in
|
141
|
+
*/
|
142
|
+
#if 1
|
143
|
+
#define LIBXML_VALID_ENABLED
|
144
|
+
#endif
|
145
|
+
|
146
|
+
/**
|
147
|
+
* LIBXML_HTML_ENABLED:
|
148
|
+
*
|
149
|
+
* Whether the HTML support is configured in
|
150
|
+
*/
|
151
|
+
#if 1
|
152
|
+
#define LIBXML_HTML_ENABLED
|
153
|
+
#endif
|
154
|
+
|
155
|
+
/**
|
156
|
+
* LIBXML_LEGACY_ENABLED:
|
157
|
+
*
|
158
|
+
* Removed in 2.14
|
159
|
+
*/
|
160
|
+
#undef LIBXML_LEGACY_ENABLED
|
161
|
+
|
162
|
+
/**
|
163
|
+
* LIBXML_C14N_ENABLED:
|
164
|
+
*
|
165
|
+
* Whether the Canonicalization support is configured in
|
166
|
+
*/
|
167
|
+
#if 1
|
168
|
+
#define LIBXML_C14N_ENABLED
|
169
|
+
#endif
|
170
|
+
|
171
|
+
/**
|
172
|
+
* LIBXML_CATALOG_ENABLED:
|
173
|
+
*
|
174
|
+
* Whether the Catalog support is configured in
|
175
|
+
*/
|
176
|
+
#if 1
|
177
|
+
#define LIBXML_CATALOG_ENABLED
|
178
|
+
#endif
|
179
|
+
|
180
|
+
/**
|
181
|
+
* LIBXML_XPATH_ENABLED:
|
182
|
+
*
|
183
|
+
* Whether XPath is configured in
|
184
|
+
*/
|
185
|
+
#if 1
|
186
|
+
#define LIBXML_XPATH_ENABLED
|
187
|
+
#endif
|
188
|
+
|
189
|
+
/**
|
190
|
+
* LIBXML_XPTR_ENABLED:
|
191
|
+
*
|
192
|
+
* Whether XPointer is configured in
|
193
|
+
*/
|
194
|
+
#if 1
|
195
|
+
#define LIBXML_XPTR_ENABLED
|
196
|
+
#endif
|
197
|
+
|
198
|
+
/**
|
199
|
+
* LIBXML_XINCLUDE_ENABLED:
|
200
|
+
*
|
201
|
+
* Whether XInclude is configured in
|
202
|
+
*/
|
203
|
+
#if 1
|
204
|
+
#define LIBXML_XINCLUDE_ENABLED
|
205
|
+
#endif
|
206
|
+
|
207
|
+
/**
|
208
|
+
* LIBXML_ICONV_ENABLED:
|
209
|
+
*
|
210
|
+
* Whether iconv support is available
|
211
|
+
*/
|
212
|
+
#if 1
|
213
|
+
#define LIBXML_ICONV_ENABLED
|
214
|
+
#endif
|
215
|
+
|
216
|
+
/**
|
217
|
+
* LIBXML_ICU_ENABLED:
|
218
|
+
*
|
219
|
+
* Whether icu support is available
|
220
|
+
*/
|
221
|
+
#if 0
|
222
|
+
#define LIBXML_ICU_ENABLED
|
223
|
+
#endif
|
224
|
+
|
225
|
+
/**
|
226
|
+
* LIBXML_ISO8859X_ENABLED:
|
227
|
+
*
|
228
|
+
* Whether ISO-8859-* support is made available in case iconv is not
|
229
|
+
*/
|
230
|
+
#if 1
|
231
|
+
#define LIBXML_ISO8859X_ENABLED
|
232
|
+
#endif
|
233
|
+
|
234
|
+
/**
|
235
|
+
* LIBXML_DEBUG_ENABLED:
|
236
|
+
*
|
237
|
+
* Whether Debugging module is configured in
|
238
|
+
*/
|
239
|
+
#if 1
|
240
|
+
#define LIBXML_DEBUG_ENABLED
|
241
|
+
#endif
|
242
|
+
|
243
|
+
/**
|
244
|
+
* LIBXML_UNICODE_ENABLED:
|
245
|
+
*
|
246
|
+
* Removed in 2.14
|
247
|
+
*/
|
248
|
+
#undef LIBXML_UNICODE_ENABLED
|
249
|
+
|
250
|
+
/**
|
251
|
+
* LIBXML_REGEXP_ENABLED:
|
252
|
+
*
|
253
|
+
* Whether the regular expressions interfaces are compiled in
|
254
|
+
*/
|
255
|
+
#if 1
|
256
|
+
#define LIBXML_REGEXP_ENABLED
|
257
|
+
#endif
|
258
|
+
|
259
|
+
/**
|
260
|
+
* LIBXML_AUTOMATA_ENABLED:
|
261
|
+
*
|
262
|
+
* Whether the automata interfaces are compiled in
|
263
|
+
*/
|
264
|
+
#if 1
|
265
|
+
#define LIBXML_AUTOMATA_ENABLED
|
266
|
+
#endif
|
267
|
+
|
268
|
+
/**
|
269
|
+
* LIBXML_RELAXNG_ENABLED:
|
270
|
+
*
|
271
|
+
* Whether the RelaxNG validation interfaces are compiled in
|
272
|
+
*/
|
273
|
+
#if 1
|
274
|
+
#define LIBXML_RELAXNG_ENABLED
|
275
|
+
#endif
|
276
|
+
|
277
|
+
/**
|
278
|
+
* LIBXML_SCHEMAS_ENABLED:
|
279
|
+
*
|
280
|
+
* Whether the Schemas validation interfaces are compiled in
|
281
|
+
*/
|
282
|
+
#if 1
|
283
|
+
#define LIBXML_SCHEMAS_ENABLED
|
284
|
+
#endif
|
285
|
+
|
286
|
+
/**
|
287
|
+
* LIBXML_SCHEMATRON_ENABLED:
|
288
|
+
*
|
289
|
+
* Whether the Schematron validation interfaces are compiled in
|
290
|
+
*/
|
291
|
+
#if 1
|
292
|
+
#define LIBXML_SCHEMATRON_ENABLED
|
293
|
+
#endif
|
294
|
+
|
295
|
+
/**
|
296
|
+
* LIBXML_MODULES_ENABLED:
|
297
|
+
*
|
298
|
+
* Whether the module interfaces are compiled in
|
299
|
+
*/
|
300
|
+
#if 1
|
301
|
+
#define LIBXML_MODULES_ENABLED
|
302
|
+
/**
|
303
|
+
* LIBXML_MODULE_EXTENSION:
|
304
|
+
*
|
305
|
+
* the string suffix used by dynamic modules (usually shared libraries)
|
306
|
+
*/
|
307
|
+
#define LIBXML_MODULE_EXTENSION ".so"
|
308
|
+
#endif
|
309
|
+
|
310
|
+
/**
|
311
|
+
* LIBXML_ZLIB_ENABLED:
|
312
|
+
*
|
313
|
+
* Whether the Zlib support is compiled in
|
314
|
+
*/
|
315
|
+
#if 1
|
316
|
+
#define LIBXML_ZLIB_ENABLED
|
317
|
+
#endif
|
318
|
+
|
319
|
+
/**
|
320
|
+
* LIBXML_LZMA_ENABLED:
|
321
|
+
*
|
322
|
+
* Whether the Lzma support is compiled in
|
323
|
+
*/
|
324
|
+
#if 0
|
325
|
+
#define LIBXML_LZMA_ENABLED
|
326
|
+
#endif
|
327
|
+
|
328
|
+
#include <libxml/xmlexports.h>
|
329
|
+
|
330
|
+
#endif
|
331
|
+
|
332
|
+
|