win32 platform
This commit is contained in:
commit
c1666978b2
1122 changed files with 348397 additions and 0 deletions
46
Lib/site-packages/lxml-3.5.0.dist-info/DESCRIPTION.rst
Normal file
46
Lib/site-packages/lxml-3.5.0.dist-info/DESCRIPTION.rst
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
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-3.5 .
|
||||
Running ``easy_install lxml==3.5bugfix`` will install
|
||||
the unreleased branch state from
|
||||
https://github.com/lxml/lxml/tarball/lxml-3.5#egg=lxml-3.5bugfix
|
||||
as soon as a maintenance branch has been established. Note that this
|
||||
requires Cython to be installed at an appropriate version for the build.
|
||||
|
||||
3.5.0 (2015-11-13)
|
||||
==================
|
||||
|
||||
Bugs fixed
|
||||
----------
|
||||
|
||||
* Unicode string results failed XPath queries in PyPy.
|
||||
|
||||
* LP#1497051: HTML target parser failed to terminate on exceptions
|
||||
and continued parsing instead.
|
||||
|
||||
* Deprecated API usage in doctestcompare.
|
||||
|
||||
|
||||
|
||||
|
||||
1
Lib/site-packages/lxml-3.5.0.dist-info/INSTALLER
Normal file
1
Lib/site-packages/lxml-3.5.0.dist-info/INSTALLER
Normal file
|
|
@ -0,0 +1 @@
|
|||
pip
|
||||
82
Lib/site-packages/lxml-3.5.0.dist-info/METADATA
Normal file
82
Lib/site-packages/lxml-3.5.0.dist-info/METADATA
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
Metadata-Version: 2.0
|
||||
Name: lxml
|
||||
Version: 3.5.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
|
||||
License: UNKNOWN
|
||||
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.6
|
||||
Classifier: Programming Language :: Python :: 2.7
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.2
|
||||
Classifier: Programming Language :: Python :: 3.3
|
||||
Classifier: Programming Language :: Python :: 3.4
|
||||
Classifier: Programming Language :: Python :: 3.5
|
||||
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.20); 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-3.5 .
|
||||
Running ``easy_install lxml==3.5bugfix`` will install
|
||||
the unreleased branch state from
|
||||
https://github.com/lxml/lxml/tarball/lxml-3.5#egg=lxml-3.5bugfix
|
||||
as soon as a maintenance branch has been established. Note that this
|
||||
requires Cython to be installed at an appropriate version for the build.
|
||||
|
||||
3.5.0 (2015-11-13)
|
||||
==================
|
||||
|
||||
Bugs fixed
|
||||
----------
|
||||
|
||||
* Unicode string results failed XPath queries in PyPy.
|
||||
|
||||
* LP#1497051: HTML target parser failed to terminate on exceptions
|
||||
and continued parsing instead.
|
||||
|
||||
* Deprecated API usage in doctestcompare.
|
||||
|
||||
|
||||
|
||||
|
||||
85
Lib/site-packages/lxml-3.5.0.dist-info/RECORD
Normal file
85
Lib/site-packages/lxml-3.5.0.dist-info/RECORD
Normal file
|
|
@ -0,0 +1,85 @@
|
|||
lxml/ElementInclude.py,sha256=v2Zp-fy190Jvn2Qx7ArC3pjtFEqgQGIBr2J8H87nj04,7641
|
||||
lxml/__init__.py,sha256=lYLRn8M0_xdnN2bhEnZ2L7mlY5zM3gwz1kgLILLxC34,551
|
||||
lxml/_elementpath.py,sha256=FPpSgh-8KwZUzJQ0Ac2_L0l7i5HnVs5CaMriqDJAPZM,9490
|
||||
lxml/builder.py,sha256=2AuTtaN2F8noBWZ9eEfxOlVdztfLGYQGUtfK2uOu--g,8152
|
||||
lxml/cssselect.py,sha256=ADTqox2BUhZI_28K26Dnd-rPqvwL1A7KpXwDetXZLfA,3366
|
||||
lxml/doctestcompare.py,sha256=c1_02F7p5KE9epBcOJD0OA81v7ANrDyEr2P6A2irB5A,18387
|
||||
lxml/etree.cp35-win32.pyd,sha256=pKhpPyJ1YCp_AHWeScIyI50bfZQ0cwSEawm6i3FACwo,2172416
|
||||
lxml/lxml.etree.h,sha256=U-TabJyPaqamlrsjCMezjHlVLcTLzqag0Qk1EX_0mlA,8902
|
||||
lxml/lxml.etree_api.h,sha256=qy4Y24d0Xi0D3CImAp5Rm2XrPyJW1IRgLa-5b4nPHHQ,17450
|
||||
lxml/objectify.cp35-win32.pyd,sha256=mYKoc5Mrdd6x7FfAifQ3FVomHjPI58c8OHaMoaRYKcU,632320
|
||||
lxml/pyclasslookup.py,sha256=gLD1HM2HtITYYiGzjEOewSwbB7XkVx_NZv_quCt79Oc,92
|
||||
lxml/sax.py,sha256=LHiQ02sYvfKwecxcsRsoZjuH-O6FrQu2PvtK_b_12Mk,8531
|
||||
lxml/usedoctest.py,sha256=qRgZKQVcAZcl-zN0AIXVJnOsETUXz2nPXkxuzs1lGgk,230
|
||||
lxml/html/ElementSoup.py,sha256=9NQNksJmEr0M2DqzaKhXWdALLo0btwVwjgTHnkfGfvk,319
|
||||
lxml/html/__init__.py,sha256=UKxX64g9kNlHmpkS7sTo2tOWPMrhjF9wVqx_kRwiSLI,64571
|
||||
lxml/html/_diffcommand.py,sha256=FgOLayf6pz3qmN2EJM9aU6Zrvbi-ecGCPpKKd3jv4MI,2084
|
||||
lxml/html/_html5builder.py,sha256=cASxN0Tks3_vqCA_sXa1oCx_McyRL6VpuRLA1T-B58o,3246
|
||||
lxml/html/_setmixin.py,sha256=Rt1Pb_GFWp_5BD5GioZBaUPUZbVwPruDPJJMR7O7ntE,1111
|
||||
lxml/html/builder.py,sha256=1NuLqKPSaat75wCGufVuv1jIeBLuQCWsJVA_T2XjjUI,4310
|
||||
lxml/html/clean.py,sha256=2jHDo-j0eZXIJXbvQkog5XXDo_rtRDWHpeAsRHAsZzk,26084
|
||||
lxml/html/defs.py,sha256=fDYcHB4hJ8ncoGqfCIv9s6sZ9JYDEIRBqsNFBYEh2_g,4250
|
||||
lxml/html/diff.py,sha256=VwoIaJgvRWTouUmA7FYURwo_JlDce4MkkS0-g36-TVs,30500
|
||||
lxml/html/formfill.py,sha256=TcIlKqnGez5L6vfItobqiRlCS5bTaqglgDV5C_56VhM,9699
|
||||
lxml/html/html5parser.py,sha256=2MbS_4yTP-Tm8HvHiRm5xaGv9qLsmvS1RAD398--7Cs,6498
|
||||
lxml/html/soupparser.py,sha256=KMfefzgk5OLg_US0Rt2jHjJmWafj40I6OTDYV_WPvSE,10012
|
||||
lxml/html/usedoctest.py,sha256=tPlmVz4KK1GRKV5DJLrdVECeqsT9PlDzSqqTodVi5s0,249
|
||||
lxml/includes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
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=cao5QR96gTItCTignEEoGoowC-sZS9vSl0IY7HnSMRk,13748
|
||||
lxml/includes/etreepublic.pxd,sha256=d6uN90usIgY_y00OYZqOn4xpk0yuLTmfxlgHlH0fI74,9985
|
||||
lxml/includes/htmlparser.pxd,sha256=Va2qbs5zVokERn57HbDY__CiBQOoCS4uI9wEfCnT6zk,2868
|
||||
lxml/includes/lxml-version.h,sha256=28xt2kRQ3PzgXmolrD0i3rfaTHmpwlkDPALDcy2TU_0,74
|
||||
lxml/includes/relaxng.pxd,sha256=12yapjqDZLF_HTlcuSXSoQpPGK1NU7fj7gzS1EF8kZw,2669
|
||||
lxml/includes/schematron.pxd,sha256=5_PUpLHTzzYZ_d-8d2OjKLdwtLIdOm7C20HFUAX8hD4,1640
|
||||
lxml/includes/tree.pxd,sha256=Ly-j3oXLo0jyS7nwtoDZKukjt5RydwnctGCFHamQjeA,19759
|
||||
lxml/includes/uri.pxd,sha256=5wPtpGU1JtdmpZMTzR8EswazihP3dxkns6Fgo9NWOt8,139
|
||||
lxml/includes/xinclude.pxd,sha256=onXD71LVdAbXjUj82_SDtSixNsNh8xbu6Nd9x0V3bmM,852
|
||||
lxml/includes/xmlerror.pxd,sha256=8OehYSACGPbrDoUp5arNf7QV_yZqIJOvX8K7wYgOibE,57916
|
||||
lxml/includes/xmlparser.pxd,sha256=VG9WadjfcdHUZ3wcstG3iO_pnhDoA2OICAi_lg1C1MQ,10824
|
||||
lxml/includes/xmlschema.pxd,sha256=yYQFrIKAQ_feenENV24X2AZyBIYGBltRDm9qB7CYMww,1696
|
||||
lxml/includes/xpath.pxd,sha256=tKYAcwpbSRq8qrsZ2ISVYvEaLnCV9GadNC5o_f8Ua_g,5794
|
||||
lxml/includes/xslt.pxd,sha256=bAg5a44I0aqVcYZ6sBcsyXddTNiuMI7UjHWlO8FccyU,7631
|
||||
lxml/isoschematron/__init__.py,sha256=FzrpeBJets_w6BH3MW1VbwTfThS35XL_Hk0bGr-NcOQ,12408
|
||||
lxml/isoschematron/resources/rng/iso-schematron.rng,sha256=cFvf7ObbuHh52exAqMlTBlGu-5iuOH2pE0WERkdC1Tk,15572
|
||||
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=0SdZY7oqbDgbuIjB9NpUHLXbMmFHVkxIEUZwTa3iRMM,10917
|
||||
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=AVTFPZpEKzuHr7OvQZmhaU3LvwKz06AJw8mT_pNh2yI,3144
|
||||
lxml-3.5.0.dist-info/DESCRIPTION.rst,sha256=EPfgejczVWfMqhdWp2Wuc8OMyGXAR6lrTYfmjuVWGUE,1541
|
||||
lxml-3.5.0.dist-info/METADATA,sha256=QGRDbFLBUsEeTGXmS_zcFC3iLI_dJfttkb8BIRYd590,3018
|
||||
lxml-3.5.0.dist-info/RECORD,,
|
||||
lxml-3.5.0.dist-info/WHEEL,sha256=c3SRX9YjUgBRRFoaDDirVICw0lM0GonS9hcBq3MYzIc,101
|
||||
lxml-3.5.0.dist-info/metadata.json,sha256=ByuBabP24VYY3OZKLqS-7huMMWdAoC6H2LUI9RuabHE,1490
|
||||
lxml-3.5.0.dist-info/top_level.txt,sha256=NjD988wqaKq512nshNdLt-uDxsjkp4Bh51m6N-dhUrk,5
|
||||
c:\users\j\oml\platform\win32\Lib\site-packages\lxml-3.5.0.dist-info\INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
lxml/html/__pycache__/html5parser.cpython-35.pyc,,
|
||||
lxml/html/__pycache__/diff.cpython-35.pyc,,
|
||||
lxml/html/__pycache__/defs.cpython-35.pyc,,
|
||||
lxml/__pycache__/sax.cpython-35.pyc,,
|
||||
lxml/__pycache__/usedoctest.cpython-35.pyc,,
|
||||
lxml/__pycache__/__init__.cpython-35.pyc,,
|
||||
lxml/html/__pycache__/_diffcommand.cpython-35.pyc,,
|
||||
lxml/html/__pycache__/_html5builder.cpython-35.pyc,,
|
||||
lxml/html/__pycache__/_setmixin.cpython-35.pyc,,
|
||||
lxml/html/__pycache__/clean.cpython-35.pyc,,
|
||||
lxml/__pycache__/ElementInclude.cpython-35.pyc,,
|
||||
lxml/__pycache__/cssselect.cpython-35.pyc,,
|
||||
lxml/__pycache__/pyclasslookup.cpython-35.pyc,,
|
||||
lxml/html/__pycache__/soupparser.cpython-35.pyc,,
|
||||
lxml/html/__pycache__/formfill.cpython-35.pyc,,
|
||||
lxml/isoschematron/__pycache__/__init__.cpython-35.pyc,,
|
||||
lxml/html/__pycache__/usedoctest.cpython-35.pyc,,
|
||||
lxml/html/__pycache__/ElementSoup.cpython-35.pyc,,
|
||||
lxml/__pycache__/_elementpath.cpython-35.pyc,,
|
||||
lxml/html/__pycache__/builder.cpython-35.pyc,,
|
||||
lxml/__pycache__/builder.cpython-35.pyc,,
|
||||
lxml/__pycache__/doctestcompare.cpython-35.pyc,,
|
||||
lxml/includes/__pycache__/__init__.cpython-35.pyc,,
|
||||
lxml/html/__pycache__/__init__.cpython-35.pyc,,
|
||||
5
Lib/site-packages/lxml-3.5.0.dist-info/WHEEL
Normal file
5
Lib/site-packages/lxml-3.5.0.dist-info/WHEEL
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.26.0)
|
||||
Root-Is-Purelib: false
|
||||
Tag: cp35-none-win32
|
||||
|
||||
1
Lib/site-packages/lxml-3.5.0.dist-info/metadata.json
Normal file
1
Lib/site-packages/lxml-3.5.0.dist-info/metadata.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"generator": "bdist_wheel (0.26.0)", "summary": "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.", "classifiers": ["Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "License :: OSI Approved :: BSD License", "Programming Language :: Cython", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: C", "Operating System :: OS Independent", "Topic :: Text Processing :: Markup :: HTML", "Topic :: Text Processing :: Markup :: XML", "Topic :: Software Development :: Libraries :: Python Modules"], "extensions": {"python.details": {"project_urls": {"Home": "http://lxml.de/"}, "contacts": [{"email": "lxml-dev@lxml.de", "name": "lxml dev team", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}}}, "metadata_version": "2.0", "name": "lxml", "extras": ["cssselect", "html5", "htmlsoup", "source"], "run_requires": [{"requires": ["BeautifulSoup4"], "extra": "htmlsoup"}, {"requires": ["Cython (>=0.20)"], "extra": "source"}, {"requires": ["cssselect (>=0.7)"], "extra": "cssselect"}, {"requires": ["html5lib"], "extra": "html5"}], "version": "3.5.0"}
|
||||
1
Lib/site-packages/lxml-3.5.0.dist-info/top_level.txt
Normal file
1
Lib/site-packages/lxml-3.5.0.dist-info/top_level.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
lxml
|
||||
Loading…
Add table
Add a link
Reference in a new issue