Ausgabe der neuen DB Einträge
This commit is contained in:
parent
bad48e1627
commit
cfbbb9ee3d
2399 changed files with 843193 additions and 43 deletions
|
|
@ -0,0 +1 @@
|
|||
pip
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
Copyright (c) 2004 Infrae. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are
|
||||
met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in
|
||||
the documentation and/or other materials provided with the
|
||||
distribution.
|
||||
|
||||
3. Neither the name of Infrae nor the names of its contributors may
|
||||
be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INFRAE OR
|
||||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
|
@ -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)
|
||||
|
|
@ -0,0 +1,80 @@
|
|||
Metadata-Version: 2.1
|
||||
Name: lxml
|
||||
Version: 4.6.1
|
||||
Summary: Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.
|
||||
Home-page: https://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.5
|
||||
Classifier: Programming Language :: Python :: 3.6
|
||||
Classifier: Programming Language :: Python :: 3.7
|
||||
Classifier: Programming Language :: Python :: 3.8
|
||||
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
|
||||
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, != 3.4.*
|
||||
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.7) ; 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
|
||||
<https://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.6 .
|
||||
Running ``easy_install lxml==4.6bugfix`` will install
|
||||
the unreleased branch state from
|
||||
https://github.com/lxml/lxml/tarball/lxml-4.6#egg=lxml-4.6bugfix
|
||||
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.6.1 (2020-10-18)
|
||||
==================
|
||||
|
||||
Bugs fixed
|
||||
----------
|
||||
|
||||
* A vulnerability was discovered in the HTML Cleaner by Yaniv Nizry, which allowed
|
||||
JavaScript to pass through. The cleaner now removes more sneaky "style" content.
|
||||
|
||||
|
||||
|
||||
|
||||
164
venv/lib/python3.9/site-packages/lxml-4.6.1.dist-info/RECORD
Normal file
164
venv/lib/python3.9/site-packages/lxml-4.6.1.dist-info/RECORD
Normal file
|
|
@ -0,0 +1,164 @@
|
|||
lxml-4.6.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
lxml-4.6.1.dist-info/LICENSE.txt,sha256=ae20RcEzWoMS1MCScYR-mVbYTw2fck0SU0DMP612eyo,1488
|
||||
lxml-4.6.1.dist-info/LICENSES.txt,sha256=QdSd1AaqDhVIptXyGjDWv2OLPNlutyid00jYPtLkA5I,1514
|
||||
lxml-4.6.1.dist-info/METADATA,sha256=Dg2cIREU89NgJgBAyGYZXhTJkxoxMrIELXSX5GQIuXA,3070
|
||||
lxml-4.6.1.dist-info/RECORD,,
|
||||
lxml-4.6.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
lxml-4.6.1.dist-info/WHEEL,sha256=Y7rqYILQMEhhJp6Nz-o9a5ByCovhm05pxpBIPUgMZ84,109
|
||||
lxml-4.6.1.dist-info/top_level.txt,sha256=NjD988wqaKq512nshNdLt-uDxsjkp4Bh51m6N-dhUrk,5
|
||||
lxml/ElementInclude.py,sha256=PSLeZFvCa76WHJulPLxcZXJtCI2-4dK2CtqPRiYOAQg,8560
|
||||
lxml/__init__.py,sha256=YpLdWRGsISjlZQgykNZfXG5nh5mG1ZnqjA_P6RGPyks,575
|
||||
lxml/__pycache__/ElementInclude.cpython-39.pyc,,
|
||||
lxml/__pycache__/__init__.cpython-39.pyc,,
|
||||
lxml/__pycache__/_elementpath.cpython-39.pyc,,
|
||||
lxml/__pycache__/builder.cpython-39.pyc,,
|
||||
lxml/__pycache__/cssselect.cpython-39.pyc,,
|
||||
lxml/__pycache__/doctestcompare.cpython-39.pyc,,
|
||||
lxml/__pycache__/pyclasslookup.cpython-39.pyc,,
|
||||
lxml/__pycache__/sax.cpython-39.pyc,,
|
||||
lxml/__pycache__/usedoctest.cpython-39.pyc,,
|
||||
lxml/_elementpath.cpython-39-darwin.so,sha256=aPQFrENWNZY8PZubl8GocsrrtF45X0-z3uiu6HErdTY,234836
|
||||
lxml/_elementpath.py,sha256=wo6_CnGtKSkadI-krW8gbEZ1fVPTnIJINNwrdRfT_fw,10742
|
||||
lxml/builder.cpython-39-darwin.so,sha256=ArMirZCbK_4TeFdbM1aUNLYShw5hpGP-qIqUYC4FFhk,112296
|
||||
lxml/builder.py,sha256=R5WsHI0bCOHYehskKXENvBkuarviL5rNJsmnh6cZGUA,7975
|
||||
lxml/cssselect.py,sha256=ADTqox2BUhZI_28K26Dnd-rPqvwL1A7KpXwDetXZLfA,3366
|
||||
lxml/doctestcompare.py,sha256=dAjqNzMGJuDsxY0xOXwOWzEsq7gSfQf-6uuxZZwaNXM,18339
|
||||
lxml/etree.cpython-39-darwin.so,sha256=2nNJjIUC0_fthfP2BmXEGxkZeSr-VLhZmV-uebm_8YA,5956364
|
||||
lxml/etree.h,sha256=ZsIqmrdd4QENb9T3rgEFNvbvlELpylQGYiDspFWMVaU,8575
|
||||
lxml/etree_api.h,sha256=Jfz9HTaI52fPEGGgohrgLcjPimuhJV_vvWt9pnOoJvs,17467
|
||||
lxml/html/ElementSoup.py,sha256=s_dLobLMuKn2DhexR-iDXdZrMFg1RjLy1feHsIeZMpw,320
|
||||
lxml/html/__init__.py,sha256=16eBJ2AV4BDnoy56Qfkm6-81nY4fARw-wkL5lGoUmHQ,65090
|
||||
lxml/html/__pycache__/ElementSoup.cpython-39.pyc,,
|
||||
lxml/html/__pycache__/__init__.cpython-39.pyc,,
|
||||
lxml/html/__pycache__/_diffcommand.cpython-39.pyc,,
|
||||
lxml/html/__pycache__/_html5builder.cpython-39.pyc,,
|
||||
lxml/html/__pycache__/_setmixin.cpython-39.pyc,,
|
||||
lxml/html/__pycache__/builder.cpython-39.pyc,,
|
||||
lxml/html/__pycache__/clean.cpython-39.pyc,,
|
||||
lxml/html/__pycache__/defs.cpython-39.pyc,,
|
||||
lxml/html/__pycache__/diff.cpython-39.pyc,,
|
||||
lxml/html/__pycache__/formfill.cpython-39.pyc,,
|
||||
lxml/html/__pycache__/html5parser.cpython-39.pyc,,
|
||||
lxml/html/__pycache__/soupparser.cpython-39.pyc,,
|
||||
lxml/html/__pycache__/usedoctest.cpython-39.pyc,,
|
||||
lxml/html/_diffcommand.py,sha256=7-tz3udrgg0unGPAI8pa_uN4e7vW0MmgOXE43kKPdw8,2121
|
||||
lxml/html/_html5builder.py,sha256=cASxN0Tks3_vqCA_sXa1oCx_McyRL6VpuRLA1T-B58o,3246
|
||||
lxml/html/_setmixin.py,sha256=uVCgBUC4SJ7N9GotmlKHrhH7R4Kk7wGU3u1WmEJKGeM,1184
|
||||
lxml/html/builder.py,sha256=aRgS-Ea9bli-muGX0iUQGKAe9D93P8BspQ2WPuiWJcU,4492
|
||||
lxml/html/clean.cpython-39-darwin.so,sha256=wBaGl6c2FoZs-6bTcLMZrnDjIns-LryC30TVYKajd8M,365868
|
||||
lxml/html/clean.py,sha256=Jeros3zt_6iU5e5wPcmI1XGZ7riwlwHcdG1v5FDiwhw,27719
|
||||
lxml/html/defs.py,sha256=MXAuq2-kkfQjOlhhoYaD51Nc7ESshnmIkglDIWYwuiw,4196
|
||||
lxml/html/diff.cpython-39-darwin.so,sha256=rrcUdF_Ph-CrBRSRyxZVdXA9tsnd8TxHe2mum4AUprE,465832
|
||||
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-39.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=e8Nlc-wG74xRyK3EqonkWx02LGzq7pl6bmLYzuWO9_Q,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=wJPM0qpB_lkv2iGPu-NadLUpjOHyLI3yT8rFuG7A1oM,1165
|
||||
lxml/includes/libexslt/exsltexports.h,sha256=QQ8XCrP1vKIkdXlmDBgVP239S-1zBftHCK1RKBFPnRQ,3396
|
||||
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=PJaJ1egiSnTaPg3VLvKhSdjRiXwxoRRwIN08GotI9vg,3115
|
||||
lxml/includes/libxml/catalog.h,sha256=-XY3t2ZK0riJAJEHwqFBo4HamD0IH04M7Oq4lNqd0Gs,4906
|
||||
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=Wfq44X2FXKytybNgJI5vq-GNogB0_JfCpD43JI8oF6E,1814
|
||||
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=rXg0ABwEyoGhmHT3ToW9Z-p-GH2W_UP1P7VarqUijCE,6601
|
||||
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=YnvVMWxnpCeNoR1jiOtUkzGeLFy4cONh0EsOJow5lrA,39718
|
||||
lxml/includes/libxml/parserInternals.h,sha256=m4BiV_lKiz6XWMLql_yFPuQXkewKxYAxlc210eDZyTo,17419
|
||||
lxml/includes/libxml/relaxng.h,sha256=D1ufdqizDSPx8wOL_ZsjuIl--nK52cWMiZwIdEIbhSc,5996
|
||||
lxml/includes/libxml/schemasInternals.h,sha256=upFGK5WoLVjlIEavyqaPEn0c2zgb6IXZKDNSpll25rs,26224
|
||||
lxml/includes/libxml/schematron.h,sha256=lNOe9oFbhBqk1GVv4nJ4eZR3tieJVuw-gqbrmPtG3K4,4371
|
||||
lxml/includes/libxml/threads.h,sha256=4OopyFEmDIicmsj7cYzzlpEswbXSiHHM5LJakZ9Vw5Y,1958
|
||||
lxml/includes/libxml/tree.h,sha256=YQ2qRB_ILwFrZD18t9p-MmzRPlvwHFcRlSwxTKpJ8h4,38108
|
||||
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=uIyzRPu6uszvGTopuf5pexJ__OI-0l4EPBZ4vhbsMaM,5042
|
||||
lxml/includes/libxml/xmlIO.h,sha256=PJpJsZ6j60K-PoMwQSkMuGm6p3W98DZXYAcLoN5dH3U,10605
|
||||
lxml/includes/libxml/xmlautomata.h,sha256=rIJxLWBGZrfkFYDXdJZBoAhygp93vFBO_WI6nUCxBN4,3956
|
||||
lxml/includes/libxml/xmlerror.h,sha256=yncAzsjL0cRHoEj15OUMOLPvRgDNoIYGwI9MPAjiQ2Q,36809
|
||||
lxml/includes/libxml/xmlexports.h,sha256=U9BJdbxTVIMPzEgZc43kTEm2bxYN7NlXMF-ePvDhxIo,3759
|
||||
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=z5E1DxFHiZFmZkRLVeOvhbIcntXjUuNpgZuwRfyrVCA,8035
|
||||
lxml/includes/libxml/xmlwriter.h,sha256=ddjdRh9PBH-FynmNgjkRg1JFBRzlZBPyyh7FX3JX1lY,21265
|
||||
lxml/includes/libxml/xpath.h,sha256=uQII3fGMl_DPvH3cBUu5AXe6tvra7ci_SqRUB1K0xHo,16602
|
||||
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=6X3Wu3NdPtrlqz-Koo7dB-rccnnszi6j3zg599gTByg,1640
|
||||
lxml/includes/libxslt/functions.h,sha256=fc4CZj-9KeBHzO9-WWU_bNqmaEZAz3n7NNwClIBXk14,1972
|
||||
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=tJ-BPfs9UYgiZMMoQZbhij3g7xVppYq7TrrOu25eR7Q,2110
|
||||
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=ICT7meUV0OTAx27WaKVrKj-aUmR9LSpTNaOAJd2UStg,6311
|
||||
lxml/includes/libxslt/variables.h,sha256=NmypiBFTCM7u-2kUg_yZxFwq2oTEG1EFjYG4zbfGs44,3173
|
||||
lxml/includes/libxslt/xslt.h,sha256=wmFx2Q31Pd8Iq2phAQpY9J3QQatb8lWg3gABtqKFgEw,1964
|
||||
lxml/includes/libxslt/xsltInternals.h,sha256=ChCmCnhU5mIcrg-hjRNU9t5PiCjB1TWaaGoZXNaQDyQ,57302
|
||||
lxml/includes/libxslt/xsltconfig.h,sha256=HBDe72TyP8JDIpGApsVmsyVRuiANZ60fE9bsF_byVyQ,3730
|
||||
lxml/includes/libxslt/xsltexports.h,sha256=0fj02WOCn4uL36ZuZEkGEb5UW1_tt-QC-ih12xvgscI,3439
|
||||
lxml/includes/libxslt/xsltlocale.h,sha256=yOkJGQNiD39fwBYus1TpgSmb1mEJstXcHx3O_Q03d_w,1549
|
||||
lxml/includes/libxslt/xsltutils.h,sha256=J13q6mYEkH291bR7-f0rUpRqmaeJ1uhUv0lbA1S9siI,8298
|
||||
lxml/includes/lxml-version.h,sha256=_sA2aZ4-VOJ_8yFSwHBe3jbwP63GLru-Ujq0r4BUDQE,71
|
||||
lxml/includes/relaxng.pxd,sha256=12yapjqDZLF_HTlcuSXSoQpPGK1NU7fj7gzS1EF8kZw,2669
|
||||
lxml/includes/schematron.pxd,sha256=5_PUpLHTzzYZ_d-8d2OjKLdwtLIdOm7C20HFUAX8hD4,1640
|
||||
lxml/includes/tree.pxd,sha256=dtnXNbEfxV3-5kOwWYkYoCE8HT5zvFVNdKFaIBuNXBc,20091
|
||||
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-39.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=ZsIqmrdd4QENb9T3rgEFNvbvlELpylQGYiDspFWMVaU,8575
|
||||
lxml/lxml.etree_api.h,sha256=mDj4Kc-Iz8v2Zi8LZ2W5BiFOTnMPiCpJ_EpgGC_Y3Y4,17472
|
||||
lxml/objectify.cpython-39-darwin.so,sha256=VF01Bvp8hkf2QNo_8MxtJy4Iwu1ztQj4vyKTNnNna3E,3369972
|
||||
lxml/pyclasslookup.py,sha256=gLD1HM2HtITYYiGzjEOewSwbB7XkVx_NZv_quCt79Oc,92
|
||||
lxml/sax.cpython-39-darwin.so,sha256=dGJBefnHjcmp9jr_vO5sGwkcIeD89kW-9bGWkxjtZv4,205144
|
||||
lxml/sax.py,sha256=xcs8RDKFWnqCbZpYdDuJPLIUTbThrCYnX9arDhxlgOY,9396
|
||||
lxml/usedoctest.py,sha256=qRgZKQVcAZcl-zN0AIXVJnOsETUXz2nPXkxuzs1lGgk,230
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.35.1)
|
||||
Root-Is-Purelib: false
|
||||
Tag: cp39-cp39-macosx_10_9_x86_64
|
||||
|
||||
|
|
@ -0,0 +1 @@
|
|||
lxml
|
||||
Loading…
Add table
Add a link
Reference in a new issue