rebuild for 10.11+
This commit is contained in:
parent
d989eff547
commit
901b731582
234 changed files with 1522 additions and 927 deletions
|
|
@ -0,0 +1 @@
|
|||
pip
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
lxml is copyright Infrae and distributed under the BSD license (see
|
||||
doc/licenses/BSD.txt), with the following exceptions:
|
||||
|
||||
Some code, such a selftest.py, selftest2.py and
|
||||
src/lxml/_elementpath.py are derived from ElementTree and
|
||||
cElementTree. See doc/licenses/elementtree.txt for the license text.
|
||||
|
||||
lxml.cssselect and lxml.html are copyright Ian Bicking and distributed
|
||||
under the BSD license (see doc/licenses/BSD.txt).
|
||||
|
||||
test.py, the test-runner script, is GPL and copyright Shuttleworth
|
||||
Foundation. See doc/licenses/GPL.txt. It is believed the unchanged
|
||||
inclusion of test.py to run the unit test suite falls under the
|
||||
"aggregation" clause of the GPL and thus does not affect the license
|
||||
of the rest of the package.
|
||||
|
||||
The isoschematron implementation uses several XSL and RelaxNG resources:
|
||||
* The (XML syntax) RelaxNG schema for schematron, copyright International
|
||||
Organization for Standardization (see
|
||||
src/lxml/isoschematron/resources/rng/iso-schematron.rng for the license
|
||||
text)
|
||||
* The skeleton iso-schematron-xlt1 pure-xslt schematron implementation
|
||||
xsl stylesheets, copyright Rick Jelliffe and Academia Sinica Computing
|
||||
Center, Taiwan (see the xsl files here for the license text:
|
||||
src/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/)
|
||||
* The xsd/rng schema schematron extraction xsl transformations are unlicensed
|
||||
and copyright the respective authors as noted (see
|
||||
src/lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl and
|
||||
src/lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl)
|
||||
96
lib/python3.7/site-packages/lxml-4.3.0.dist-info/METADATA
Normal file
96
lib/python3.7/site-packages/lxml-4.3.0.dist-info/METADATA
Normal file
|
|
@ -0,0 +1,96 @@
|
|||
Metadata-Version: 2.1
|
||||
Name: lxml
|
||||
Version: 4.3.0
|
||||
Summary: Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.
|
||||
Home-page: http://lxml.de/
|
||||
Author: lxml dev team
|
||||
Author-email: lxml-dev@lxml.de
|
||||
Maintainer: lxml dev team
|
||||
Maintainer-email: lxml-dev@lxml.de
|
||||
License: BSD
|
||||
Platform: UNKNOWN
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: Intended Audience :: Information Technology
|
||||
Classifier: License :: OSI Approved :: BSD License
|
||||
Classifier: Programming Language :: Cython
|
||||
Classifier: Programming Language :: Python :: 2
|
||||
Classifier: Programming Language :: Python :: 2.7
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.4
|
||||
Classifier: Programming Language :: Python :: 3.5
|
||||
Classifier: Programming Language :: Python :: 3.6
|
||||
Classifier: Programming Language :: Python :: 3.7
|
||||
Classifier: Programming Language :: C
|
||||
Classifier: Operating System :: OS Independent
|
||||
Classifier: Topic :: Text Processing :: Markup :: HTML
|
||||
Classifier: Topic :: Text Processing :: Markup :: XML
|
||||
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
||||
Provides-Extra: cssselect
|
||||
Requires-Dist: cssselect (>=0.7) ; extra == 'cssselect'
|
||||
Provides-Extra: html5
|
||||
Requires-Dist: html5lib ; extra == 'html5'
|
||||
Provides-Extra: htmlsoup
|
||||
Requires-Dist: BeautifulSoup4 ; extra == 'htmlsoup'
|
||||
Provides-Extra: source
|
||||
Requires-Dist: Cython (>=0.29.1) ; extra == 'source'
|
||||
|
||||
lxml is a Pythonic, mature binding for the libxml2 and libxslt libraries. It
|
||||
provides safe and convenient access to these libraries using the ElementTree
|
||||
API.
|
||||
|
||||
It extends the ElementTree API significantly to offer support for XPath,
|
||||
RelaxNG, XML Schema, XSLT, C14N and much more.
|
||||
|
||||
To contact the project, go to the `project home page
|
||||
<http://lxml.de/>`_ or see our bug tracker at
|
||||
https://launchpad.net/lxml
|
||||
|
||||
In case you want to use the current in-development version of lxml,
|
||||
you can get it from the github repository at
|
||||
https://github.com/lxml/lxml . Note that this requires Cython to
|
||||
build the sources, see the build instructions on the project home
|
||||
page. To the same end, running ``easy_install lxml==dev`` will
|
||||
install lxml from
|
||||
https://github.com/lxml/lxml/tarball/master#egg=lxml-dev if you have
|
||||
an appropriate version of Cython installed.
|
||||
|
||||
|
||||
After an official release of a new stable series, bug fixes may become
|
||||
available at
|
||||
https://github.com/lxml/lxml/tree/lxml-4.3 .
|
||||
Running ``easy_install lxml==4.3bugfix`` will install
|
||||
the unreleased branch state from
|
||||
https://github.com/lxml/lxml/tarball/lxml-4.3#egg=lxml-4.3bugfix
|
||||
as soon as a maintenance branch has been established. Note that this
|
||||
requires Cython to be installed at an appropriate version for the build.
|
||||
|
||||
4.3.0 (2019-01-04)
|
||||
==================
|
||||
|
||||
Features added
|
||||
--------------
|
||||
|
||||
* The module ``lxml.sax`` is compiled using Cython in order to speed it up.
|
||||
|
||||
* GH#267: ``lxml.sax.ElementTreeProducer`` now preserves the namespace prefixes.
|
||||
If two prefixes point to the same URI, the first prefix in alphabetical order
|
||||
is used. Patch by Lennart Regebro.
|
||||
|
||||
* Updated ISO-Schematron implementation to 2013 version (now MIT licensed)
|
||||
and the corresponding schema to the 2016 version (with optional "properties").
|
||||
|
||||
Other changes
|
||||
-------------
|
||||
|
||||
* GH#270, GH#271: Support for Python 2.6 and 3.3 was removed.
|
||||
Patch by hugovk.
|
||||
|
||||
* The minimum dependency versions were raised to libxml2 2.9.2 and libxslt 1.1.27,
|
||||
which were released in 2014 and 2012 respectively.
|
||||
|
||||
* Built with Cython 0.29.2.
|
||||
|
||||
|
||||
|
||||
|
||||
162
lib/python3.7/site-packages/lxml-4.3.0.dist-info/RECORD
Normal file
162
lib/python3.7/site-packages/lxml-4.3.0.dist-info/RECORD
Normal file
|
|
@ -0,0 +1,162 @@
|
|||
lxml-4.3.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
lxml-4.3.0.dist-info/LICENSES.txt,sha256=QdSd1AaqDhVIptXyGjDWv2OLPNlutyid00jYPtLkA5I,1514
|
||||
lxml-4.3.0.dist-info/METADATA,sha256=xL8_WXsFYJ5khevrMu0IjlhWxzgCBpa2ungUZfuPsF8,3550
|
||||
lxml-4.3.0.dist-info/RECORD,,
|
||||
lxml-4.3.0.dist-info/WHEEL,sha256=dZ-5_wi424-cXKWlBPHfX3GR9ygTGUuzMFZB3m3t2_w,249
|
||||
lxml-4.3.0.dist-info/top_level.txt,sha256=NjD988wqaKq512nshNdLt-uDxsjkp4Bh51m6N-dhUrk,5
|
||||
lxml/ElementInclude.py,sha256=Imj9ors3Rz5yoAoOB7J792WzIrM1AiAtepMV0FCaBnk,7668
|
||||
lxml/__init__.py,sha256=lYLRn8M0_xdnN2bhEnZ2L7mlY5zM3gwz1kgLILLxC34,551
|
||||
lxml/__pycache__/ElementInclude.cpython-37.pyc,,
|
||||
lxml/__pycache__/__init__.cpython-37.pyc,,
|
||||
lxml/__pycache__/_elementpath.cpython-37.pyc,,
|
||||
lxml/__pycache__/builder.cpython-37.pyc,,
|
||||
lxml/__pycache__/cssselect.cpython-37.pyc,,
|
||||
lxml/__pycache__/doctestcompare.cpython-37.pyc,,
|
||||
lxml/__pycache__/pyclasslookup.cpython-37.pyc,,
|
||||
lxml/__pycache__/sax.cpython-37.pyc,,
|
||||
lxml/__pycache__/usedoctest.cpython-37.pyc,,
|
||||
lxml/_elementpath.cpython-37m-darwin.so,sha256=eaK6beoRI3XMrG4FVofOHg1LmPBgU6HVH_LX33FGUXc,446808
|
||||
lxml/_elementpath.py,sha256=Hq7zWPwh53ynnKO1US9-Q8NWEK0aXBd7siIeMoNN6Os,10189
|
||||
lxml/builder.cpython-37m-darwin.so,sha256=5tn035njP7Oxh-STnbJd9ZzA9Ujp6AWKm9acngohetU,218484
|
||||
lxml/builder.py,sha256=R5WsHI0bCOHYehskKXENvBkuarviL5rNJsmnh6cZGUA,7975
|
||||
lxml/cssselect.py,sha256=ADTqox2BUhZI_28K26Dnd-rPqvwL1A7KpXwDetXZLfA,3366
|
||||
lxml/doctestcompare.py,sha256=dAjqNzMGJuDsxY0xOXwOWzEsq7gSfQf-6uuxZZwaNXM,18339
|
||||
lxml/etree.cpython-37m-darwin.so,sha256=qPVUqkQGubFy64g9vknR5ZW1lQfzEd-gnA0OEdsV_Z0,11815816
|
||||
lxml/etree.h,sha256=TWrERq5QkJNhXNpaJ78yssgHB1B0FDvH6gdMOxvb6vE,8554
|
||||
lxml/etree_api.h,sha256=uJFOvNEC6UeeWsw2aeeIl9Inp4eBPZSibZrZ92_DLfQ,17466
|
||||
lxml/html/ElementSoup.py,sha256=9NQNksJmEr0M2DqzaKhXWdALLo0btwVwjgTHnkfGfvk,319
|
||||
lxml/html/__init__.py,sha256=QtfpGNkR5fMkA1k5bh0RomQGceoyB3atRxiPxy-bkCw,64805
|
||||
lxml/html/__pycache__/ElementSoup.cpython-37.pyc,,
|
||||
lxml/html/__pycache__/__init__.cpython-37.pyc,,
|
||||
lxml/html/__pycache__/_diffcommand.cpython-37.pyc,,
|
||||
lxml/html/__pycache__/_html5builder.cpython-37.pyc,,
|
||||
lxml/html/__pycache__/_setmixin.cpython-37.pyc,,
|
||||
lxml/html/__pycache__/builder.cpython-37.pyc,,
|
||||
lxml/html/__pycache__/clean.cpython-37.pyc,,
|
||||
lxml/html/__pycache__/defs.cpython-37.pyc,,
|
||||
lxml/html/__pycache__/diff.cpython-37.pyc,,
|
||||
lxml/html/__pycache__/formfill.cpython-37.pyc,,
|
||||
lxml/html/__pycache__/html5parser.cpython-37.pyc,,
|
||||
lxml/html/__pycache__/soupparser.cpython-37.pyc,,
|
||||
lxml/html/__pycache__/usedoctest.cpython-37.pyc,,
|
||||
lxml/html/_diffcommand.py,sha256=aqbvEjiYe9WdfnQp62Ecv8MNwS3utErHwER-AsmNAYA,2135
|
||||
lxml/html/_html5builder.py,sha256=cASxN0Tks3_vqCA_sXa1oCx_McyRL6VpuRLA1T-B58o,3246
|
||||
lxml/html/_setmixin.py,sha256=uVCgBUC4SJ7N9GotmlKHrhH7R4Kk7wGU3u1WmEJKGeM,1184
|
||||
lxml/html/builder.py,sha256=1NuLqKPSaat75wCGufVuv1jIeBLuQCWsJVA_T2XjjUI,4310
|
||||
lxml/html/clean.cpython-37m-darwin.so,sha256=eNJm_sjmuOG7TQyDglHMf08EafHAGBd7KnbKaPJcZtI,644540
|
||||
lxml/html/clean.py,sha256=7LoNhrkhE25j3wgjEVBgONk38TlIwUlaj44B0wVX-24,26422
|
||||
lxml/html/defs.py,sha256=wrXnX7XKZJNNUlX4upOnTVxVeb8uYW3ufFHaHAWdEJY,4173
|
||||
lxml/html/diff.cpython-37m-darwin.so,sha256=4Jho_bWx3wuRoEna2Xsap7L-veXQZUdbh0JIBBX1itM,866532
|
||||
lxml/html/diff.py,sha256=F1A1vYO3dQdYfGDkI46zj5GN6UzaGMQt7ezqV5i324Q,30553
|
||||
lxml/html/formfill.py,sha256=9lnv7BnrQS0HOBY8ToeP1408xMN1wnltpsY-0CTGBpQ,9689
|
||||
lxml/html/html5parser.py,sha256=dnyC4cqHxywjZSzk0mu2L7THTZjxhg4yF4pncjusa_w,8634
|
||||
lxml/html/soupparser.py,sha256=tfdraMayPbMBCd2kGxUoTvNkhKUclfP3LmV9R85WKI4,10203
|
||||
lxml/html/usedoctest.py,sha256=tPlmVz4KK1GRKV5DJLrdVECeqsT9PlDzSqqTodVi5s0,249
|
||||
lxml/includes/__init__.pxd,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
lxml/includes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
lxml/includes/__pycache__/__init__.cpython-37.pyc,,
|
||||
lxml/includes/c14n.pxd,sha256=pGf910mVH9IdBb7r_aE-J59axIQcqFH4Sx_Tm0PA1m0,1123
|
||||
lxml/includes/config.pxd,sha256=H6Mrl8It21hzRI2hzMId9W48QqkYYkoLT4dniLNmdTw,96
|
||||
lxml/includes/dtdvalid.pxd,sha256=Rf2vRBbM4O1AOiIsUk_5M7pV3Dz309sS7Ccd2zGFHT0,671
|
||||
lxml/includes/etree_defs.h,sha256=nQXhLCcSoGpFhsCbhI2cTSJR4mIZyGAPzFt641uAzTU,15559
|
||||
lxml/includes/etreepublic.pxd,sha256=3cdjIVlfkeZWYUav4y_T2uHwAo8yUCTlCvNLEvsZ_aI,10122
|
||||
lxml/includes/htmlparser.pxd,sha256=Va2qbs5zVokERn57HbDY__CiBQOoCS4uI9wEfCnT6zk,2868
|
||||
lxml/includes/libexslt/exslt.h,sha256=Z91WbHADa4o5-kJufstf6Y100qBTMqBiK1aZsxcp_Ao,3018
|
||||
lxml/includes/libexslt/exsltconfig.h,sha256=4bzK7rxaINJelpJE83NpSrpDhjU0moj45CcqfYsvdwI,1218
|
||||
lxml/includes/libexslt/exsltexports.h,sha256=b5995w60ve9w6ZfdJCxtVnaP8kmY9chXldRmE_9DmG4,3383
|
||||
lxml/includes/libxml/DOCBparser.h,sha256=QCzfpD-a5w-3T9fbCLhJI12H_iN5LVtOiWu3L21eyJo,3157
|
||||
lxml/includes/libxml/HTMLparser.h,sha256=3LY9MRXs5ZCMbF91gTQol33ceRpambWVY0ciEPu6otI,9410
|
||||
lxml/includes/libxml/HTMLtree.h,sha256=-i37-IqS_LU9jei_9yUi6Fs80ZErlrCGZWwaTHIg9p8,3646
|
||||
lxml/includes/libxml/SAX.h,sha256=EgEjbXP_0OtfSYEb6FHHnWmPEgnQYZ5IaX8Ehh7YvVg,4341
|
||||
lxml/includes/libxml/SAX2.h,sha256=9Z6vTKhysqsnLMv63aJTcyRLh6Qm8Base48qRZWMQ0M,4949
|
||||
lxml/includes/libxml/c14n.h,sha256=yJO-_m0HOgTfbBiv_j-P02LftZ8_ofzIpJEonBPyULY,3109
|
||||
lxml/includes/libxml/catalog.h,sha256=ugBmcsBjZefAsAE8vs7OwMZonYVBzDj2rNyWVF4YK3I,4905
|
||||
lxml/includes/libxml/chvalid.h,sha256=H9_NIeLyDhdKDZg9euK_5b5QmeXWWNq4KTENFkcUUtA,5159
|
||||
lxml/includes/libxml/debugXML.h,sha256=eatflryQfcmuAgmyz_f3JoSpTmvDA26mrcUjd7vwSLY,5152
|
||||
lxml/includes/libxml/dict.h,sha256=o36P53gHvahFTU4K-RMkeqy5oJzXza_akJ069CmdorE,1955
|
||||
lxml/includes/libxml/encoding.h,sha256=bzmHUnU-pUjQIqMOqrEml5KapMOmZ8MeoNO5VIro0ck,8507
|
||||
lxml/includes/libxml/entities.h,sha256=uJ8I3voqfwMEw8MQJveLtS0mOanjzzREreKrSs8_018,4712
|
||||
lxml/includes/libxml/globals.h,sha256=bjkOtarZpUFFa5QYE5gN3t0RtRIsXHQQJg8ulxQHAKQ,14670
|
||||
lxml/includes/libxml/hash.h,sha256=81Gch4yaE4oXlKhM-jwPpVkf7zig2kH5b-wdrCkINpY,6603
|
||||
lxml/includes/libxml/list.h,sha256=b7h42wGsDQTVWXsRutjNe1n00_zXfDIXr-iBOHvSThg,3348
|
||||
lxml/includes/libxml/nanoftp.h,sha256=HOW15FcLYD7A7hvdcqz3JxGYVBraqjiTodtx-pBqQ5g,3758
|
||||
lxml/includes/libxml/nanohttp.h,sha256=LLgN_JcupVO24_Oki895yVKsJzFe5mcF2vH8Ekymq_I,2005
|
||||
lxml/includes/libxml/parser.h,sha256=fAvfRpely07ySdKS8MJRCwcyOoZpM-h5y6tPhXCZaNs,39717
|
||||
lxml/includes/libxml/parserInternals.h,sha256=2c5f6anmOJaYlqJhAky-mtn6CNBFFy1COvPXHtDkb2I,17418
|
||||
lxml/includes/libxml/relaxng.h,sha256=D1ufdqizDSPx8wOL_ZsjuIl--nK52cWMiZwIdEIbhSc,5996
|
||||
lxml/includes/libxml/schemasInternals.h,sha256=I1VSv5fO7wDHdgSoR2xrcUSGL1UEeOgabpnZT5wXayo,26243
|
||||
lxml/includes/libxml/schematron.h,sha256=lNOe9oFbhBqk1GVv4nJ4eZR3tieJVuw-gqbrmPtG3K4,4371
|
||||
lxml/includes/libxml/threads.h,sha256=4OopyFEmDIicmsj7cYzzlpEswbXSiHHM5LJakZ9Vw5Y,1958
|
||||
lxml/includes/libxml/tree.h,sha256=Vbh95HbDdJ8MmJyt-y2fDUMBl8unhC2xau7Rw3Ypkxk,38107
|
||||
lxml/includes/libxml/uri.h,sha256=nGU1MVe2zr7e3jReDYKCMPQkTkQRN-iNlLewkpP9cLo,2664
|
||||
lxml/includes/libxml/valid.h,sha256=__oCp9iK1nJc7s2iRZqtz8iHu6--9-XI_MWLXIBq_C0,13622
|
||||
lxml/includes/libxml/xinclude.h,sha256=iL_sqfaWIhThheHWBbEUQt59_sd-jnExhxaYeXxInqk,2967
|
||||
lxml/includes/libxml/xlink.h,sha256=hV-cvCxIJ_F1VdWcMYZ3w2jkGwWyLc9SZ8PdnUZxYNs,5040
|
||||
lxml/includes/libxml/xmlIO.h,sha256=-5MYRiCCuO81Y23ldZJU7Uh_my3U7yyg9rMfahcVans,10611
|
||||
lxml/includes/libxml/xmlautomata.h,sha256=rIJxLWBGZrfkFYDXdJZBoAhygp93vFBO_WI6nUCxBN4,3956
|
||||
lxml/includes/libxml/xmlerror.h,sha256=I7xskOqrTkctmlL76j2-_VMmMB_RPcXTglE1jHRXa5g,36808
|
||||
lxml/includes/libxml/xmlexports.h,sha256=STps2gtHl-dNVoWDBdsg1liYi88JYJYTjBp30KEeOYc,3933
|
||||
lxml/includes/libxml/xmlmemory.h,sha256=Z6y0IQCIKXfVnYOPiGoFwc5Hq4rUdZ5AJwKJeav0TNw,5945
|
||||
lxml/includes/libxml/xmlmodule.h,sha256=c5vXusZj46FsM9UPHGt8g9gdPhTVOH1rJEFf2pJ8K4c,1170
|
||||
lxml/includes/libxml/xmlreader.h,sha256=mAAVz-ZYrOt56fzLds-ytusW7UqEGS5L9BGi5kzpTv4,12607
|
||||
lxml/includes/libxml/xmlregexp.h,sha256=UHbZDD3CZVn4NDiaHB64Aa-90pxzSsconMqneCp1ZDc,5458
|
||||
lxml/includes/libxml/xmlsave.h,sha256=8QlBKC6tuZ7lFQr_KJDTAxp4gmXtZWg-KGmLMkD7TCw,2337
|
||||
lxml/includes/libxml/xmlschemas.h,sha256=mvK9-OmM-FxfAPSpfkte4R-EWdkwvY6WFX6JmUeF3_U,7069
|
||||
lxml/includes/libxml/xmlschemastypes.h,sha256=alMLzZOds02Ksbv7K86owr0_IXjFPQ2Kk99rGhniZPE,4841
|
||||
lxml/includes/libxml/xmlstring.h,sha256=P_40FyEE40e_8h8Tlk9TSNze1zrJygFgsxkFydPnnPs,5511
|
||||
lxml/includes/libxml/xmlunicode.h,sha256=TpTZ8Bf313Rs9m-ww1cBCHwvW-uHj9tQ125iQfaDorU,9993
|
||||
lxml/includes/libxml/xmlversion.h,sha256=QfvdigZn28-v7eoo5cout_QssMYibltZVz-FiWsMp34,8092
|
||||
lxml/includes/libxml/xmlwriter.h,sha256=ddjdRh9PBH-FynmNgjkRg1JFBRzlZBPyyh7FX3JX1lY,21265
|
||||
lxml/includes/libxml/xpath.h,sha256=zo45KZIebdrOgK-Zu7kWQMm9yAs4pt_5b5QGnDApMc0,16398
|
||||
lxml/includes/libxml/xpathInternals.h,sha256=EWeEX1yCVHsUUeDxxOe-4jO25LBEDoM564CoPc1YNGU,19353
|
||||
lxml/includes/libxml/xpointer.h,sha256=6MQwhGyIy3PKp9yWaXRg0LAdL-bR2jjFNYUxUSkc6lk,3359
|
||||
lxml/includes/libxslt/attributes.h,sha256=vwJCNwOWLxNtoTh4Zqf9jhlxOjYJ-2e6KbaDEM7sEHY,930
|
||||
lxml/includes/libxslt/documents.h,sha256=kBihgH5pqRvFalhm_fOFHtJTFhTpBcm681yT5dxgwfw,2704
|
||||
lxml/includes/libxslt/extensions.h,sha256=bTyuv5_mj-RdPFhpT89LIM-iaMJ5dZtJFJkq0sbfaxE,6903
|
||||
lxml/includes/libxslt/extra.h,sha256=MqVdYuHZNw4wYQZdHs0mLY0xMjV-OoiZJeP7NG5iZgw,1641
|
||||
lxml/includes/libxslt/functions.h,sha256=LOR4F-xCPfST2QulovzKF2bQvan_Xw_jjaF5pqECDdM,2006
|
||||
lxml/includes/libxslt/imports.h,sha256=18kIjoGqdFXR63Ce3ZtzxsTiYV3XGKpchYakMUPDuUI,1840
|
||||
lxml/includes/libxslt/keys.h,sha256=16v25VEluS7jYhgg6gYFwVxgGMn-1ctnlhhWWT4RcBY,1155
|
||||
lxml/includes/libxslt/namespaces.h,sha256=VofSn2Kkn-a5JyRKCmY3jPp7amQy3n09vzy0KUQt4q0,1666
|
||||
lxml/includes/libxslt/numbersInternals.h,sha256=Eg5gYZ5p3h0_e5wyI61S-0E6_ArVJzv0yr63j6BU2fc,2019
|
||||
lxml/includes/libxslt/pattern.h,sha256=guN--02T1BimNNZxySofWFs91rRwIfqVOkbnr5vkAuY,1998
|
||||
lxml/includes/libxslt/preproc.h,sha256=-19NH8t3q1NGsG6OsnctVHkk43tfNgbp1ei5glt_jNU,892
|
||||
lxml/includes/libxslt/security.h,sha256=fUD1cy_WxFCTvTNAF0WOQIU4p5CNWn1LHFyZJd-Fx5U,2652
|
||||
lxml/includes/libxslt/templates.h,sha256=bnt6Jqui6KU5pNUdMNPbQZkZ5d-VTWqC0TMGkOlVoIo,2268
|
||||
lxml/includes/libxslt/transform.h,sha256=UUHNbTEgGEVVaIhC86wi_CpffipfLob619bxiPpEwNI,6328
|
||||
lxml/includes/libxslt/variables.h,sha256=09J1Jx8iDk1CXye24-3cYLYtI-ZaMwRh390jpLZ6TDo,3338
|
||||
lxml/includes/libxslt/xslt.h,sha256=wmFx2Q31Pd8Iq2phAQpY9J3QQatb8lWg3gABtqKFgEw,1964
|
||||
lxml/includes/libxslt/xsltInternals.h,sha256=_kZYrVzE1EQlUJR8Y-QlVEUjuj4gCB0D7dxaNWXFkaw,57359
|
||||
lxml/includes/libxslt/xsltconfig.h,sha256=C7HE2Bfyf43jlS-z7L8emxkMdYJ5TVQQc8aCjfYnMLs,3545
|
||||
lxml/includes/libxslt/xsltexports.h,sha256=QLg1cfT3LW3m1iQnduDbstdg88cIBlPkaxMx3hlB7vE,3426
|
||||
lxml/includes/libxslt/xsltlocale.h,sha256=yOkJGQNiD39fwBYus1TpgSmb1mEJstXcHx3O_Q03d_w,1549
|
||||
lxml/includes/libxslt/xsltutils.h,sha256=D2Gqop4cieJiOsQtLWTJezGea9kONcUFxeykLjGRI_E,8297
|
||||
lxml/includes/lxml-version.h,sha256=ksjumcbYtPg9oZibhB0FPK8kjiY2L-XApmMxf0p1ouY,71
|
||||
lxml/includes/relaxng.pxd,sha256=12yapjqDZLF_HTlcuSXSoQpPGK1NU7fj7gzS1EF8kZw,2669
|
||||
lxml/includes/schematron.pxd,sha256=5_PUpLHTzzYZ_d-8d2OjKLdwtLIdOm7C20HFUAX8hD4,1640
|
||||
lxml/includes/tree.pxd,sha256=qiuNwXRKAsV0xJoSNBmKc7RclDn_5GI93MCHes2xbW8,19952
|
||||
lxml/includes/uri.pxd,sha256=5wPtpGU1JtdmpZMTzR8EswazihP3dxkns6Fgo9NWOt8,139
|
||||
lxml/includes/xinclude.pxd,sha256=onXD71LVdAbXjUj82_SDtSixNsNh8xbu6Nd9x0V3bmM,852
|
||||
lxml/includes/xmlerror.pxd,sha256=rV-nzG4TwgnNjuw7w68abmGDk_c8LGm4Y8f5oPw8OVc,57935
|
||||
lxml/includes/xmlparser.pxd,sha256=v-G3Y11eR4C1e2ImWLmGZpuTA90Y9N_uy-8H0-zwJY8,10852
|
||||
lxml/includes/xmlschema.pxd,sha256=yYQFrIKAQ_feenENV24X2AZyBIYGBltRDm9qB7CYMww,1696
|
||||
lxml/includes/xpath.pxd,sha256=tKYAcwpbSRq8qrsZ2ISVYvEaLnCV9GadNC5o_f8Ua_g,5794
|
||||
lxml/includes/xslt.pxd,sha256=qBU-0dLhIMQFv58I4q1XkBq9QJpJzKEAK9qBFPXBj_g,8341
|
||||
lxml/isoschematron/__init__.py,sha256=NUoI0bb87VB2XePzFcMtwUasrUAQACfb3Z9dPaMz6Fs,12399
|
||||
lxml/isoschematron/__pycache__/__init__.cpython-37.pyc,,
|
||||
lxml/isoschematron/resources/rng/iso-schematron.rng,sha256=VsWxPyi3iViJDDbjJJw0wWkEHkLrz9zoCA8zJLor9N4,18337
|
||||
lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl,sha256=ObebsB8Wt-d3uIA_U5NU85TpnQ3PxPX38TdOAqosMac,3172
|
||||
lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl,sha256=QweRrIIM-zFcgg98GXA2CaWfIbgVE0XKEeYSfvv67A0,4563
|
||||
lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl,sha256=xSZ_Ekq_I-62ZpiE5AqYYHwFW_qh855zt9V4_s7rbkY,11703
|
||||
lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl,sha256=x42QJ-dxQ1waPzydsCoQnp2Xj15y53nW43O7BuoDRHk,39957
|
||||
lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl,sha256=Tr9BnO6pzjVWwhqJfm10UlvAy95EgfSCz2iMlrVGT6Q,2015
|
||||
lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl,sha256=ue8q_88X4e_jsJizo31GRNBxNhdxkEE9fY20oq0Iqwk,71764
|
||||
lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl,sha256=BBAdsVSi5zAzeGepuN6gS1saQINDqITXKplmmj4dTWg,20382
|
||||
lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt,sha256=OGLiFswuLJEW5EPYKOeoauuCJFEtVa6jyzBE1OcJI98,3310
|
||||
lxml/lxml.etree.h,sha256=TWrERq5QkJNhXNpaJ78yssgHB1B0FDvH6gdMOxvb6vE,8554
|
||||
lxml/lxml.etree_api.h,sha256=hiYv48QAV9FOBsOxnzaPEwDezna6nZksPuBvnmnWrnY,17471
|
||||
lxml/objectify.cpython-37m-darwin.so,sha256=dW6ODu7iMJ5Rkwj-a84tNfeNu3nrDh8FrSuV8weYoa8,6859304
|
||||
lxml/pyclasslookup.py,sha256=gLD1HM2HtITYYiGzjEOewSwbB7XkVx_NZv_quCt79Oc,92
|
||||
lxml/sax.cpython-37m-darwin.so,sha256=Q7kPvIUd61f2h39FRz7YjwNIIepNDUWZFYMiDf0HN58,389332
|
||||
lxml/sax.py,sha256=xwHH7zbL6Vzp26fm50o2Jw1OkdualIcN4QoccYWRbqM,9406
|
||||
lxml/usedoctest.py,sha256=qRgZKQVcAZcl-zN0AIXVJnOsETUXz2nPXkxuzs1lGgk,230
|
||||
9
lib/python3.7/site-packages/lxml-4.3.0.dist-info/WHEEL
Normal file
9
lib/python3.7/site-packages/lxml-4.3.0.dist-info/WHEEL
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.32.3)
|
||||
Root-Is-Purelib: false
|
||||
Tag: cp37-cp37m-macosx_10_6_intel
|
||||
Tag: cp37-cp37m-macosx_10_9_intel
|
||||
Tag: cp37-cp37m-macosx_10_9_x86_64
|
||||
Tag: cp37-cp37m-macosx_10_10_intel
|
||||
Tag: cp37-cp37m-macosx_10_10_x86_64
|
||||
|
||||
|
|
@ -0,0 +1 @@
|
|||
lxml
|
||||
Loading…
Add table
Add a link
Reference in a new issue