com.googler.python 1.0.9 → 1.1.1
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.
- package/package.json +1 -1
- package/python3.4.2/bin/pip3 +1 -1
- package/python3.4.2/bin/pip3.4 +1 -1
- package/python3.4.2/lib/python3.4/site-packages/pip-10.0.0.dist-info/LICENSE.txt +20 -0
- package/python3.4.2/lib/python3.4/site-packages/pip-10.0.0.dist-info/METADATA +78 -0
- package/python3.4.2/lib/python3.4/site-packages/pip-10.0.0.dist-info/RECORD +294 -0
- package/python3.4.2/lib/python3.4/site-packages/{pip-1.5.6.dist-info → pip-10.0.0.dist-info}/WHEEL +6 -6
- package/python3.4.2/lib/python3.4/site-packages/pip-10.0.0.dist-info/entry_points.txt +5 -0
- package/python3.4.2/lib/python3.4/site-packages/{pip-1.5.6.dist-info → pip-10.0.0.dist-info}/top_level.txt +0 -0
- package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/DESCRIPTION.rst +0 -71
- package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/METADATA +0 -98
- package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/RECORD +0 -373
- package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/entry_points.txt +0 -5
- package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/metadata.json +0 -1
package/package.json
CHANGED
package/python3.4.2/bin/pip3
CHANGED
package/python3.4.2/bin/pip3.4
CHANGED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright (c) 2008-2016 The pip developers (see AUTHORS.txt file)
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: pip
|
|
3
|
+
Version: 10.0.0
|
|
4
|
+
Summary: The PyPA recommended tool for installing Python packages.
|
|
5
|
+
Home-page: https://pip.pypa.io/
|
|
6
|
+
Author: The pip developers
|
|
7
|
+
Author-email: python-virtualenv@groups.google.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: easy_install distutils setuptools egg virtualenv
|
|
10
|
+
Platform: UNKNOWN
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Topic :: Software Development :: Build Tools
|
|
15
|
+
Classifier: Programming Language :: Python
|
|
16
|
+
Classifier: Programming Language :: Python :: 2
|
|
17
|
+
Classifier: Programming Language :: Python :: 2.7
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.4
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.5
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
23
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
24
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
25
|
+
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*
|
|
26
|
+
Provides-Extra: testing
|
|
27
|
+
Provides-Extra: testing
|
|
28
|
+
Requires-Dist: pytest; extra == 'testing'
|
|
29
|
+
Requires-Dist: mock; extra == 'testing'
|
|
30
|
+
Requires-Dist: pretend; extra == 'testing'
|
|
31
|
+
Requires-Dist: scripttest (>=1.3); extra == 'testing'
|
|
32
|
+
Requires-Dist: virtualenv (>=1.10); extra == 'testing'
|
|
33
|
+
Requires-Dist: freezegun; extra == 'testing'
|
|
34
|
+
|
|
35
|
+
pip
|
|
36
|
+
===
|
|
37
|
+
|
|
38
|
+
The `PyPA recommended`_ tool for installing Python packages.
|
|
39
|
+
|
|
40
|
+
.. image:: https://img.shields.io/pypi/v/pip.svg
|
|
41
|
+
:target: https://pypi.python.org/pypi/pip
|
|
42
|
+
|
|
43
|
+
.. image:: https://img.shields.io/travis/pypa/pip/master.svg
|
|
44
|
+
:target: http://travis-ci.org/pypa/pip
|
|
45
|
+
|
|
46
|
+
.. image:: https://img.shields.io/appveyor/ci/pypa/pip.svg
|
|
47
|
+
:target: https://ci.appveyor.com/project/pypa/pip/history
|
|
48
|
+
|
|
49
|
+
.. image:: https://readthedocs.org/projects/pip/badge/?version=latest
|
|
50
|
+
:target: https://pip.pypa.io/en/latest
|
|
51
|
+
|
|
52
|
+
* `Installation`_
|
|
53
|
+
* `Documentation`_
|
|
54
|
+
* `Changelog`_
|
|
55
|
+
* `GitHub Page`_
|
|
56
|
+
* `Issue Tracking`_
|
|
57
|
+
* `User mailing list`_
|
|
58
|
+
* `Dev mailing list`_
|
|
59
|
+
* User IRC: #pypa on Freenode.
|
|
60
|
+
* Dev IRC: #pypa-dev on Freenode.
|
|
61
|
+
|
|
62
|
+
Code of Conduct
|
|
63
|
+
---------------
|
|
64
|
+
|
|
65
|
+
Everyone interacting in the pip project's codebases, issue trackers, chat
|
|
66
|
+
rooms and mailing lists is expected to follow the `PyPA Code of Conduct`_.
|
|
67
|
+
|
|
68
|
+
.. _PyPA recommended: https://packaging.python.org/en/latest/current/
|
|
69
|
+
.. _Installation: https://pip.pypa.io/en/stable/installing.html
|
|
70
|
+
.. _Documentation: https://pip.pypa.io/en/stable/
|
|
71
|
+
.. _Changelog: https://pip.pypa.io/en/stable/news.html
|
|
72
|
+
.. _GitHub Page: https://github.com/pypa/pip
|
|
73
|
+
.. _Issue Tracking: https://github.com/pypa/pip/issues
|
|
74
|
+
.. _User mailing list: http://groups.google.com/group/python-virtualenv
|
|
75
|
+
.. _Dev mailing list: http://groups.google.com/group/pypa-dev
|
|
76
|
+
.. _PyPA Code of Conduct: https://www.pypa.io/en/latest/code-of-conduct/
|
|
77
|
+
|
|
78
|
+
|
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
pip/__init__.py,sha256=43NL7C_Hjl1_UiAyJo_u7p4tjRXrHjHHQsuk4amdKBI,24
|
|
2
|
+
pip/__main__.py,sha256=Rh5KFcZw82ZKcILJdoSeIv_dGdMww0FM1Ocj9zzU2pU,629
|
|
3
|
+
pip/_internal/__init__.py,sha256=h0icMQeJDPEUwN9d0nQDY_lQCygIvI6zvUhOg7h90Zs,8675
|
|
4
|
+
pip/_internal/basecommand.py,sha256=NUI-orzTzuDut9wBBMczeHe_NPzv37ppn7iKBISQsPg,14005
|
|
5
|
+
pip/_internal/baseparser.py,sha256=aX6GSSbH7ttoToso0HZg2Dhk1rMUqF5cBA5leEUEqIs,8764
|
|
6
|
+
pip/_internal/build_env.py,sha256=G0PPCOcslQ4b2NriSnBBFQkZUepD4TzJvNPbSNMnv_I,2773
|
|
7
|
+
pip/_internal/cache.py,sha256=gyZxE0dtVBQaWs3vt5eyLPjJF_KPg8mhPqxc8vowjsE,7023
|
|
8
|
+
pip/_internal/cmdoptions.py,sha256=sAalMay3GiDFkIXN_jQb1OChKlFxoySePz_80utMAno,16679
|
|
9
|
+
pip/_internal/compat.py,sha256=T9XXobaTlSnF57r913o1sDTWyMpNJnR7s7GvxgHKJI0,7912
|
|
10
|
+
pip/_internal/configuration.py,sha256=YIcGqy3YEc17PhjaRHoGbQumZsIXW9B1cMYfa3jOOIo,13330
|
|
11
|
+
pip/_internal/download.py,sha256=nFjVi42nF3LmGHBD158uk2724dBDvOh7mLd6ownaxUg,34257
|
|
12
|
+
pip/_internal/exceptions.py,sha256=U8EF9G6z62FA2XINXBe7Yg8yGBcf3CJD92s9VrWx84U,8470
|
|
13
|
+
pip/_internal/index.py,sha256=GWMz0U2k8ai3IydRW_DBRdugUlOgjqllY7eao3PvRcQ,41725
|
|
14
|
+
pip/_internal/locations.py,sha256=bUbACpIX6FL_MTcFn7Vi1Wesxqc5TAnNBLcPXmDr6wc,6504
|
|
15
|
+
pip/_internal/pep425tags.py,sha256=d-MxINADjnVAOLFYbCCDac9g_AruL85uOabDnV840fM,11115
|
|
16
|
+
pip/_internal/resolve.py,sha256=7-UwudentwAU4WPOxXLXNzIIdnMVolvbCOB8IaIEYq8,13939
|
|
17
|
+
pip/_internal/status_codes.py,sha256=Yyjh7KoKMFzRF-kYDVkdWYP0gZaPaSskwwRIuqMHdc4,164
|
|
18
|
+
pip/_internal/wheel.py,sha256=4AV2jHA6Yj804kH99xT5wkGWXFoUCJxYef0E6sb45_Y,31967
|
|
19
|
+
pip/_internal/commands/__init__.py,sha256=m3VffLjVOXGIR6utX9NXPxAHFzbYgH05IV01-zBlw8o,2297
|
|
20
|
+
pip/_internal/commands/check.py,sha256=J3lbjbwgMUS4dDsLnvDA4bJwtnAO-BDy2UA3qLXQPb4,1500
|
|
21
|
+
pip/_internal/commands/completion.py,sha256=wR1ZRBgHA1S7KnJWR6kGFL-Y1FnO1K0Xf_XBF3wUm_E,3018
|
|
22
|
+
pip/_internal/commands/configuration.py,sha256=BfeZEMSHgD4l754I2V00hS8ReEdutEGMcQaWKdtz2c0,7343
|
|
23
|
+
pip/_internal/commands/download.py,sha256=RLkyWbc9uw1iLGlR5KGPXgKXb1Wz6NM3kT9wUeQ89bM,9092
|
|
24
|
+
pip/_internal/commands/freeze.py,sha256=08R8n0lh-ZwD5lASiKJkKTkORFZSIHLvOSRznufWzRg,3320
|
|
25
|
+
pip/_internal/commands/hash.py,sha256=qKoCGvq6KuWrUFB63_1FGy4x2g044irk_ocC7lHafZM,1729
|
|
26
|
+
pip/_internal/commands/help.py,sha256=8frkEwpOOi7owyUIMyxN-r5EQkGxxOvOQ9aMCJmi9KA,1079
|
|
27
|
+
pip/_internal/commands/install.py,sha256=cSruC_d5Rgt0jp3W4UaaaA0MEy_LOz0KRNNHD_kOh0k,19608
|
|
28
|
+
pip/_internal/commands/list.py,sha256=jIlRIPNIcr6gIuBXkyw6RevBlEThmlVW2Tp8kH9UpcM,11957
|
|
29
|
+
pip/_internal/commands/search.py,sha256=DthDK8pP6jZBqCVB9cT6SRzAYMeO3orjLiy_VBQ34g8,4842
|
|
30
|
+
pip/_internal/commands/show.py,sha256=bQvIXwdGv3teH9mDS8xOhsMOi0G5shC5g0ec1Jen4GU,6378
|
|
31
|
+
pip/_internal/commands/uninstall.py,sha256=0kFt2ShaTEFGmtbbOId9HKzXOI2645rS8y8YK_3Pmq0,2786
|
|
32
|
+
pip/_internal/commands/wheel.py,sha256=hWfSsII65HD3ZkjZ8SOPYg2adD5rX241gt2BzcbBDxg,6986
|
|
33
|
+
pip/_internal/models/__init__.py,sha256=h9ecr0egfOgSwbvfj9VBln71JazHbu-uR_sUEYq5K-o,85
|
|
34
|
+
pip/_internal/models/index.py,sha256=k1Usst7adBcW9b_06IGsM8UqqdBdyxY1AZZfguQha3c,440
|
|
35
|
+
pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
+
pip/_internal/operations/check.py,sha256=X_-sP0QUNSknCEUqmKI2ZMfO1L9Igi6m24_V2H64zqU,3776
|
|
37
|
+
pip/_internal/operations/freeze.py,sha256=myl8xl9SwJowX-fUYjeP2vQ7y1Y7bWoNM9U0g46AATI,10277
|
|
38
|
+
pip/_internal/operations/prepare.py,sha256=QoAakgn70F4ipIiQ-qHeDQ7omP9-b0bas4lBM4cVESE,15438
|
|
39
|
+
pip/_internal/req/__init__.py,sha256=r8dLbzoGMf-kLQVmZD8w7Ekh7Qh8tbZMNsSQnk_agrg,2152
|
|
40
|
+
pip/_internal/req/req_file.py,sha256=TkrIqOaMok_8tNs3HPSDVmBW-Awdpj7mBhGlsRHIByA,12248
|
|
41
|
+
pip/_internal/req/req_install.py,sha256=jmPY2CB2dpkVWdl3ucTajTfIJBOMe80SeGZJju3qzLs,43930
|
|
42
|
+
pip/_internal/req/req_set.py,sha256=c-STvuL06rzHqOMJOovMinuWeT-7XZnl1XtdbSAi_6E,7268
|
|
43
|
+
pip/_internal/req/req_uninstall.py,sha256=5dOiMppROHiQ5bVO9ydLgOppqLpSpipL22IZvq8mZOk,17002
|
|
44
|
+
pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
+
pip/_internal/utils/appdirs.py,sha256=BRHuV2oKQwXqXxKn_mDADgadzDGOXRlL9IWQ8YePds8,9372
|
|
46
|
+
pip/_internal/utils/deprecation.py,sha256=nXr5A3qXJw9qw40zHd3sPqAEeuk1pNM7ujmjU_GA0ZM,2374
|
|
47
|
+
pip/_internal/utils/encoding.py,sha256=w-LGqMBuaXKmbiyfjrvkZPRlRMrcOwHwawcX4cUmZWA,1058
|
|
48
|
+
pip/_internal/utils/filesystem.py,sha256=_8Es0meQBRDb_56ViTGlHucXOhsXJh8J38QJglgm9Gg,937
|
|
49
|
+
pip/_internal/utils/glibc.py,sha256=TkIgCmg4VaYiN1764-9YBAPKOaHZyRTclwI-rYnx3VE,3088
|
|
50
|
+
pip/_internal/utils/hashes.py,sha256=fvTpLRakvChw5UbYerszdg3KK0KImwQWddZAHDmhnFI,2994
|
|
51
|
+
pip/_internal/utils/logging.py,sha256=5exO6tVvea_EsPk-SN6lawgbpmXopJDecYnt5AonGWs,3586
|
|
52
|
+
pip/_internal/utils/misc.py,sha256=VwQjWHOAA9MuD_dFQZ35TorMs7iNep1W68IURqyAsJQ,28053
|
|
53
|
+
pip/_internal/utils/outdated.py,sha256=4Gk5M1ciDGSW-teJe2sSO5bk_eGMLTR7YipX47-wllU,5951
|
|
54
|
+
pip/_internal/utils/packaging.py,sha256=EqCvwBiNqWvqNIbMYsOXKVCQWShjREN1ugQJFuJtMsk,2347
|
|
55
|
+
pip/_internal/utils/setuptools_build.py,sha256=HeJI9JPWldoZ8aznrqUDM8yajM6Cb4lWcP5a1-ITlZY,286
|
|
56
|
+
pip/_internal/utils/temp_dir.py,sha256=QQIQxk2JtywkkzIWZl6AgerRzBS8avWCrgqoNw3ZvzE,2697
|
|
57
|
+
pip/_internal/utils/typing.py,sha256=Qbt5MzIla2cXbfiqkgevVtj9iICLkG2Km_wVFUcdeGo,1144
|
|
58
|
+
pip/_internal/utils/ui.py,sha256=YejN0-Wnw-Wxrcncfuroo8gxzQxZ8D8UR-Yw3kM9ebY,14058
|
|
59
|
+
pip/_internal/vcs/__init__.py,sha256=DuVrznP2Byzvn-MQfJFMJq6J8wbO13djSGtl17CCUIw,15755
|
|
60
|
+
pip/_internal/vcs/bazaar.py,sha256=ns_yLoGvxfjZGLPB9EnduES29HgkdIUpD0PumZFFrys,3848
|
|
61
|
+
pip/_internal/vcs/git.py,sha256=wltK2rdQgmAH2fOLIYlZJKG020vkV_51E9-XoTxi_GU,11743
|
|
62
|
+
pip/_internal/vcs/mercurial.py,sha256=QLDVwNNqZBmFUehgqdnkmHXYuS1uM4Y-BhwIN-NZKxA,3708
|
|
63
|
+
pip/_internal/vcs/subversion.py,sha256=yDl4-9akhvT5vOikcyLIrG-id7dNu175slw8nlKNjaA,9826
|
|
64
|
+
pip/_vendor/__init__.py,sha256=WzUY8TjsL8huF2bvDmJ0jJaZZqHYFWBR59W-jIMhmZY,4841
|
|
65
|
+
pip/_vendor/appdirs.py,sha256=FP--W5qMHqF69_aVHkK86rahEMqjx9bGMthBtop4o7Q,25151
|
|
66
|
+
pip/_vendor/distro.py,sha256=3629Gq_vpInTGR9r3JOFYZe0NNXIYLR36EB1r7KKZWo,40565
|
|
67
|
+
pip/_vendor/ipaddress.py,sha256=pQLwJp-Y6fejIsVhu4AtzGb0sWT9VQ3IJ6CVHc0xiLQ,82271
|
|
68
|
+
pip/_vendor/pyparsing.py,sha256=lVzkkak4qOnUwe9UdXqAh38yMKQ_JJir3cyvWC3-4Co,231068
|
|
69
|
+
pip/_vendor/retrying.py,sha256=LfbAQSee7r9F4SHbBcI1OBu7OLSDDr04Qsw9zkuC0Jw,10239
|
|
70
|
+
pip/_vendor/six.py,sha256=AlC1P9p2M-P18p0YMxuf2K9ZUOJDlDTV7XOT4j-UdE0,31779
|
|
71
|
+
pip/_vendor/cachecontrol/__init__.py,sha256=uceTzGAT6-yqquMtT1VM0v442Oepfjh3UayG2elwiTA,313
|
|
72
|
+
pip/_vendor/cachecontrol/_cmd.py,sha256=wmV963nAqd798iZV4mAOFVflVMb24PQyor7yaUY18-8,1380
|
|
73
|
+
pip/_vendor/cachecontrol/adapter.py,sha256=mjwrhPJ93xdX71vrNfbvuQ1qHMsuU6moqw6z6l7USrw,5156
|
|
74
|
+
pip/_vendor/cachecontrol/cache.py,sha256=zoR7ySiJAw1fErdOCFAiMXTT8Ym4_w-qYd5sxmWbgIM,829
|
|
75
|
+
pip/_vendor/cachecontrol/compat.py,sha256=3BisP29GBHAo0QxUrbpBsMeXSp8YzKQcGHwEW7VYU2U,724
|
|
76
|
+
pip/_vendor/cachecontrol/controller.py,sha256=kPPbgL2TSCSX8D9PNKpKaRpYiBobf3e4GtICbPHKnM4,14232
|
|
77
|
+
pip/_vendor/cachecontrol/filewrapper.py,sha256=VHFoFNSCKbMSYMEoFqzq2Fb1QJ--n8S-zf2vPHIm4z0,2609
|
|
78
|
+
pip/_vendor/cachecontrol/heuristics.py,sha256=ZVGTWaBSoERb4v7b7_72RCdWgcJ2NhH-8UJxKWuWQL8,4282
|
|
79
|
+
pip/_vendor/cachecontrol/serialize.py,sha256=tENdPZInXRYmFwtmMg80WKTTTfhqYQSBogHzwPfbCnM,7249
|
|
80
|
+
pip/_vendor/cachecontrol/wrapper.py,sha256=T0xfnMREVtxouHnjZ3Tutgni3dh7KZUwkCgF5lnxVqM,781
|
|
81
|
+
pip/_vendor/cachecontrol/caches/__init__.py,sha256=rN8Ox5dd2ucPtgkybgz77XfTTUL4HFTO2-n2ACK2q3E,88
|
|
82
|
+
pip/_vendor/cachecontrol/caches/file_cache.py,sha256=XQ9Jx6toKoWVyvX8gVQy2TO_RaxBZ84lItIcaxgUeBA,4202
|
|
83
|
+
pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=KhAFz-jv40vlQz8wOJFjH_4ZkOCGZ57ltrS6a55V30Y,1145
|
|
84
|
+
pip/_vendor/certifi/__init__.py,sha256=y0h3xfIlqLlYBlOUNZX0VVt8Kim1ZOLnNjjnW5TsLVI,66
|
|
85
|
+
pip/_vendor/certifi/__main__.py,sha256=1KEP4dm8_1Xrt08ozOzq9-Ibu3vRX4Ix5qJhUphBz_8,43
|
|
86
|
+
pip/_vendor/certifi/cacert.pem,sha256=7CEXfLHxDwvDpwVu0y_2lfJYk63cU-KUKI_DL1Lq8Uo,271088
|
|
87
|
+
pip/_vendor/certifi/core.py,sha256=ZwgmmJFMPi1askRkL5S7Rt4SvZnK34AQDItgsuVDHaY,873
|
|
88
|
+
pip/_vendor/chardet/__init__.py,sha256=4IALi1GamO36WXX5HGuw8nq5kZAUvbbz_mfZ3o4Vi6Q,1598
|
|
89
|
+
pip/_vendor/chardet/big5freq.py,sha256=dwRzRlsGp3Zgr1JQSSSwnxvyaZ7_q-5kuPfCVMuy4to,31640
|
|
90
|
+
pip/_vendor/chardet/big5prober.py,sha256=TpmdoNfRtnQ7x9Q_p-a1CHaG-ok2mbisN5e9UHAtOiY,1804
|
|
91
|
+
pip/_vendor/chardet/chardistribution.py,sha256=NzboAhfS6GODy_Tp6BkmUOL4NuxwTVfdVFcKA9bdUAo,9644
|
|
92
|
+
pip/_vendor/chardet/charsetgroupprober.py,sha256=ft0AbLXJbzf4H8ZFQGs9JruhyIYNbcCayiOKt7keX4U,3893
|
|
93
|
+
pip/_vendor/chardet/charsetprober.py,sha256=kk5-m0VdjqzbEhPRkBZ386R3fBQo3DxsBrdL-WFyk1o,5255
|
|
94
|
+
pip/_vendor/chardet/codingstatemachine.py,sha256=qz9ZwK1q4mZ4s4zDRbyXu5KaGunYbk7g1Z7fqfb4mA4,3678
|
|
95
|
+
pip/_vendor/chardet/compat.py,sha256=fzrojuU_eJuG1DGfZUqZC0H-13rCKdB0Dp4Msry45Kk,1168
|
|
96
|
+
pip/_vendor/chardet/cp949prober.py,sha256=5NnMVUcel3jDY3w8ljD0cXyj2lcrvdagxOVE1jxl7xc,1904
|
|
97
|
+
pip/_vendor/chardet/enums.py,sha256=3H_EIVP-VUYOdKqe2xmYdyooEDSLqS8sACMbn_3oejU,1737
|
|
98
|
+
pip/_vendor/chardet/escprober.py,sha256=5MrTnVtZGEt3ssnY-lOXmOo3JY-CIqz9ruG3KjDpkbY,4051
|
|
99
|
+
pip/_vendor/chardet/escsm.py,sha256=xQbwmM3Ieuskg-Aohyc6-bSfg3vsY0tx2TEKLDoVZGg,10756
|
|
100
|
+
pip/_vendor/chardet/eucjpprober.py,sha256=PHumemJS19xMhDR4xPrsvxMfyBfsb297kVWmYz6zgy8,3841
|
|
101
|
+
pip/_vendor/chardet/euckrfreq.py,sha256=MrLrIWMtlaDI0LYt-MM3MougBbLtSWHs6kvZx0VasIM,13741
|
|
102
|
+
pip/_vendor/chardet/euckrprober.py,sha256=VbiOn7_id7mL9Q5GdeV0Ze3w5fG0nRCpUkEzeR-bnnY,1795
|
|
103
|
+
pip/_vendor/chardet/euctwfreq.py,sha256=ZPBIHZDwNknGf7m6r4xGH8bX0W38qBpnTwVVv1QHw_M,32008
|
|
104
|
+
pip/_vendor/chardet/euctwprober.py,sha256=hlUyGKUxzOPfBxCcyUcvRZSxgkLuvRoDU9wejp6YMiM,1793
|
|
105
|
+
pip/_vendor/chardet/gb2312freq.py,sha256=aLHs-2GS8vmSM2ljyoWWgeVq_xRRcS_gN7ykpIiV43A,20998
|
|
106
|
+
pip/_vendor/chardet/gb2312prober.py,sha256=msVbrDFcrJRE_XvsyETiqbTGfvdFhVIEZ2zBd-OENaE,1800
|
|
107
|
+
pip/_vendor/chardet/hebrewprober.py,sha256=r81LqgKb24ZbvOmfi95MzItUxx7bkrjJR1ppkj5rvZw,14130
|
|
108
|
+
pip/_vendor/chardet/jisfreq.py,sha256=vrqCR4CmwownBVXJ3Hh_gsfiDnIHOELbcNmTyC6Jx3w,26102
|
|
109
|
+
pip/_vendor/chardet/jpcntx.py,sha256=Cn4cypo2y8CpqCan-zsdfYdEgXkRCnsqQoYaCu6FRjI,19876
|
|
110
|
+
pip/_vendor/chardet/langbulgarianmodel.py,sha256=5lclhylDVAOLeJHlnOm69zrxCLkyDMjQIQU6VBQZDXM,13067
|
|
111
|
+
pip/_vendor/chardet/langcyrillicmodel.py,sha256=UrFtQKuen6p_BkTB--vJ0gL70i0I68heaU7dyvocIBo,18281
|
|
112
|
+
pip/_vendor/chardet/langgreekmodel.py,sha256=qC6d4lhMPrMvg0-4jJjcbq4mAITzg13nTcQcSHPgNLQ,12913
|
|
113
|
+
pip/_vendor/chardet/langhebrewmodel.py,sha256=NOVTSRijKrUxo-n5Ums6HIbnG0rVP6cz6DfgqQ8x5JY,11545
|
|
114
|
+
pip/_vendor/chardet/langhungarianmodel.py,sha256=ODhhGyhBUyB-Idb-PPKMdOx8j6D-i08Uih3tUMCGYEU,12817
|
|
115
|
+
pip/_vendor/chardet/langthaimodel.py,sha256=konL5O3RkhYg8eP__wo2KS_8b5xW-NSkC2YKrHdEyoA,11489
|
|
116
|
+
pip/_vendor/chardet/langturkishmodel.py,sha256=zuXKW-cDnX07Pfxe_uGDg4GRW2atWo0-Y3S9gLW5tJs,11295
|
|
117
|
+
pip/_vendor/chardet/latin1prober.py,sha256=s1SFkEFY2NGe2_9bgX2MhOmyM_U_qSd_jVSdkdSgZxs,5515
|
|
118
|
+
pip/_vendor/chardet/mbcharsetprober.py,sha256=hzFVD-brxTAVLnTAkDqa1ztd6RwGGwb5oAdvhj1-lE8,3504
|
|
119
|
+
pip/_vendor/chardet/mbcsgroupprober.py,sha256=DlT-X7KRUl5y3SWJNqF1NXqvkjVc47jPKjJ2j4KVs3A,2066
|
|
120
|
+
pip/_vendor/chardet/mbcssm.py,sha256=LGUDh1VB61rWsZB4QlJBzaCjI2PUEUgbBc91gPlX4DQ,26053
|
|
121
|
+
pip/_vendor/chardet/sbcharsetprober.py,sha256=Mo5ei_pFbGUi2iU_mu_z7nhvoT57BAz4ArB2sU-5Brc,5789
|
|
122
|
+
pip/_vendor/chardet/sbcsgroupprober.py,sha256=8QJNorUc5Kf7qY5kA0wFx6VjehbF9czir_YwqnPAFKM,3619
|
|
123
|
+
pip/_vendor/chardet/sjisprober.py,sha256=1WGev_SSHpa7AVXmM0DIONl1OvyKc8mdydUNaKtGGNI,3866
|
|
124
|
+
pip/_vendor/chardet/universaldetector.py,sha256=QWmEZZ5YGLjgW0IHL99GH8sAz0-Ss0_hlMZvaiyWVdY,12771
|
|
125
|
+
pip/_vendor/chardet/utf8prober.py,sha256=rGwn69WfIvmibp0sWvYuH_TPoXs7zzwKHTX79Ojbr9o,2848
|
|
126
|
+
pip/_vendor/chardet/version.py,sha256=tlfcQ3YlTcJAVNI1yBvSZRc0x89mVEBc3KzvRNlNLYU,251
|
|
127
|
+
pip/_vendor/chardet/cli/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
128
|
+
pip/_vendor/chardet/cli/chardetect.py,sha256=jRgVc5dO4Q1XEu8U4hW1JgF7jSMpKpFSbcNUerja-tc,2859
|
|
129
|
+
pip/_vendor/colorama/__init__.py,sha256=whcPsYXKzF0-MPCAz-vZ6Zd47N3WsHRyiAL1fKXqywk,247
|
|
130
|
+
pip/_vendor/colorama/ansi.py,sha256=ch3DG2AkcsfuoL9pbb2wWbDSPa9XKdJOG2hcvWlcoRo,2626
|
|
131
|
+
pip/_vendor/colorama/ansitowin32.py,sha256=JPr6ygKbsdEf6kiD451CKNmsCv5mynro0wvqx3MVEdE,9904
|
|
132
|
+
pip/_vendor/colorama/initialise.py,sha256=RoreuRuUDL2tOM_9lgS2jCwTe_7MJgivNnKBqSqOWH8,1999
|
|
133
|
+
pip/_vendor/colorama/win32.py,sha256=VKw0bstCPxo8cuzuzqd8rwcSAqsg-XGTQhjQ-i2yLYg,5582
|
|
134
|
+
pip/_vendor/colorama/winterm.py,sha256=HLWnoOYgZoV0k3ierZVLjalxIAnnKRZOpMYdnw1mJyY,6452
|
|
135
|
+
pip/_vendor/distlib/__init__.py,sha256=FHCknWdtcsBeapATZCjtHfCLBvhDsJiLVNKFt2fLDTo,604
|
|
136
|
+
pip/_vendor/distlib/compat.py,sha256=RBW9AzyzqbFxPnfIs6iQZoVZ6oZbsvU9I4115ECjc6E,42361
|
|
137
|
+
pip/_vendor/distlib/database.py,sha256=uMGFxyur6v2Zww5gZBV1MdX1jqtOvWZbGBPb5fTMTu4,51374
|
|
138
|
+
pip/_vendor/distlib/index.py,sha256=e7NL77TofD_nGakAUpuGEYBZ0mQrIFCwlk6O9NYNGgc,21589
|
|
139
|
+
pip/_vendor/distlib/locators.py,sha256=K8hqFhJEieZStyRADpuUdogxoL2tgeQpnKo1Sxz94wo,52949
|
|
140
|
+
pip/_vendor/distlib/manifest.py,sha256=0TlGw5ZyFp8wxr_GJz7tAAXGYwUJvceMIOsh9ydAXpM,15204
|
|
141
|
+
pip/_vendor/distlib/markers.py,sha256=k4Fx6LHfaIaX1eOIoaWK_-o-zE8zoT5rXwb6mbnLoXk,4518
|
|
142
|
+
pip/_vendor/distlib/metadata.py,sha256=qVXbauCtlfq-mMJ7Lpv7y4g6Jf4H2DsXp1ZtR48hK6c,39903
|
|
143
|
+
pip/_vendor/distlib/resources.py,sha256=5Xn4ehSMQKsu6kf4gxIsMvy668RRvtL0XwUPytyviPE,11121
|
|
144
|
+
pip/_vendor/distlib/scripts.py,sha256=HQWiNeLsOTvlPV_oXYWWEmcYkB2JWUfd_uvFwsdUs0E,17000
|
|
145
|
+
pip/_vendor/distlib/t32.exe,sha256=uNEroRjJFJbYB7X2VVOeqrlDXWRPylhPgnz3DtSKcfk,92672
|
|
146
|
+
pip/_vendor/distlib/t64.exe,sha256=VK17XGM5py0HgqYoZB5fLGcaYz-81oQdzbZkcx-tQK0,102400
|
|
147
|
+
pip/_vendor/distlib/util.py,sha256=001EgqgtSL4OyKcBUEuXw2MHWhvywa-dok37oco2meE,61249
|
|
148
|
+
pip/_vendor/distlib/version.py,sha256=tFjbWEAxyeCDw0dWQDJsWsu9EzegUI5Yhm3IBu2x8hY,24127
|
|
149
|
+
pip/_vendor/distlib/w32.exe,sha256=68YCP5lCr-vxC2xitslh0fJ9eaQcooS3fZYBdCs_w20,89088
|
|
150
|
+
pip/_vendor/distlib/w64.exe,sha256=YFra3QKJt6CJhnna3zQ-hYyTyMkLceuU_FQu0lCgaMA,99328
|
|
151
|
+
pip/_vendor/distlib/wheel.py,sha256=UjFZFgLgwR93x2w94eT5sdE0RlFysONrqTxxEabvAaA,40490
|
|
152
|
+
pip/_vendor/distlib/_backport/__init__.py,sha256=XkACqtjaFfFn1QQBFDNxSqhMva0LqXeeh6H3fVwwLQ4,280
|
|
153
|
+
pip/_vendor/distlib/_backport/misc.py,sha256=focjmI7975W3LgEtiNC99lvxohfZdsNSLTakOcPNShs,1012
|
|
154
|
+
pip/_vendor/distlib/_backport/shutil.py,sha256=5fh9dIYeC0kn_dJ0aPmf9LD-KBIrb5Ls8BLvpEQFanY,26408
|
|
155
|
+
pip/_vendor/distlib/_backport/sysconfig.cfg,sha256=LoipPkR2PfCKC7JUQBGxp6OFVlWIiWBXT-rNuzv8acU,2701
|
|
156
|
+
pip/_vendor/distlib/_backport/sysconfig.py,sha256=Aim_2sc3NKNpn2jhcs11eYutzCaHoP0mprxZRw7901Q,27752
|
|
157
|
+
pip/_vendor/distlib/_backport/tarfile.py,sha256=fzwGLsCdTmO8uzoHjyjSgu4-srrDQEAcw4jNKUfvQH0,95235
|
|
158
|
+
pip/_vendor/html5lib/__init__.py,sha256=I6pIlbwpm1kWyTxyN75xY1k39xbQbB9594RG482qMkw,1197
|
|
159
|
+
pip/_vendor/html5lib/_ihatexml.py,sha256=57rnJVn6e6coDPaWi2mPaOx90vZBbeczq2WhvFswNjc,16993
|
|
160
|
+
pip/_vendor/html5lib/_inputstream.py,sha256=FWkYxymJwSdbgvSD30q7A_PUF8Ux9ieL7XrYyNa7JV4,33475
|
|
161
|
+
pip/_vendor/html5lib/_tokenizer.py,sha256=CC6FQW_g5TYQ3x0_Qv7LnX2EN5bDkyCtnbdHRFNpcfI,78301
|
|
162
|
+
pip/_vendor/html5lib/_utils.py,sha256=iDaIb_kEGHMmStFSqI7-VNMWFeJ2M_s5RRDTi0x3xV0,4139
|
|
163
|
+
pip/_vendor/html5lib/constants.py,sha256=mch2PjgQKA1FDLxUsE3hBSnehEiK7CFJqLX90RDoeUM,86465
|
|
164
|
+
pip/_vendor/html5lib/html5parser.py,sha256=a-ma5DCah-z2FAMv5Kitpvv8VTEl2DmfWQMEBhCAN2M,121754
|
|
165
|
+
pip/_vendor/html5lib/serializer.py,sha256=lo3hpkSIelyAIpYUvV9942iVtTBvOBFn44kOY5Aki40,16167
|
|
166
|
+
pip/_vendor/html5lib/_trie/__init__.py,sha256=d3JrXCIMoiedbsVrNTzuc9F1bcuxW3u9Fk2k_vYsqgE,303
|
|
167
|
+
pip/_vendor/html5lib/_trie/_base.py,sha256=zBZ77JleT-kocEBTgqPAsABXr2bWyTMmc-qFfDLh6zM,967
|
|
168
|
+
pip/_vendor/html5lib/_trie/datrie.py,sha256=HqcJwB9Qd0n1GTg2diREOpricdMdGy_x7AEMZ7fZ494,1222
|
|
169
|
+
pip/_vendor/html5lib/_trie/py.py,sha256=LmuYcbypKw-aMLcT0-IY6WewATGzg1QRkmyd8hTBQeY,1842
|
|
170
|
+
pip/_vendor/html5lib/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
171
|
+
pip/_vendor/html5lib/filters/alphabeticalattributes.py,sha256=0TV6VWJzhNkcLFiR7BNZUJsTJgAEEyZ02in6-PuL2gU,948
|
|
172
|
+
pip/_vendor/html5lib/filters/base.py,sha256=6D2t423hbOLtjnvAAOrs1mWX1vsabMLBrWQF67ITPho,298
|
|
173
|
+
pip/_vendor/html5lib/filters/inject_meta_charset.py,sha256=J-W5X3LyosH1sUipiHU1x-2ocd7g9JSudpIek_QlCUU,3018
|
|
174
|
+
pip/_vendor/html5lib/filters/lint.py,sha256=O6sK29HXXW02Nv-EIEOfGvdQMuXxWvBePu2sQ2ecbJc,3736
|
|
175
|
+
pip/_vendor/html5lib/filters/optionaltags.py,sha256=IVHcJ35kr6_MYBqahFMIK-Gel-ALLUk6Wk9X-or_yXk,10795
|
|
176
|
+
pip/_vendor/html5lib/filters/sanitizer.py,sha256=UKpPV0sataiAlCrJqhO_nsVJklP95_ZeV9F-NWFhJl8,27144
|
|
177
|
+
pip/_vendor/html5lib/filters/whitespace.py,sha256=bCC0mMQZicbq8HCg67pip_oScN5Fz_KkkvldfE137Kw,1252
|
|
178
|
+
pip/_vendor/html5lib/treeadapters/__init__.py,sha256=76InX2oJAx-C4rGAJziZsoE_CHI8_3thl6TeMgP-ypk,709
|
|
179
|
+
pip/_vendor/html5lib/treeadapters/genshi.py,sha256=nQHNa4Hu0IMpu4bqHbJJS3_Cd1pKXgDO1pgMZ6gADDg,1769
|
|
180
|
+
pip/_vendor/html5lib/treeadapters/sax.py,sha256=PAmV6NG9BSpfMHUY72bDbXwAe6Q2tPn1BC2yAD-K1G0,1826
|
|
181
|
+
pip/_vendor/html5lib/treebuilders/__init__.py,sha256=zfrXDjeqDo2M7cJFax6hRJs70Az4pfHFiZbuLOZ9YE4,3680
|
|
182
|
+
pip/_vendor/html5lib/treebuilders/base.py,sha256=0eFyXVYMz-T5N2CvlteLdu9oFi8Vr_fzHh_sVlf1bn0,14996
|
|
183
|
+
pip/_vendor/html5lib/treebuilders/dom.py,sha256=t8MSFOSsFZwZuBpziGKBb-lmiqOUHXoAZx35qG4mG7Q,9071
|
|
184
|
+
pip/_vendor/html5lib/treebuilders/etree.py,sha256=7h-CRMmkQ4V2jlcJvPYfBFeYyBZ1zViTxyqyZ7isu5Y,13104
|
|
185
|
+
pip/_vendor/html5lib/treebuilders/etree_lxml.py,sha256=umqJTOUZWm7r0s-YtD5q6SkSqx0GobwVKQoVQf9OYaQ,14488
|
|
186
|
+
pip/_vendor/html5lib/treewalkers/__init__.py,sha256=GmI7wgPftMdv1QD7zgnQ9B7Gl-uq6hwE4A79zkxj7gw,5868
|
|
187
|
+
pip/_vendor/html5lib/treewalkers/base.py,sha256=g-cLq7VStBtpZZZ1v_Tbwp3GhJjQ2oG5njgeHVhAaXE,7728
|
|
188
|
+
pip/_vendor/html5lib/treewalkers/dom.py,sha256=fBJht3gn5a6y1WN2KE9gsUru158yTQ0KikT3vOM7Xc4,1456
|
|
189
|
+
pip/_vendor/html5lib/treewalkers/etree.py,sha256=VuzZ0UoL2bBvTqhsFIDzUUaZ4zVtm5TLpA2YZXjeoJE,4680
|
|
190
|
+
pip/_vendor/html5lib/treewalkers/etree_lxml.py,sha256=tfNrv3kswPqAaggOB-2dlb-1qCwtUIR80gNDrysrQYI,6522
|
|
191
|
+
pip/_vendor/html5lib/treewalkers/genshi.py,sha256=P_2Tnc2GkbWJfuodXN9oYIg6kN9E26aWXXe9iL0_eX4,2378
|
|
192
|
+
pip/_vendor/idna/__init__.py,sha256=_0n4R0OXufy1HIcXEOxgJCUCHGDqtazhMdYBVIXc320,60
|
|
193
|
+
pip/_vendor/idna/codec.py,sha256=NDQdy95NUcd00WV5Qh0QOpZvYJzIpaMVb9ME0hKuQ80,3417
|
|
194
|
+
pip/_vendor/idna/compat.py,sha256=QPaSi9bWqUO7OAXmC0brJFYc1zweHI3JnA7HiM2BlQA,244
|
|
195
|
+
pip/_vendor/idna/core.py,sha256=h71HqE4Uatoa0tuv4ZLcGQkGsiio2YFM5eMoFP49Ucw,11777
|
|
196
|
+
pip/_vendor/idna/idnadata.py,sha256=QzJoJWVfKZz9lmbSL352eQ-aAz8wWV1Mmle_xpHWwQo,34584
|
|
197
|
+
pip/_vendor/idna/intranges.py,sha256=K5VTgP3Cn6UOQwinqj0O2stySFQoTb8xrLFKyg-hulg,1802
|
|
198
|
+
pip/_vendor/idna/package_data.py,sha256=8oZdkdEfFSvy0GFwp7FEW2c8LYizacCoMxJ1kOfiaK4,23
|
|
199
|
+
pip/_vendor/idna/uts46data.py,sha256=NiMrqRILhA-TY24j9FSrKHTbAImnH6XNYjr3e3CuK28,192578
|
|
200
|
+
pip/_vendor/lockfile/__init__.py,sha256=0L3coX3n75LdlVoaqx7miFcPQu8QkK96tNBj3l3G0To,9718
|
|
201
|
+
pip/_vendor/lockfile/linklockfile.py,sha256=KSuiHUZTLHZA21uINfNp6u3hmf2oPbZICJqMtBE5psQ,2725
|
|
202
|
+
pip/_vendor/lockfile/mkdirlockfile.py,sha256=fhUNnWvRrWFuUoFTAR_u6rKUPD3LcnC8gsNAVPOuP_A,3180
|
|
203
|
+
pip/_vendor/lockfile/pidlockfile.py,sha256=T4s8zw9w50AcRIP24iNQDMW72lqwOemY3WjzxObi3RU,6280
|
|
204
|
+
pip/_vendor/lockfile/sqlitelockfile.py,sha256=EsQuCc7jY2OkxH_VtTcVvMmh0WqM4t5THW8YTAKwMQE,5662
|
|
205
|
+
pip/_vendor/lockfile/symlinklockfile.py,sha256=z1OZoyjGaSRhHdvY1P3fnFJnMMzlAkVUqtuMXS9r-58,2686
|
|
206
|
+
pip/_vendor/msgpack/__init__.py,sha256=zR7vdPYrBXCdepgdVJ2QfmRZRSIY6mSgWR80n69hDas,1743
|
|
207
|
+
pip/_vendor/msgpack/_version.py,sha256=POm-iSTNxNW5sad41qA2730FUnysX8YK355itzer7W4,21
|
|
208
|
+
pip/_vendor/msgpack/exceptions.py,sha256=RyRn_K51HUOdHHqj009FJX1GNG53zXXgDJoKP2VHj4I,1097
|
|
209
|
+
pip/_vendor/msgpack/fallback.py,sha256=16kRxOjgeoLfQXX9BieK9CU3p_mun0rh-JPMY0qiJkk,36968
|
|
210
|
+
pip/_vendor/packaging/__about__.py,sha256=odsXiEJE2jtkyh_shxz3_7OatrWwz-_gIGamccRsga4,741
|
|
211
|
+
pip/_vendor/packaging/__init__.py,sha256=C3OqRc9ZY_RX9Xqn9bEUNGPWZfHYn2jma09g56Vm5zc,527
|
|
212
|
+
pip/_vendor/packaging/_compat.py,sha256=SGlGKDzqD3XlaWy8KpxqFpno7iL89C2DXbbS74KTFtY,890
|
|
213
|
+
pip/_vendor/packaging/_structures.py,sha256=fUkh4B9_x5gvKZ2upn4d6OWyaknJHS5MADtTB6NvxYY,1488
|
|
214
|
+
pip/_vendor/packaging/markers.py,sha256=oWCQ3Gnu_1i2brmgB9IjRuLX7BR0FXW5T4LAVdE590w,8522
|
|
215
|
+
pip/_vendor/packaging/requirements.py,sha256=NjxC5jc8R-REVY9b7wKUVkfEvI6WnHZXUGuA2BX0aNM,4571
|
|
216
|
+
pip/_vendor/packaging/specifiers.py,sha256=IuuvPJWMU5P8BF39wP1YEHqmreWOVT6jpv7ktpAJC6E,28800
|
|
217
|
+
pip/_vendor/packaging/utils.py,sha256=NWMGNYzo1QNuzvCq3aSJrTNvZRya6pWIjwJLbN6OHOI,1643
|
|
218
|
+
pip/_vendor/packaging/version.py,sha256=n1XXikr4f8Qhn60lLZf7IBjdLRXFC3RMCWVSMKdMX1c,12660
|
|
219
|
+
pip/_vendor/pkg_resources/__init__.py,sha256=pHrCKMoBv2wg1sJnvFoA5OLo-Oy8Vy2RWaPzrLUp9vA,106604
|
|
220
|
+
pip/_vendor/pkg_resources/py31compat.py,sha256=Z-1_GSMguagCRvkGzDS-JCl_WVMkKsXss8ZTujmDu7Q,622
|
|
221
|
+
pip/_vendor/progress/__init__.py,sha256=xAeSvVj-sqgxs5EQ9QQrc9Bi8dRSrrgkO9kKH1cU7zc,3315
|
|
222
|
+
pip/_vendor/progress/bar.py,sha256=mTafSoOmjwpjoPbMp1iUGpNb-39esXByST7J2W8VyV4,2924
|
|
223
|
+
pip/_vendor/progress/counter.py,sha256=JAtmG0NSbHwcfUoC6qP_MqfnEcPRgoO-qD1c1PJDIHM,1576
|
|
224
|
+
pip/_vendor/progress/helpers.py,sha256=kzd7NtwigwIqvhYQvtTh8mSQUiFZ0bkIWh0WHJ7fQPY,2945
|
|
225
|
+
pip/_vendor/progress/spinner.py,sha256=yrYKBBsswArohmg7esPBKFiPvGsisEa6DJqrEYYuHuA,1483
|
|
226
|
+
pip/_vendor/pytoml/__init__.py,sha256=PLFK235q-7F9Mmelsr_7IcAIWebDo3W9Hq_T1Vz54KA,95
|
|
227
|
+
pip/_vendor/pytoml/core.py,sha256=W8BqMPwcme5HkPBtxkQz9VJBvhkrELje94Dh1iUfFaI,522
|
|
228
|
+
pip/_vendor/pytoml/parser.py,sha256=awre-bIQXv0-gUYWzHaGO2diB7b3JNoH9ryJR3gh498,10916
|
|
229
|
+
pip/_vendor/pytoml/writer.py,sha256=nf-DAzJl_-rXx2-ElWbUyOqyz5vhe8U1nfVzw9J5N2s,3942
|
|
230
|
+
pip/_vendor/requests/__init__.py,sha256=VaN258Yd3AsoxqDFQPEdD7fbQxWmHJ-QJDKnVpaWBlc,3765
|
|
231
|
+
pip/_vendor/requests/__version__.py,sha256=55GrYwgz00HNchocTGNgu0C45FFSIGvt6bG03JxdI54,450
|
|
232
|
+
pip/_vendor/requests/_internal_utils.py,sha256=zDALdxFfs4pAp4CME_TTw2rGyYR2EGBpSehYHgfn8o0,1138
|
|
233
|
+
pip/_vendor/requests/adapters.py,sha256=v99RMxr14jFWuJDjJx1wFy48QLVyatYVn0h6z_7h9ss,21541
|
|
234
|
+
pip/_vendor/requests/api.py,sha256=MLNvyq433Usebv0qJ3iqPyWw7EaRXvP0AA3EhP69u6Q,6389
|
|
235
|
+
pip/_vendor/requests/auth.py,sha256=oiFJBIY2TLaRS9Q5tqhX864xwSg700d0NqjHe4PXL6M,10021
|
|
236
|
+
pip/_vendor/requests/certs.py,sha256=fFBPJjnP90gWELetFYPbzrsfZgSZopej7XhlkrnVVec,483
|
|
237
|
+
pip/_vendor/requests/compat.py,sha256=RXnp8IWkk9x0WI01rpmDgbRke38K4C2m07gKE3_o-Qo,1943
|
|
238
|
+
pip/_vendor/requests/cookies.py,sha256=RZsnbFuCZbg9_x2kUqG-LxE6ag_o3P7qutTGDPJ2tXY,18750
|
|
239
|
+
pip/_vendor/requests/exceptions.py,sha256=MgjuNuYzlEaQSr0gYcZsrHOQS94DioiN-tNjJetz90g,3237
|
|
240
|
+
pip/_vendor/requests/help.py,sha256=UzahIUhIPZsrHUdN7s7i6npseJyBkFhk14Rniid4yS0,3787
|
|
241
|
+
pip/_vendor/requests/hooks.py,sha256=O6Bq6nBlEOvESY9vNYI8XxPZcr8j7rpW63TaIGYS6ZE,801
|
|
242
|
+
pip/_vendor/requests/models.py,sha256=KcMA_uvBv1ob02OUHZk-HEpbo-G0JUWn6hr9GIs9nbg,35016
|
|
243
|
+
pip/_vendor/requests/packages.py,sha256=ry2VlKGoCDdr8ZJyNCXxDcAF1HfENfmoylCK-_VzXh0,711
|
|
244
|
+
pip/_vendor/requests/sessions.py,sha256=YLbQOFObuQWJ8uJGgncMsYWcBqueRGWqaSxl8qiLK3I,28283
|
|
245
|
+
pip/_vendor/requests/status_codes.py,sha256=qcAG-f5Aty7LBfAIetNch3iSFxy-lHNnpxjK089KwaI,3414
|
|
246
|
+
pip/_vendor/requests/structures.py,sha256=fyd9UjYd61TU-xNlsIzswA6TA0hFbWQz4RLhPnhXwh0,3117
|
|
247
|
+
pip/_vendor/requests/utils.py,sha256=tRCh5BKG0mV_EmRe-9apaMLvP6LLmyZt6KGfpRvmnQY,28556
|
|
248
|
+
pip/_vendor/urllib3/__init__.py,sha256=eUbFXyueA6UDT6UhLW4bKRzwwUMAMij3ngS_-1YyIyk,2950
|
|
249
|
+
pip/_vendor/urllib3/_collections.py,sha256=SOoOxhnf3qV7bjT8euFfaf0XmGG7D9TDMt_0K1WyfKo,10523
|
|
250
|
+
pip/_vendor/urllib3/connection.py,sha256=s5mL_MPFMgVm0p12dmPSEB3k6wNDqJjURvXVBKtAatk,13376
|
|
251
|
+
pip/_vendor/urllib3/connectionpool.py,sha256=FCbqrfrpOwxUGSb1Vb5MT9__t_faupuOzap6RGz2YNY,36263
|
|
252
|
+
pip/_vendor/urllib3/exceptions.py,sha256=Thyo48MhmG_I3N7pYlFklWrScB3BL_JaWqOdE_TTw2w,6849
|
|
253
|
+
pip/_vendor/urllib3/fields.py,sha256=Z4nrtz2cAM-CoOFzeiapbEUhWQb6UF27mLlMZ9ixvjo,6121
|
|
254
|
+
pip/_vendor/urllib3/filepost.py,sha256=LADqnU5Cv7kE-IbXHshOL8w9ELTB9T3v7BTOHPs6Hzk,2415
|
|
255
|
+
pip/_vendor/urllib3/poolmanager.py,sha256=jbIvksgTNHsFsppt7Gc3ONaodf1HbeYgw2hluocBiak,16785
|
|
256
|
+
pip/_vendor/urllib3/request.py,sha256=igm_4K9Pl5m4s4UDTZhykIEiCH1XJjwwCM7utw-pldE,6094
|
|
257
|
+
pip/_vendor/urllib3/response.py,sha256=Au8uQnlOaxnmCDE0xqjGs0c225ctF6A4q9-sh-Fercc,23529
|
|
258
|
+
pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
259
|
+
pip/_vendor/urllib3/contrib/appengine.py,sha256=kxXiAF8woZVVw4UoeDueqZTzQaFuxZAE9vcUhL2DX3o,11185
|
|
260
|
+
pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=YPml98tDEed6IB4zJinHz9s8Pml_tQwET3MMQQJlMvY,4590
|
|
261
|
+
pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=_eNGwUSOGQ0gH42vKKzbXH6lSNVR0WdlGjw6_CYqW-Q,15826
|
|
262
|
+
pip/_vendor/urllib3/contrib/securetransport.py,sha256=2kMhRPWPSMHW1LMF3cNlP5Bma25ang52aLc5G4Dqsps,31311
|
|
263
|
+
pip/_vendor/urllib3/contrib/socks.py,sha256=TFbwYnvVqcYEQpryNJUE21O58a64wo1eFni2U-AO42A,6383
|
|
264
|
+
pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
265
|
+
pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=lBmVv2L6jPrkcSSB7HZhTdpCKWeabkFbOdPkauPIk0g,18153
|
|
266
|
+
pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=enHnjmNdGsbVIELgK-vYnqVZwnszZE8srZU0_SHf74Y,12405
|
|
267
|
+
pip/_vendor/urllib3/packages/__init__.py,sha256=gKFqcXJ8LRVrzvIrDp1NtEG0C3G5x5k9BDaJy_ZHrWM,114
|
|
268
|
+
pip/_vendor/urllib3/packages/ordered_dict.py,sha256=dbnZZ3wH-RWx9SSvCCmGhIAfUPN6L7C55wYkUC5XA2c,9194
|
|
269
|
+
pip/_vendor/urllib3/packages/six.py,sha256=dCw7sqQpOJ_L3ssF_TrmqYiNnLnnMVOtA4-TAU7eyd0,30966
|
|
270
|
+
pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
271
|
+
pip/_vendor/urllib3/packages/backports/makefile.py,sha256=DJvigopntDsoZ8PHUZ7FqjQHEvZOeuX-nKn83oVTwGA,1514
|
|
272
|
+
pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py,sha256=9qJkL_ZBallrIGgSkZ3WWFhBnskjgsHw11o-DXGdua8,707
|
|
273
|
+
pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py,sha256=bmjfWqkCXSfykgrsf6EszPzuu_kI2HMEkijjfwX1yfc,5876
|
|
274
|
+
pip/_vendor/urllib3/util/__init__.py,sha256=aHNNBJDY0LXT8fIJGvaimxo4M1yq87CMLt-pq2tJ5lc,1098
|
|
275
|
+
pip/_vendor/urllib3/util/connection.py,sha256=IkRhyJKTNo0vg6LSjZaH1x9p-mt9_KDMM8Z3ves0p8s,4367
|
|
276
|
+
pip/_vendor/urllib3/util/request.py,sha256=6Z9yV2XHdzb3YK1lVZgEw6PfYcUxtKuHrRmBIFWrfgA,3823
|
|
277
|
+
pip/_vendor/urllib3/util/response.py,sha256=zS8uNkrLuM1vVRsV46i51mfbJG-Y3-wsqQw8EB8EU4c,2424
|
|
278
|
+
pip/_vendor/urllib3/util/retry.py,sha256=ZKskgGn4XAor1ceSOcoGGFumHFXzun38-jUCeEJmI6I,15002
|
|
279
|
+
pip/_vendor/urllib3/util/selectors.py,sha256=ygw9CJs0yChlyVwD40mJ1LIwbNaKpzYo8Vg74vYemgc,21728
|
|
280
|
+
pip/_vendor/urllib3/util/ssl_.py,sha256=sp4YBfpJ7F1TEhnafRmvpc89DVquMGb61WLo3XevcG4,12561
|
|
281
|
+
pip/_vendor/urllib3/util/timeout.py,sha256=aTFA7xp2UHmpAuyHbC5iCySPr4iEc8-YTZvCiad2X0g,9999
|
|
282
|
+
pip/_vendor/urllib3/util/url.py,sha256=lsU39rCqfddTelBSvteq4uT-LI3WtkCEeGS2jqRp08s,6717
|
|
283
|
+
pip/_vendor/urllib3/util/wait.py,sha256=J94ZLK8TURoIWyCinTcqwCU3n-SYzeOZCzI0svttXrY,1491
|
|
284
|
+
pip/_vendor/webencodings/__init__.py,sha256=kG5cBDbIrAtrrdU-h1iSPVYq10ayTFldU1CTRcb1ym4,10921
|
|
285
|
+
pip/_vendor/webencodings/labels.py,sha256=e9gPVTA1XNYalJMVVX7lXvb52Kurc4UdnXFJDPcBXFE,9210
|
|
286
|
+
pip/_vendor/webencodings/mklabels.py,sha256=tyhoDDc-TC6kjJY25Qn5TlsyMs2_IyPf_rfh4L6nSrg,1364
|
|
287
|
+
pip/_vendor/webencodings/tests.py,sha256=7J6TdufKEml8sQSWcYEsl-e73QXtPmsIHF6pPT0sq08,6716
|
|
288
|
+
pip/_vendor/webencodings/x_user_defined.py,sha256=CMn5bx2ccJ4y3Bsqf3xC24bYO4ONC3ZY_lv5vrqhKAY,4632
|
|
289
|
+
pip-10.0.0.dist-info/LICENSE.txt,sha256=vphq0X7zpPm3cGDzp-hfRTuAI4-5iSx9gxQW2xgY2Pc,1110
|
|
290
|
+
pip-10.0.0.dist-info/METADATA,sha256=TzuARPSX1ZE5d8twWbEP6ahuZ1QEJTcaMntiebqrJHU,2862
|
|
291
|
+
pip-10.0.0.dist-info/RECORD,,
|
|
292
|
+
pip-10.0.0.dist-info/WHEEL,sha256=saUSQBLOUjf5ACZdNkhQ0lB6XrHU-l4vpzxq_W1n_AY,116
|
|
293
|
+
pip-10.0.0.dist-info/entry_points.txt,sha256=VQWeNvELfCZUrbgKimd04NWN7Dh_XRL8uR4dANlO4qQ,98
|
|
294
|
+
pip-10.0.0.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
package/python3.4.2/lib/python3.4/site-packages/{pip-1.5.6.dist-info → pip-10.0.0.dist-info}/WHEEL
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Wheel-Version: 1.0
|
|
2
|
-
Generator: bdist_wheel (0.
|
|
3
|
-
Root-Is-Purelib: true
|
|
4
|
-
Tag: py2-none-any
|
|
5
|
-
Tag: py3-none-any
|
|
6
|
-
|
|
1
|
+
Wheel-Version: 1.0
|
|
2
|
+
Generator: bdist_wheel (0.31.0)
|
|
3
|
+
Root-Is-Purelib: true
|
|
4
|
+
Tag: py2-none-any
|
|
5
|
+
Tag: py3-none-any
|
|
6
|
+
|
|
File without changes
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
Project Info
|
|
3
|
-
============
|
|
4
|
-
|
|
5
|
-
* Project Page: https://github.com/pypa/pip
|
|
6
|
-
* Install howto: https://pip.pypa.io/en/latest/installing.html
|
|
7
|
-
* Changelog: https://pip.pypa.io/en/latest/news.html
|
|
8
|
-
* Bug Tracking: https://github.com/pypa/pip/issues
|
|
9
|
-
* Mailing list: http://groups.google.com/group/python-virtualenv
|
|
10
|
-
* Docs: https://pip.pypa.io/
|
|
11
|
-
* User IRC: #pypa on Freenode.
|
|
12
|
-
* Dev IRC: #pypa-dev on Freenode.
|
|
13
|
-
|
|
14
|
-
Quickstart
|
|
15
|
-
==========
|
|
16
|
-
|
|
17
|
-
First, :doc:`Install pip <installing>`.
|
|
18
|
-
|
|
19
|
-
Install a package from `PyPI`_:
|
|
20
|
-
|
|
21
|
-
::
|
|
22
|
-
|
|
23
|
-
$ pip install SomePackage
|
|
24
|
-
[...]
|
|
25
|
-
Successfully installed SomePackage
|
|
26
|
-
|
|
27
|
-
Show what files were installed:
|
|
28
|
-
|
|
29
|
-
::
|
|
30
|
-
|
|
31
|
-
$ pip show --files SomePackage
|
|
32
|
-
Name: SomePackage
|
|
33
|
-
Version: 1.0
|
|
34
|
-
Location: /my/env/lib/pythonx.x/site-packages
|
|
35
|
-
Files:
|
|
36
|
-
../somepackage/__init__.py
|
|
37
|
-
[...]
|
|
38
|
-
|
|
39
|
-
List what packages are outdated:
|
|
40
|
-
|
|
41
|
-
::
|
|
42
|
-
|
|
43
|
-
$ pip list --outdated
|
|
44
|
-
SomePackage (Current: 1.0 Latest: 2.0)
|
|
45
|
-
|
|
46
|
-
Upgrade a package:
|
|
47
|
-
|
|
48
|
-
::
|
|
49
|
-
|
|
50
|
-
$ pip install --upgrade SomePackage
|
|
51
|
-
[...]
|
|
52
|
-
Found existing installation: SomePackage 1.0
|
|
53
|
-
Uninstalling SomePackage:
|
|
54
|
-
Successfully uninstalled SomePackage
|
|
55
|
-
Running setup.py install for SomePackage
|
|
56
|
-
Successfully installed SomePackage
|
|
57
|
-
|
|
58
|
-
Uninstall a package:
|
|
59
|
-
|
|
60
|
-
::
|
|
61
|
-
|
|
62
|
-
$ pip uninstall SomePackage
|
|
63
|
-
Uninstalling SomePackage:
|
|
64
|
-
/my/env/lib/pythonx.x/site-packages/somepackage
|
|
65
|
-
Proceed (y/n)? y
|
|
66
|
-
Successfully uninstalled SomePackage
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
.. _PyPI: http://pypi.python.org/pypi/
|
|
70
|
-
|
|
71
|
-
|
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.0
|
|
2
|
-
Name: pip
|
|
3
|
-
Version: 1.5.6
|
|
4
|
-
Summary: A tool for installing and managing Python packages.
|
|
5
|
-
Home-page: https://pip.pypa.io/
|
|
6
|
-
Author: The pip developers
|
|
7
|
-
Author-email: python-virtualenv@groups.google.com
|
|
8
|
-
License: MIT
|
|
9
|
-
Keywords: easy_install distutils setuptools egg virtualenv
|
|
10
|
-
Platform: UNKNOWN
|
|
11
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
-
Classifier: Intended Audience :: Developers
|
|
13
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
-
Classifier: Topic :: Software Development :: Build Tools
|
|
15
|
-
Classifier: Programming Language :: Python :: 2
|
|
16
|
-
Classifier: Programming Language :: Python :: 2.6
|
|
17
|
-
Classifier: Programming Language :: Python :: 2.7
|
|
18
|
-
Classifier: Programming Language :: Python :: 3
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.1
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.2
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.3
|
|
22
|
-
Provides-Extra: testing
|
|
23
|
-
Requires-Dist: pytest; extra == 'testing'
|
|
24
|
-
Requires-Dist: virtualenv (>=1.10); extra == 'testing'
|
|
25
|
-
Requires-Dist: scripttest (>=1.3); extra == 'testing'
|
|
26
|
-
Requires-Dist: mock; extra == 'testing'
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
Project Info
|
|
30
|
-
============
|
|
31
|
-
|
|
32
|
-
* Project Page: https://github.com/pypa/pip
|
|
33
|
-
* Install howto: https://pip.pypa.io/en/latest/installing.html
|
|
34
|
-
* Changelog: https://pip.pypa.io/en/latest/news.html
|
|
35
|
-
* Bug Tracking: https://github.com/pypa/pip/issues
|
|
36
|
-
* Mailing list: http://groups.google.com/group/python-virtualenv
|
|
37
|
-
* Docs: https://pip.pypa.io/
|
|
38
|
-
* User IRC: #pypa on Freenode.
|
|
39
|
-
* Dev IRC: #pypa-dev on Freenode.
|
|
40
|
-
|
|
41
|
-
Quickstart
|
|
42
|
-
==========
|
|
43
|
-
|
|
44
|
-
First, :doc:`Install pip <installing>`.
|
|
45
|
-
|
|
46
|
-
Install a package from `PyPI`_:
|
|
47
|
-
|
|
48
|
-
::
|
|
49
|
-
|
|
50
|
-
$ pip install SomePackage
|
|
51
|
-
[...]
|
|
52
|
-
Successfully installed SomePackage
|
|
53
|
-
|
|
54
|
-
Show what files were installed:
|
|
55
|
-
|
|
56
|
-
::
|
|
57
|
-
|
|
58
|
-
$ pip show --files SomePackage
|
|
59
|
-
Name: SomePackage
|
|
60
|
-
Version: 1.0
|
|
61
|
-
Location: /my/env/lib/pythonx.x/site-packages
|
|
62
|
-
Files:
|
|
63
|
-
../somepackage/__init__.py
|
|
64
|
-
[...]
|
|
65
|
-
|
|
66
|
-
List what packages are outdated:
|
|
67
|
-
|
|
68
|
-
::
|
|
69
|
-
|
|
70
|
-
$ pip list --outdated
|
|
71
|
-
SomePackage (Current: 1.0 Latest: 2.0)
|
|
72
|
-
|
|
73
|
-
Upgrade a package:
|
|
74
|
-
|
|
75
|
-
::
|
|
76
|
-
|
|
77
|
-
$ pip install --upgrade SomePackage
|
|
78
|
-
[...]
|
|
79
|
-
Found existing installation: SomePackage 1.0
|
|
80
|
-
Uninstalling SomePackage:
|
|
81
|
-
Successfully uninstalled SomePackage
|
|
82
|
-
Running setup.py install for SomePackage
|
|
83
|
-
Successfully installed SomePackage
|
|
84
|
-
|
|
85
|
-
Uninstall a package:
|
|
86
|
-
|
|
87
|
-
::
|
|
88
|
-
|
|
89
|
-
$ pip uninstall SomePackage
|
|
90
|
-
Uninstalling SomePackage:
|
|
91
|
-
/my/env/lib/pythonx.x/site-packages/somepackage
|
|
92
|
-
Proceed (y/n)? y
|
|
93
|
-
Successfully uninstalled SomePackage
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
.. _PyPI: http://pypi.python.org/pypi/
|
|
97
|
-
|
|
98
|
-
|
|
@@ -1,373 +0,0 @@
|
|
|
1
|
-
pip/__init__.py,sha256=j6Zp28eSA6gvpf2Vm7gb4ybz5Y_OKfXxY3a146aRH6g,9450
|
|
2
|
-
pip/__main__.py,sha256=9JBJhprGRLUy1fEvAdufs0tsjKFAvFAY_nTde6GDkHk,116
|
|
3
|
-
pip/basecommand.py,sha256=N_nE7BCcoMA7t2nRNTiJB8T__1XqI74SJI2G72VaM2E,6578
|
|
4
|
-
pip/baseparser.py,sha256=DZKWTOA1OeD5mLyBUx183Jx-M16cqWOXPZZuJN4-4j8,8162
|
|
5
|
-
pip/cmdoptions.py,sha256=C0JuSfhGIgrp2hMoVDYVPekPlPiG0wIFcIIFDbrsatg,9507
|
|
6
|
-
pip/download.py,sha256=jnZvTGYutxPtgJvF0URMnsBGkTABNrfgFevu5QmscfE,22580
|
|
7
|
-
pip/exceptions.py,sha256=wAoboA4PdhGN7xH-ayf_dcDFPYZe9XAivAlZJbOgCN4,1086
|
|
8
|
-
pip/index.py,sha256=CLPb0crVhOQ3aZpl4feUKpf1pVR6qLhBiJTa71PoIkM,40403
|
|
9
|
-
pip/locations.py,sha256=YyFyCLYADKgT5x-Ctj_LeZl5bEzkbBXuR2Iv8IbVqDA,6202
|
|
10
|
-
pip/log.py,sha256=1fW7cVRIRBhfqWz4JH2HhJRHzVQ4PJTRbolRj3S33f8,9455
|
|
11
|
-
pip/pep425tags.py,sha256=jb5Rq395Gz_Uv8kn3L9Im1HX7EhEj8nqyYX0nXulzWo,2969
|
|
12
|
-
pip/req.py,sha256=DMGDl2N30fmLzh4VzhqQyix-bifSRKNhp2c_OS_gza8,83557
|
|
13
|
-
pip/runner.py,sha256=VkcZKNikprpDOSl2Y3m0FaQbdGuYsoHkxdhjtL0N3oA,431
|
|
14
|
-
pip/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116
|
|
15
|
-
pip/util.py,sha256=GTnXa80tWauVlIvSQiYeNw12ly5X4hMPmDbRVQ79hwk,24172
|
|
16
|
-
pip/wheel.py,sha256=PwTueHq1c30KvZF3-0wlTTUiR8hxBpE3THxN1bc0eS8,20618
|
|
17
|
-
pip/_vendor/__init__.py,sha256=f-xO4dF7jRP89yrL4h26_nULYgYTzgnTgUFlkDasJrc,266
|
|
18
|
-
pip/_vendor/pkg_resources.py,sha256=0y2CkvxQcHCBVOmTCNvdMN8hTPPUogThjhkCxegggII,100025
|
|
19
|
-
pip/_vendor/re-vendor.py,sha256=PcdZ40d0ohMsdJmA4t0AeAWbPXi1tFsvAwA5KE5FGeY,773
|
|
20
|
-
pip/_vendor/six.py,sha256=whAS1kvmixxh-pKqb5qQ05-fHMnGjuKyU6m7_wa09O4,23462
|
|
21
|
-
pip/_vendor/_markerlib/__init__.py,sha256=2hgtRuYDOrimZF9-ENCkrP8gnJ59HZEtlk-zoTEvn1Y,564
|
|
22
|
-
pip/_vendor/_markerlib/markers.py,sha256=YuFp0-osufFIoqnzG3L0Z2fDCx4Vln3VUDeXJ2DA_1I,3979
|
|
23
|
-
pip/_vendor/colorama/__init__.py,sha256=eABG0aR8L-8JfIiftmvixrDZvqHawB7KIIxiRdKsi1k,217
|
|
24
|
-
pip/_vendor/colorama/ansi.py,sha256=spKO9jqXAB9POAj6M3bZLrdCf-W9wUVeDCqF664WSGs,1039
|
|
25
|
-
pip/_vendor/colorama/ansitowin32.py,sha256=C0mA80tFRvkdHVTHzvyrCzsI0CNQ1gY9ng6deCxkbGY,6664
|
|
26
|
-
pip/_vendor/colorama/initialise.py,sha256=sL44vQFKG5BAoFgoIxfhH0wG2NnLBw9mtnWFVtXkHGs,1297
|
|
27
|
-
pip/_vendor/colorama/win32.py,sha256=tMAHgaTSySAt5BI5hBoID6oshHIYnJBlUqDsOoHbV0w,4911
|
|
28
|
-
pip/_vendor/colorama/winterm.py,sha256=RhWJPcGA_T1knfS-84AXpQ0C7cn8XWE6iQkqy1GPsmk,4206
|
|
29
|
-
pip/_vendor/distlib/__init__.py,sha256=kTBiZ-2Ndb1k7wb8yCvl7iRBCDTnvaOR15qf32RgvsY,581
|
|
30
|
-
pip/_vendor/distlib/compat.py,sha256=pVILHBDu1P72lO1lEgPFpwRWGs4Cj2-eo_xOPLKjprk,38875
|
|
31
|
-
pip/_vendor/distlib/database.py,sha256=reYrKl6tqHs3eOrMrdXX4W0OGlBqathuqSzCy-696MI,49138
|
|
32
|
-
pip/_vendor/distlib/index.py,sha256=D-Zz8pQ6Gtr4t7HlFebU36P9inMPSfExmit061S8DUk,19476
|
|
33
|
-
pip/_vendor/distlib/locators.py,sha256=Vi88LbYqF981rmCc8dbD9qnmt5MeJzv7qiAlvgrK3vs,46946
|
|
34
|
-
pip/_vendor/distlib/manifest.py,sha256=I-JG2bVBN3Zmf4gpt9MFjgsukcIt0rMrz95jQ1kwbgE,13497
|
|
35
|
-
pip/_vendor/distlib/markers.py,sha256=iRrVWwpyVwjkKJSX8NEQ92_MRMwpROcfNGKCD-Ch1QM,6282
|
|
36
|
-
pip/_vendor/distlib/metadata.py,sha256=IS0Q8hNbQWEhaLtItUlLxYC3j9zVtFD76DgXbHxcRZE,36815
|
|
37
|
-
pip/_vendor/distlib/resources.py,sha256=H9QmD7R_8t-iLxZne9EnjAHAdSEbJ22PYotEppOGxts,9432
|
|
38
|
-
pip/_vendor/distlib/scripts.py,sha256=0bIHpJFwyvymJ4CEnm1-x3AcJZbYTEkhBAKuas295Ic,12307
|
|
39
|
-
pip/_vendor/distlib/t32.exe,sha256=snr0x6iR5Yd7ZndiuvGMuuQGg8VklUc5538uQcOeVYQ,91136
|
|
40
|
-
pip/_vendor/distlib/t64.exe,sha256=71TYxgPfviERRKhyYaXPx2pl4o4ugs5zNWuIMLlm7ss,94720
|
|
41
|
-
pip/_vendor/distlib/util.py,sha256=UBy5ki-nyb0nJyM_-TlXSfni_cEOI4r6LzglMMB_1zc,51230
|
|
42
|
-
pip/_vendor/distlib/version.py,sha256=FgTBNWH7dDY12fqTFy6nATw21wV8kKJw5G19aFouwDE,22996
|
|
43
|
-
pip/_vendor/distlib/w32.exe,sha256=QoyveFPxLH-db4j2YDzb-VmP7DmGT1vHwPOLGpzc3uw,87040
|
|
44
|
-
pip/_vendor/distlib/w64.exe,sha256=haGpLW73-UaPHkjhKaQVPTBJCZ9Lg1rMBZdhpi7f_V8,91648
|
|
45
|
-
pip/_vendor/distlib/wheel.py,sha256=TUMl4Pzri_jglkvr2jZ4GJfWAumG3VNzT2CaW7oBXQQ,38259
|
|
46
|
-
pip/_vendor/distlib/_backport/__init__.py,sha256=bqS_dTOH6uW9iGgd0uzfpPjo6vZ4xpPZ7kyfZJ2vNaw,274
|
|
47
|
-
pip/_vendor/distlib/_backport/misc.py,sha256=KWecINdbFNOxSOP1fGF680CJnaC6S4fBRgEtaYTw0ig,971
|
|
48
|
-
pip/_vendor/distlib/_backport/shutil.py,sha256=AUi8718iRoJ9K26mRi-rywtt8Gx7ykvrvbUbZszjfYE,25650
|
|
49
|
-
pip/_vendor/distlib/_backport/sysconfig.cfg,sha256=swZKxq9RY5e9r3PXCrlvQPMsvOdiWZBTHLEbqS8LJLU,2617
|
|
50
|
-
pip/_vendor/distlib/_backport/sysconfig.py,sha256=7WdYP0wbw8izH1eAEGNA-HXUyJrhzIAGK_LniUs4UNI,26958
|
|
51
|
-
pip/_vendor/distlib/_backport/tarfile.py,sha256=bjyTNONZb-YEXrHFLExOSuagtSOoPaONP2UUoxwkAqE,92627
|
|
52
|
-
pip/_vendor/html5lib/__init__.py,sha256=6fwIe3NEcpx7aLb1bBXUpsDgJFE9PnbpRADB7i2QhBw,714
|
|
53
|
-
pip/_vendor/html5lib/constants.py,sha256=w_Lrxu8h6qE4KATYy0SL5hiJ5ebuB28SlCcdXUHf6to,87346
|
|
54
|
-
pip/_vendor/html5lib/html5parser.py,sha256=qMHEOEahKSZzLHHkqLRVbuIJYgAteVR-nmkjMp59Tvw,117029
|
|
55
|
-
pip/_vendor/html5lib/ihatexml.py,sha256=MT12cVXAKaW-ALUkUeN175HpUP73xK8wAIpPzQ8cgfI,16581
|
|
56
|
-
pip/_vendor/html5lib/inputstream.py,sha256=qa-xwqbm-w250UR-uVzooXPSHFI4Ho6drLhPl7VWvHI,30636
|
|
57
|
-
pip/_vendor/html5lib/sanitizer.py,sha256=sg7g5CXF9tfvykIoSVAvA8647MgScy3ncZC7IYH-8SA,16428
|
|
58
|
-
pip/_vendor/html5lib/tokenizer.py,sha256=6Uf8sDUkvNn661bcBSBYUCTfXzSs9EyCTiPcj5PAjYI,76929
|
|
59
|
-
pip/_vendor/html5lib/utils.py,sha256=T-BFeUVGJDjVCRbNoqar2qxn8jEoCOOJXE1nH0nDHEQ,2545
|
|
60
|
-
pip/_vendor/html5lib/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
-
pip/_vendor/html5lib/filters/_base.py,sha256=z-IU9ZAYjpsVsqmVt7kuWC63jR11hDMr6CVrvuao8W0,286
|
|
62
|
-
pip/_vendor/html5lib/filters/alphabeticalattributes.py,sha256=fpRLbz6TCe5yXEkGmyMlJ80FekWsTR-sHk3Ano0U9LQ,624
|
|
63
|
-
pip/_vendor/html5lib/filters/inject_meta_charset.py,sha256=xllv1I7unxhcyZTf3LTsv30wh2mAkT7wmTZx7zIhpuY,2746
|
|
64
|
-
pip/_vendor/html5lib/filters/lint.py,sha256=6rlGRUTxD5KWwEVoXVHI_PeyUHN6Vw2v_ovg0YiHsDA,4306
|
|
65
|
-
pip/_vendor/html5lib/filters/optionaltags.py,sha256=4ozLwBgMRaxe7iqxefLQpDhp3irK7YHo9LgSGsvZYMw,10500
|
|
66
|
-
pip/_vendor/html5lib/filters/sanitizer.py,sha256=MvGUs_v2taWPgGhjxswRSUiHfxrqMUhsNPz-eSeUYUQ,352
|
|
67
|
-
pip/_vendor/html5lib/filters/whitespace.py,sha256=LbOUcC0zQ9z703KNZrArOr0kVBO7OMXjKjucDW32LU4,1142
|
|
68
|
-
pip/_vendor/html5lib/serializer/__init__.py,sha256=xFXFP-inaTNlbnau5c5DGrH_O8yPm-C6HWbJxpiSqFE,490
|
|
69
|
-
pip/_vendor/html5lib/serializer/htmlserializer.py,sha256=bSXUuFJB6s-ODOl0nzFN0UA6xlQRU-BwYamPeJvsNSE,12909
|
|
70
|
-
pip/_vendor/html5lib/treeadapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
|
-
pip/_vendor/html5lib/treeadapters/sax.py,sha256=3of4vvaUYIAic7pngebwJV24hpOS7Zg9ggJa_WQegy4,1661
|
|
72
|
-
pip/_vendor/html5lib/treebuilders/__init__.py,sha256=Xz4X6B5DA1R-5GyRa44j0sJwfl6dUNyb0NBu9-7sK3U,3405
|
|
73
|
-
pip/_vendor/html5lib/treebuilders/_base.py,sha256=Xf0FZVcVwIQS6tEseJdj5wKbYucbNCnbAsnsG4lONis,13711
|
|
74
|
-
pip/_vendor/html5lib/treebuilders/dom.py,sha256=ylkIlwEV2NsIWBpwEtfqF0LVoCGg4oXazEWs4-486jk,8469
|
|
75
|
-
pip/_vendor/html5lib/treebuilders/etree.py,sha256=etbO6yQlyV46rWlj9mSyVqQOWrgoHgyJ01Tut4lWZkk,12621
|
|
76
|
-
pip/_vendor/html5lib/treebuilders/etree_lxml.py,sha256=z3Bnfm2MstEEb_lbaAeicl5l-ab6MSQa5Q1ZZreK7Pc,14031
|
|
77
|
-
pip/_vendor/html5lib/treewalkers/__init__.py,sha256=44g-xYZEoYxzkMu6CepBTLm4m-g9iy7Vm_IG8PWAbhY,2323
|
|
78
|
-
pip/_vendor/html5lib/treewalkers/_base.py,sha256=hnL6zMgGJoGqEJYKVKveDmfpz1d2xriyuuau6479xq4,6919
|
|
79
|
-
pip/_vendor/html5lib/treewalkers/dom.py,sha256=mAg05wBWN2k-CGPoo0KNxa55QAlHciNccp8AezCa8j8,1457
|
|
80
|
-
pip/_vendor/html5lib/treewalkers/etree.py,sha256=waFU6dxcV5y4SEMyxZpQ9M4I5pKpMmCtUSN1GbuCVcE,4625
|
|
81
|
-
pip/_vendor/html5lib/treewalkers/genshistream.py,sha256=IbBFrlgi-59-K7P1zm0d7ZFIknBN4c5E57PHJDkx39s,2278
|
|
82
|
-
pip/_vendor/html5lib/treewalkers/lxmletree.py,sha256=vWfXWK3GOSrq2trQm2aPmIRWPhVuYDZ3g9Fu8hUeBQg,6215
|
|
83
|
-
pip/_vendor/html5lib/treewalkers/pulldom.py,sha256=9W6i8yWtUzayV6EwX-okVacttHaqpQZwdBCc2S3XeQ4,2302
|
|
84
|
-
pip/_vendor/html5lib/trie/__init__.py,sha256=mec5zyJ5wIKRM8819gIcIsYQwncg91rEmPwGH1dG3Ho,212
|
|
85
|
-
pip/_vendor/html5lib/trie/_base.py,sha256=WGY8SGptFmx4O0aKLJ54zrIQOoyuvhS0ngA36vAcIcc,927
|
|
86
|
-
pip/_vendor/html5lib/trie/datrie.py,sha256=EQpqSfkZRuTbE-DuhW7xMdVDxdZNZ0CfmnYfHA_3zxM,1178
|
|
87
|
-
pip/_vendor/html5lib/trie/py.py,sha256=wXmQLrZRf4MyWNyg0m3h81m9InhLR7GJ002mIIZh-8o,1775
|
|
88
|
-
pip/_vendor/requests/__init__.py,sha256=Rl423kV-MBTFDiTtEOJiP9CuaubFSi8rHaqzq1KBN0w,1856
|
|
89
|
-
pip/_vendor/requests/adapters.py,sha256=fp4t_woMNJPv8vikcrLbkkDxhJHJMZ3h8MlgtKvpuE8,14608
|
|
90
|
-
pip/_vendor/requests/api.py,sha256=4xrabBN80yaqHxsomHVQD09v2VndgCz1cSsEnRvGGL0,4344
|
|
91
|
-
pip/_vendor/requests/auth.py,sha256=x2bFqHK3Lkbm7qPUyh_dAqYLTDTotBi-1za9EpCdA0U,6123
|
|
92
|
-
pip/_vendor/requests/cacert.pem,sha256=ak7q_q8ozHdQ9ff27U-E1vCNrLisFRQSMy9zJkdpQlM,308434
|
|
93
|
-
pip/_vendor/requests/certs.py,sha256=wSaqhSNoB0igp6Da-hWw0jtXICKXBbL8aS9swthlt50,544
|
|
94
|
-
pip/_vendor/requests/compat.py,sha256=JGrJPV2YGatzwrexl9kSt8Z8QtmFboRZH9ywsLK_MMA,2556
|
|
95
|
-
pip/_vendor/requests/cookies.py,sha256=BjMKtrI8TXQD5oQVeToYtkRBF149eI85UhWsBGwsJac,16686
|
|
96
|
-
pip/_vendor/requests/exceptions.py,sha256=z-3QpicafKtIh85bMEaClL2OpNPdsc6TP_83KcsVh8Y,1877
|
|
97
|
-
pip/_vendor/requests/hooks.py,sha256=9vNiuiRHRd5Qy6BX_0p1H3NsUzDo1M_HaFR2AFL41Tg,820
|
|
98
|
-
pip/_vendor/requests/models.py,sha256=OYZOkemxZPpeTp5cvhdx-gAnl9bW82wdnGIr4uoVH20,26436
|
|
99
|
-
pip/_vendor/requests/sessions.py,sha256=kwPPNj1M3D6yfHPcygUERvfqWaSx8odBijhqKTqRX_Q,22290
|
|
100
|
-
pip/_vendor/requests/status_codes.py,sha256=LYpqLv4AEKuTPby-QSvgl_gI7fcVlUDqSBcndIwX-Qg,3136
|
|
101
|
-
pip/_vendor/requests/structures.py,sha256=d7f7ZXZZzgZtvrBQBZA1boJYX_QlP1YqL-_xtpzImGw,3541
|
|
102
|
-
pip/_vendor/requests/utils.py,sha256=MxSUha_2szwhfLKmGg5bolxt6lA6OghSvVZ4xMZwQhM,19973
|
|
103
|
-
pip/_vendor/requests/packages/__init__.py,sha256=aXkbNCjM_WhryRBocE4AaA_p7-CTxL5LOutY7XzKm4s,62
|
|
104
|
-
pip/_vendor/requests/packages/chardet/__init__.py,sha256=8-39Dg2qEuod5DNN7RMdn2ZYOO9zFU3fFfaE80iDWGc,1295
|
|
105
|
-
pip/_vendor/requests/packages/chardet/big5freq.py,sha256=D8oTdz-GM7Jg8TsaWJDm65vM_OLHC3xub6qUJ3rOgsQ,82594
|
|
106
|
-
pip/_vendor/requests/packages/chardet/big5prober.py,sha256=XX96C--6WKYW36mL-z7pJSAtc169Z8ZImByCP4pEN9A,1684
|
|
107
|
-
pip/_vendor/requests/packages/chardet/chardetect.py,sha256=8g-dRSA97bSE6M25Tqe1roKKtl3XHSMnqi6vTzpHNV0,1141
|
|
108
|
-
pip/_vendor/requests/packages/chardet/chardistribution.py,sha256=cUARQFr1oTLXeJCDQrDRkUP778AvSMzhSCnG8VLCV58,9226
|
|
109
|
-
pip/_vendor/requests/packages/chardet/charsetgroupprober.py,sha256=0lKk7VE516fgMw119tNefFqLOxKfIE9WfdkpIT69OKU,3791
|
|
110
|
-
pip/_vendor/requests/packages/chardet/charsetprober.py,sha256=Z48o2KiOj23FNqYH8FqzhH5m1qdm3rI8DcTm2Yqtklg,1902
|
|
111
|
-
pip/_vendor/requests/packages/chardet/codingstatemachine.py,sha256=E85rYhHVMw9xDEJVgiQhp0OnLGr6i2r8_7QOWMKTH08,2318
|
|
112
|
-
pip/_vendor/requests/packages/chardet/compat.py,sha256=5mm6yrHwef1JEG5OxkPJlSq5lkjLVpEGh3iPgFBkpkM,1157
|
|
113
|
-
pip/_vendor/requests/packages/chardet/constants.py,sha256=-UnY8U7EP7z9fTyd09yq35BEkSFEAUAiv9ohd1DW1s4,1335
|
|
114
|
-
pip/_vendor/requests/packages/chardet/cp949prober.py,sha256=FMvdLyB7fejPXRsTbca7LK1P3RUvvssmjUNyaEfz8zY,1782
|
|
115
|
-
pip/_vendor/requests/packages/chardet/escprober.py,sha256=q5TcQKeVq31WxrW7Sv8yjpZkjEoaHO8S92EJZ9hodys,3187
|
|
116
|
-
pip/_vendor/requests/packages/chardet/escsm.py,sha256=7iljEKN8lXTh8JFXPUSwlibMno6R6ksq4evLxbkzfro,7839
|
|
117
|
-
pip/_vendor/requests/packages/chardet/eucjpprober.py,sha256=5IpfSEjAb7h3hcGMd6dkU80O900C2N6xku28rdYFKuc,3678
|
|
118
|
-
pip/_vendor/requests/packages/chardet/euckrfreq.py,sha256=T5saK5mImySG5ygQPtsp6o2uKulouCwYm2ElOyFkJqU,45978
|
|
119
|
-
pip/_vendor/requests/packages/chardet/euckrprober.py,sha256=Wo7dnZ5Erw_nB4H-m5alMiOxOuJUmGHlwCSaGqExDZA,1675
|
|
120
|
-
pip/_vendor/requests/packages/chardet/euctwfreq.py,sha256=G_I0BW9i1w0ONeeUwIYqV7_U09buIHdqh-wNHVaql7I,34872
|
|
121
|
-
pip/_vendor/requests/packages/chardet/euctwprober.py,sha256=upS2P6GuT5ujOxXYw-RJLcT7A4PTuo27KGUKU4UZpIQ,1676
|
|
122
|
-
pip/_vendor/requests/packages/chardet/gb2312freq.py,sha256=M2gFdo_qQ_BslStEchrPW5CrPEZEacC0uyDLw4ok-kY,36011
|
|
123
|
-
pip/_vendor/requests/packages/chardet/gb2312prober.py,sha256=VWnjoRa83Y6V6oczMaxyUr0uy48iCnC2nzk9zfEIRHc,1681
|
|
124
|
-
pip/_vendor/requests/packages/chardet/hebrewprober.py,sha256=8pdoUfsVXf_L4BnJde_BewS6H2yInV5688eu0nFhLHY,13359
|
|
125
|
-
pip/_vendor/requests/packages/chardet/jisfreq.py,sha256=ZcL4R5ekHHbP2KCYGakVMBsiKqZZZAABzhwi-uRkOps,47315
|
|
126
|
-
pip/_vendor/requests/packages/chardet/jpcntx.py,sha256=9fJ9oS0BUarcdZNySwmzVRuT03sYdClSmFwXDj3yVNg,19104
|
|
127
|
-
pip/_vendor/requests/packages/chardet/langbulgarianmodel.py,sha256=ZyPsA796MSVhYdfWhMCgKWckupAKAnKqWcE3Cl3ej6o,12784
|
|
128
|
-
pip/_vendor/requests/packages/chardet/langcyrillicmodel.py,sha256=fkcd5OvogUp-GrNDWAZPgkYsSRCD2omotAEvqjlmLKE,17725
|
|
129
|
-
pip/_vendor/requests/packages/chardet/langgreekmodel.py,sha256=QHMy31CH_ot67UCtmurCEKqKx2WwoaKrw2YCYYBK2Lw,12628
|
|
130
|
-
pip/_vendor/requests/packages/chardet/langhebrewmodel.py,sha256=4ASl5vzKJPng4H278VHKtRYC03TpQpenlHTcsmZH1rE,11318
|
|
131
|
-
pip/_vendor/requests/packages/chardet/langhungarianmodel.py,sha256=SXwuUzh49_cBeMXhshRHdrhlkz0T8_pZWV_pdqBKNFk,12536
|
|
132
|
-
pip/_vendor/requests/packages/chardet/langthaimodel.py,sha256=-k7djh3dGKngAGnt3WfuoJN7acDcWcmHAPojhaUd7q4,11275
|
|
133
|
-
pip/_vendor/requests/packages/chardet/latin1prober.py,sha256=g67gqZ2z89LUOlR7BZEAh4-p5a1yGWss9nWy8FCNm8Q,5241
|
|
134
|
-
pip/_vendor/requests/packages/chardet/mbcharsetprober.py,sha256=9rOCjDVsmSMp6e7q2syqak22j7lrbUZhJhMee2gbVL0,3268
|
|
135
|
-
pip/_vendor/requests/packages/chardet/mbcsgroupprober.py,sha256=SHRzNPLpDXfMJLA8phCHVU0WgqbgDCNxDQMolGX_7yk,1967
|
|
136
|
-
pip/_vendor/requests/packages/chardet/mbcssm.py,sha256=UuiA4Ic8vEc0XpTKDneqZyiH2TwGuFVZxOxWJep3X_4,19608
|
|
137
|
-
pip/_vendor/requests/packages/chardet/sbcharsetprober.py,sha256=Xq0lODqJnDgxglBiQI4BqTFiPbn63-0a5XNA5-hVu7U,4793
|
|
138
|
-
pip/_vendor/requests/packages/chardet/sbcsgroupprober.py,sha256=8hLyH8RAG-aohBo7o_KciWVgRo42ZE_zEtuNG1JMRYI,3291
|
|
139
|
-
pip/_vendor/requests/packages/chardet/sjisprober.py,sha256=1RjpQ2LU2gvoEB_4O839xDQVchWx2fG_C7_vXh52P5I,3734
|
|
140
|
-
pip/_vendor/requests/packages/chardet/universaldetector.py,sha256=GkZdwNyNfbFWC8I1uqnzyhOUF7favWCqCOKqdQlx6gQ,6831
|
|
141
|
-
pip/_vendor/requests/packages/chardet/utf8prober.py,sha256=7tdNZGrJY7jZUBD483GGMkiP0Tx8Fp-cGvWHoAsilHg,2652
|
|
142
|
-
pip/_vendor/requests/packages/urllib3/__init__.py,sha256=sLIKv9dGJjDloiVXUBBjXDWWq8bM66kcvTH2SU_WZKg,1701
|
|
143
|
-
pip/_vendor/requests/packages/urllib3/_collections.py,sha256=Oh1gxPZRqtOSy3pTV0pWQ949t9sjRAFMautsHiHP_pY,6557
|
|
144
|
-
pip/_vendor/requests/packages/urllib3/connection.py,sha256=eug-y4_dOa-x9bxDlURwpqlZuQDhl9Tjre5D1S5bijE,6533
|
|
145
|
-
pip/_vendor/requests/packages/urllib3/connectionpool.py,sha256=8eDsWYJzKYOyXMiP4CJqtLeychOw3iD_P20Ov-dbGUs,26904
|
|
146
|
-
pip/_vendor/requests/packages/urllib3/exceptions.py,sha256=T-ILeqVPpEvrOYAq8XEyTF0X8XRWcFVGT2gMrF00km0,3364
|
|
147
|
-
pip/_vendor/requests/packages/urllib3/fields.py,sha256=UuTJzGxUc9H1LPYZnD3f8GW308Vx_znb5pt4yimORsI,5976
|
|
148
|
-
pip/_vendor/requests/packages/urllib3/filepost.py,sha256=tWPY33HnFM_RPpEU9PHv9D34n67w8ZRt80ZSsWIv0Kk,2512
|
|
149
|
-
pip/_vendor/requests/packages/urllib3/poolmanager.py,sha256=bMYHdNaVI5O4YrJHr1T6tE2RYHEMzM2_K0cTy7uzX2M,8977
|
|
150
|
-
pip/_vendor/requests/packages/urllib3/request.py,sha256=cXTcrr9d50Rt213ZXLgCf53KNWxe4LQ8lxSV1HBYa9E,5808
|
|
151
|
-
pip/_vendor/requests/packages/urllib3/response.py,sha256=ff9-9sZkghNWCyeoECvImHspITTum7KOM20J2ia4SAw,10347
|
|
152
|
-
pip/_vendor/requests/packages/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
|
-
pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py,sha256=VJ-GjxpYITxSj4UDKX0iqvHwaatyg2RA3PaTym5Wp6w,4741
|
|
154
|
-
pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py,sha256=D1cbFXSoWj4ahM0azQdvIDFkvNnzMLxOvo1wnMrPo8M,15086
|
|
155
|
-
pip/_vendor/requests/packages/urllib3/packages/__init__.py,sha256=EKCTAOjZtPR_HC50e7X8hS5j4bkFkN87XZOT-Wdpfus,74
|
|
156
|
-
pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py,sha256=HtHphtStJlorzQqoIat8zUH0lqLns416gfSO9y_aSAQ,8936
|
|
157
|
-
pip/_vendor/requests/packages/urllib3/packages/six.py,sha256=U-rO-WBrFS8PxHeamSl6okKCjqPF18NhiZb0qPZ67XM,11628
|
|
158
|
-
pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py,sha256=cOWMIn1orgJoA35p6pSzO_-Dc6iOX9Dhl6D2sL9b_2o,460
|
|
159
|
-
pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py,sha256=fK28k37hL7-D79v9iM2fHgNK9Q1Pw0M7qVRL4rkfFjQ,3778
|
|
160
|
-
pip/_vendor/requests/packages/urllib3/util/__init__.py,sha256=nI42Lb9ShOOOl_uRDyJfZP_nxHCR4wTFJXmDa_GEe7c,622
|
|
161
|
-
pip/_vendor/requests/packages/urllib3/util/connection.py,sha256=Df5MeJaIpPigbIxEa87ojZ7qxXm1-V9dhnc2m7S6lNA,1348
|
|
162
|
-
pip/_vendor/requests/packages/urllib3/util/request.py,sha256=-mIHA_M2aZwEmW5PpNfxEi9B47YDmFcoTW5FvQ7prf4,1924
|
|
163
|
-
pip/_vendor/requests/packages/urllib3/util/response.py,sha256=EVO-5Q1Wc9K61i3RIhPB83CXfnvZpphL_NNp0SLznzI,354
|
|
164
|
-
pip/_vendor/requests/packages/urllib3/util/ssl_.py,sha256=0SJbyE9KURi8IjmOwo8sqmmit4sRkXf9eg_ODWOhSD0,4235
|
|
165
|
-
pip/_vendor/requests/packages/urllib3/util/timeout.py,sha256=WGx3s4593QcpwyHLY1FpFZgGPiTdL26A2nJhsZa9Rj8,9236
|
|
166
|
-
pip/_vendor/requests/packages/urllib3/util/url.py,sha256=ftfW-i1XtyFZEOEKfXLkKNmM7APmgNHbtcGWYr-6xdI,4273
|
|
167
|
-
pip/backwardcompat/__init__.py,sha256=AcP5dr3nL-4AGxSwsFIEUcf9ki0ROUFwfc0IrIeHaJI,3756
|
|
168
|
-
pip/commands/__init__.py,sha256=N_4io-oGcWF9-raDN5TYXbGlJFsx5po36HZmwgLso6I,2236
|
|
169
|
-
pip/commands/bundle.py,sha256=tK8LU3Khjkrz65y3brNP71QOBkQCb9mlv9x8s1W02T4,1787
|
|
170
|
-
pip/commands/completion.py,sha256=LnJgUrpGGO4x2Y8VdwhKda4kGZWMFO28P4jYzYT5Q8k,1838
|
|
171
|
-
pip/commands/freeze.py,sha256=Hyx1gzMaTFwTMcP98fwNCRVvvrWenX9j1RBziLCIo0A,4664
|
|
172
|
-
pip/commands/help.py,sha256=ETLg8xfv8uFwS3KvxmsCE-I56S15jUTvfkwaPAA18pE,927
|
|
173
|
-
pip/commands/install.py,sha256=PPFxd9RyUpVxfkumnztooBdrUkMguDI6eRHS0IrePUE,12694
|
|
174
|
-
pip/commands/list.py,sha256=FHf7H35AajbCuymiG2z8xAGNSx8W5CNZKj6Hh2QGo38,6814
|
|
175
|
-
pip/commands/search.py,sha256=_4Mza0qEb6P1aDA2OROYd-KuOJg0NrITOtQoiCDJF5Q,4736
|
|
176
|
-
pip/commands/show.py,sha256=ipjEcTrk-hgvFysSKJ5E9PSPXZGTuE3NIXLYvXnsdNk,2767
|
|
177
|
-
pip/commands/uninstall.py,sha256=MF4zSLfMxnH3E8T673ORNWz0Bsc4C6LEI5KImpAQrck,2203
|
|
178
|
-
pip/commands/unzip.py,sha256=_PeTWKOd_iRxPt_7njQ8jGFpjX006vobn593tcIyeUc,185
|
|
179
|
-
pip/commands/wheel.py,sha256=gyzZ4dQ0Ua8cP2H3ihvuNbv2z87ov-1Irxpu3m2MQqo,7320
|
|
180
|
-
pip/commands/zip.py,sha256=KECCb3oCHxJqDT3kUEnlf0udp31Ckoe8oyEKdS7EKNQ,14821
|
|
181
|
-
pip/vcs/__init__.py,sha256=kS31hLmJ6BgKnBu8kvXKQlJEwoj1MxYE7wfRuFL-daM,8748
|
|
182
|
-
pip/vcs/bazaar.py,sha256=qUIuIqDJqwZ_nP6WR52YwvYVy1lvIUmvaT-IdxDYUHo,4943
|
|
183
|
-
pip/vcs/git.py,sha256=ib3TqDwJyfjBnSRFKVe_HhNdwkmfcOZfJHbqt2RUOVg,7898
|
|
184
|
-
pip/vcs/mercurial.py,sha256=71ESfgxotPPPZjiH6sMTBWcj5TS8kjgJxVnWrRb3bwo,5820
|
|
185
|
-
pip/vcs/subversion.py,sha256=P31K7o83JdcipIyuEVlnpSp5KZqakb4OJ1PKT-FB7C8,10640
|
|
186
|
-
pip-1.5.6.dist-info/DESCRIPTION.rst,sha256=n5sT7bxCOnG9ej7TtEjjARQZ_n2ECqWFDiJK88BM0u0,1422
|
|
187
|
-
pip-1.5.6.dist-info/entry_points.txt,sha256=1-e4WB_Fe8mWHrMi1YQo_s5knbh0lu_uRmd8Wb6MJfY,68
|
|
188
|
-
pip-1.5.6.dist-info/METADATA,sha256=lUBJx4V5mJY0jPlxYlu1x4YUNML-AN4dn4Dv-EFX8-Y,2499
|
|
189
|
-
pip-1.5.6.dist-info/metadata.json,sha256=QZKMcKbHx-PWAvCvO0LdJX7JZjzx_yoKl2TTi1yKEKE,1361
|
|
190
|
-
pip-1.5.6.dist-info/RECORD,,
|
|
191
|
-
pip-1.5.6.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
|
192
|
-
pip-1.5.6.dist-info/WHEEL,sha256=6lxp_S3wZGmTBtGMVmNNLyvKFcp7HqQw2Wn4YYk-Suo,110
|
|
193
|
-
/android/wd/Python-3.4.2/out/bin/pip3,sha256=wOXD2ME2wBK3M7LQMBOMKT2cG5tnRGXoLxhRU_I-gog,231
|
|
194
|
-
/android/wd/Python-3.4.2/out/bin/pip3.4,sha256=wOXD2ME2wBK3M7LQMBOMKT2cG5tnRGXoLxhRU_I-gog,231
|
|
195
|
-
pip/_vendor/html5lib/trie/__pycache__/_base.cpython-34.pyc,,
|
|
196
|
-
pip/_vendor/__pycache__/pkg_resources.cpython-34.pyc,,
|
|
197
|
-
pip/_vendor/html5lib/serializer/__pycache__/htmlserializer.cpython-34.pyc,,
|
|
198
|
-
pip/commands/__pycache__/freeze.cpython-34.pyc,,
|
|
199
|
-
pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-34.pyc,,
|
|
200
|
-
pip/_vendor/html5lib/__pycache__/html5parser.cpython-34.pyc,,
|
|
201
|
-
pip/_vendor/requests/packages/urllib3/__pycache__/response.cpython-34.pyc,,
|
|
202
|
-
pip/_vendor/requests/packages/chardet/__pycache__/big5prober.cpython-34.pyc,,
|
|
203
|
-
pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-34.pyc,,
|
|
204
|
-
pip/_vendor/requests/packages/__pycache__/__init__.cpython-34.pyc,,
|
|
205
|
-
pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-34.pyc,,
|
|
206
|
-
pip/vcs/__pycache__/subversion.cpython-34.pyc,,
|
|
207
|
-
pip/_vendor/requests/packages/chardet/__pycache__/hebrewprober.cpython-34.pyc,,
|
|
208
|
-
pip/commands/__pycache__/zip.cpython-34.pyc,,
|
|
209
|
-
pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-34.pyc,,
|
|
210
|
-
pip/_vendor/html5lib/trie/__pycache__/__init__.cpython-34.pyc,,
|
|
211
|
-
pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-34.pyc,,
|
|
212
|
-
pip/_vendor/requests/__pycache__/__init__.cpython-34.pyc,,
|
|
213
|
-
pip/vcs/__pycache__/__init__.cpython-34.pyc,,
|
|
214
|
-
pip/commands/__pycache__/uninstall.cpython-34.pyc,,
|
|
215
|
-
pip/_vendor/_markerlib/__pycache__/markers.cpython-34.pyc,,
|
|
216
|
-
pip/_vendor/_markerlib/__pycache__/__init__.cpython-34.pyc,,
|
|
217
|
-
pip/_vendor/requests/packages/urllib3/util/__pycache__/request.cpython-34.pyc,,
|
|
218
|
-
pip/_vendor/html5lib/trie/__pycache__/datrie.cpython-34.pyc,,
|
|
219
|
-
pip/_vendor/requests/packages/chardet/__pycache__/euckrprober.cpython-34.pyc,,
|
|
220
|
-
pip/_vendor/distlib/__pycache__/markers.cpython-34.pyc,,
|
|
221
|
-
pip/__pycache__/util.cpython-34.pyc,,
|
|
222
|
-
pip/_vendor/requests/packages/chardet/__pycache__/big5freq.cpython-34.pyc,,
|
|
223
|
-
pip/__pycache__/log.cpython-34.pyc,,
|
|
224
|
-
pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-34.pyc,,
|
|
225
|
-
pip/_vendor/html5lib/treebuilders/__pycache__/_base.cpython-34.pyc,,
|
|
226
|
-
pip/commands/__pycache__/show.cpython-34.pyc,,
|
|
227
|
-
pip/_vendor/colorama/__pycache__/win32.cpython-34.pyc,,
|
|
228
|
-
pip/_vendor/requests/packages/chardet/__pycache__/langhungarianmodel.cpython-34.pyc,,
|
|
229
|
-
pip/_vendor/requests/packages/chardet/__pycache__/euckrfreq.cpython-34.pyc,,
|
|
230
|
-
pip/_vendor/html5lib/filters/__pycache__/lint.cpython-34.pyc,,
|
|
231
|
-
pip/_vendor/requests/packages/chardet/__pycache__/__init__.cpython-34.pyc,,
|
|
232
|
-
pip/_vendor/requests/packages/chardet/__pycache__/sjisprober.cpython-34.pyc,,
|
|
233
|
-
pip/__pycache__/req.cpython-34.pyc,,
|
|
234
|
-
pip/__pycache__/baseparser.cpython-34.pyc,,
|
|
235
|
-
pip/_vendor/distlib/__pycache__/database.cpython-34.pyc,,
|
|
236
|
-
pip/_vendor/requests/__pycache__/exceptions.cpython-34.pyc,,
|
|
237
|
-
pip/_vendor/colorama/__pycache__/winterm.cpython-34.pyc,,
|
|
238
|
-
pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-34.pyc,,
|
|
239
|
-
pip/_vendor/html5lib/__pycache__/constants.cpython-34.pyc,,
|
|
240
|
-
pip/__pycache__/cmdoptions.cpython-34.pyc,,
|
|
241
|
-
pip/__pycache__/index.cpython-34.pyc,,
|
|
242
|
-
pip/_vendor/html5lib/serializer/__pycache__/__init__.cpython-34.pyc,,
|
|
243
|
-
pip/_vendor/requests/packages/chardet/__pycache__/gb2312freq.cpython-34.pyc,,
|
|
244
|
-
pip/_vendor/requests/packages/chardet/__pycache__/escsm.cpython-34.pyc,,
|
|
245
|
-
pip/_vendor/colorama/__pycache__/__init__.cpython-34.pyc,,
|
|
246
|
-
pip/_vendor/requests/__pycache__/api.cpython-34.pyc,,
|
|
247
|
-
pip/_vendor/requests/packages/chardet/__pycache__/constants.cpython-34.pyc,,
|
|
248
|
-
pip/_vendor/requests/packages/chardet/__pycache__/jpcntx.cpython-34.pyc,,
|
|
249
|
-
pip/commands/__pycache__/search.cpython-34.pyc,,
|
|
250
|
-
pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-34.pyc,,
|
|
251
|
-
pip/_vendor/distlib/__pycache__/__init__.cpython-34.pyc,,
|
|
252
|
-
pip/commands/__pycache__/unzip.cpython-34.pyc,,
|
|
253
|
-
pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-34.pyc,,
|
|
254
|
-
pip/_vendor/requests/packages/urllib3/__pycache__/__init__.cpython-34.pyc,,
|
|
255
|
-
pip/_vendor/requests/packages/urllib3/packages/__pycache__/__init__.cpython-34.pyc,,
|
|
256
|
-
pip/__pycache__/__main__.cpython-34.pyc,,
|
|
257
|
-
pip/vcs/__pycache__/mercurial.cpython-34.pyc,,
|
|
258
|
-
pip/_vendor/requests/packages/chardet/__pycache__/gb2312prober.cpython-34.pyc,,
|
|
259
|
-
pip/_vendor/requests/packages/chardet/__pycache__/charsetprober.cpython-34.pyc,,
|
|
260
|
-
pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-34.pyc,,
|
|
261
|
-
pip/commands/__pycache__/install.cpython-34.pyc,,
|
|
262
|
-
pip/__pycache__/download.cpython-34.pyc,,
|
|
263
|
-
pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-34.pyc,,
|
|
264
|
-
pip/_vendor/requests/packages/chardet/__pycache__/cp949prober.cpython-34.pyc,,
|
|
265
|
-
pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-34.pyc,,
|
|
266
|
-
pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-34.pyc,,
|
|
267
|
-
pip/commands/__pycache__/help.cpython-34.pyc,,
|
|
268
|
-
pip/_vendor/distlib/__pycache__/metadata.cpython-34.pyc,,
|
|
269
|
-
pip/_vendor/distlib/_backport/__pycache__/misc.cpython-34.pyc,,
|
|
270
|
-
pip/__pycache__/runner.cpython-34.pyc,,
|
|
271
|
-
pip/_vendor/requests/packages/chardet/__pycache__/mbcharsetprober.cpython-34.pyc,,
|
|
272
|
-
pip/_vendor/requests/packages/chardet/__pycache__/sbcsgroupprober.cpython-34.pyc,,
|
|
273
|
-
pip/_vendor/distlib/__pycache__/index.cpython-34.pyc,,
|
|
274
|
-
pip/_vendor/requests/packages/chardet/__pycache__/escprober.cpython-34.pyc,,
|
|
275
|
-
pip/_vendor/html5lib/__pycache__/__init__.cpython-34.pyc,,
|
|
276
|
-
pip/_vendor/requests/__pycache__/certs.cpython-34.pyc,,
|
|
277
|
-
pip/_vendor/requests/packages/urllib3/packages/__pycache__/six.cpython-34.pyc,,
|
|
278
|
-
pip/_vendor/html5lib/__pycache__/utils.cpython-34.pyc,,
|
|
279
|
-
pip/_vendor/requests/packages/urllib3/contrib/__pycache__/ntlmpool.cpython-34.pyc,,
|
|
280
|
-
pip/_vendor/requests/packages/urllib3/util/__pycache__/ssl_.cpython-34.pyc,,
|
|
281
|
-
pip/_vendor/html5lib/treewalkers/__pycache__/lxmletree.cpython-34.pyc,,
|
|
282
|
-
pip/_vendor/colorama/__pycache__/ansitowin32.cpython-34.pyc,,
|
|
283
|
-
pip/_vendor/distlib/__pycache__/util.cpython-34.pyc,,
|
|
284
|
-
pip/_vendor/requests/packages/chardet/__pycache__/langbulgarianmodel.cpython-34.pyc,,
|
|
285
|
-
pip/_vendor/html5lib/__pycache__/tokenizer.cpython-34.pyc,,
|
|
286
|
-
pip/_vendor/requests/packages/urllib3/__pycache__/exceptions.cpython-34.pyc,,
|
|
287
|
-
pip/_vendor/requests/packages/urllib3/contrib/__pycache__/__init__.cpython-34.pyc,,
|
|
288
|
-
pip/_vendor/requests/__pycache__/hooks.cpython-34.pyc,,
|
|
289
|
-
pip/__pycache__/status_codes.cpython-34.pyc,,
|
|
290
|
-
pip/_vendor/requests/packages/chardet/__pycache__/chardetect.cpython-34.pyc,,
|
|
291
|
-
pip/_vendor/requests/packages/urllib3/util/__pycache__/__init__.cpython-34.pyc,,
|
|
292
|
-
pip/_vendor/requests/__pycache__/cookies.cpython-34.pyc,,
|
|
293
|
-
pip/commands/__pycache__/wheel.cpython-34.pyc,,
|
|
294
|
-
pip/__pycache__/exceptions.cpython-34.pyc,,
|
|
295
|
-
pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-34.pyc,,
|
|
296
|
-
pip/commands/__pycache__/completion.cpython-34.pyc,,
|
|
297
|
-
pip/_vendor/requests/packages/chardet/__pycache__/mbcsgroupprober.cpython-34.pyc,,
|
|
298
|
-
pip/_vendor/requests/packages/chardet/__pycache__/compat.cpython-34.pyc,,
|
|
299
|
-
pip/_vendor/requests/packages/urllib3/__pycache__/_collections.cpython-34.pyc,,
|
|
300
|
-
pip/_vendor/requests/packages/urllib3/__pycache__/poolmanager.cpython-34.pyc,,
|
|
301
|
-
pip/commands/__pycache__/__init__.cpython-34.pyc,,
|
|
302
|
-
pip/_vendor/requests/packages/chardet/__pycache__/mbcssm.cpython-34.pyc,,
|
|
303
|
-
pip/commands/__pycache__/bundle.cpython-34.pyc,,
|
|
304
|
-
pip/_vendor/requests/packages/urllib3/__pycache__/connection.cpython-34.pyc,,
|
|
305
|
-
pip/_vendor/requests/packages/chardet/__pycache__/universaldetector.cpython-34.pyc,,
|
|
306
|
-
pip/vcs/__pycache__/bazaar.cpython-34.pyc,,
|
|
307
|
-
pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-34.pyc,,
|
|
308
|
-
pip/_vendor/requests/packages/chardet/__pycache__/euctwfreq.cpython-34.pyc,,
|
|
309
|
-
pip/_vendor/requests/packages/urllib3/util/__pycache__/timeout.cpython-34.pyc,,
|
|
310
|
-
pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-34.pyc,,
|
|
311
|
-
pip/_vendor/requests/packages/chardet/__pycache__/langhebrewmodel.cpython-34.pyc,,
|
|
312
|
-
pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-34.pyc,,
|
|
313
|
-
pip/_vendor/requests/packages/urllib3/util/__pycache__/connection.cpython-34.pyc,,
|
|
314
|
-
pip/_vendor/requests/__pycache__/structures.cpython-34.pyc,,
|
|
315
|
-
pip/_vendor/requests/__pycache__/status_codes.cpython-34.pyc,,
|
|
316
|
-
pip/_vendor/requests/__pycache__/models.cpython-34.pyc,,
|
|
317
|
-
pip/_vendor/html5lib/__pycache__/sanitizer.cpython-34.pyc,,
|
|
318
|
-
pip/_vendor/requests/packages/urllib3/util/__pycache__/url.cpython-34.pyc,,
|
|
319
|
-
pip/_vendor/html5lib/__pycache__/ihatexml.cpython-34.pyc,,
|
|
320
|
-
pip/_vendor/colorama/__pycache__/ansi.cpython-34.pyc,,
|
|
321
|
-
pip/_vendor/requests/__pycache__/adapters.cpython-34.pyc,,
|
|
322
|
-
pip/_vendor/requests/packages/chardet/__pycache__/codingstatemachine.cpython-34.pyc,,
|
|
323
|
-
pip/_vendor/requests/packages/urllib3/__pycache__/filepost.cpython-34.pyc,,
|
|
324
|
-
pip/_vendor/requests/packages/chardet/__pycache__/charsetgroupprober.cpython-34.pyc,,
|
|
325
|
-
pip/__pycache__/basecommand.cpython-34.pyc,,
|
|
326
|
-
pip/_vendor/requests/packages/urllib3/packages/__pycache__/ordered_dict.cpython-34.pyc,,
|
|
327
|
-
pip/backwardcompat/__pycache__/__init__.cpython-34.pyc,,
|
|
328
|
-
pip/_vendor/distlib/__pycache__/manifest.cpython-34.pyc,,
|
|
329
|
-
pip/_vendor/requests/packages/chardet/__pycache__/langgreekmodel.cpython-34.pyc,,
|
|
330
|
-
pip/_vendor/requests/packages/urllib3/util/__pycache__/response.cpython-34.pyc,,
|
|
331
|
-
pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-34.pyc,,
|
|
332
|
-
pip/_vendor/requests/__pycache__/compat.cpython-34.pyc,,
|
|
333
|
-
pip/_vendor/requests/packages/urllib3/__pycache__/connectionpool.cpython-34.pyc,,
|
|
334
|
-
pip/_vendor/requests/packages/chardet/__pycache__/sbcharsetprober.cpython-34.pyc,,
|
|
335
|
-
pip/__pycache__/locations.cpython-34.pyc,,
|
|
336
|
-
pip/_vendor/distlib/__pycache__/compat.cpython-34.pyc,,
|
|
337
|
-
pip/_vendor/html5lib/treewalkers/__pycache__/_base.cpython-34.pyc,,
|
|
338
|
-
pip/_vendor/distlib/__pycache__/wheel.cpython-34.pyc,,
|
|
339
|
-
pip/_vendor/__pycache__/__init__.cpython-34.pyc,,
|
|
340
|
-
pip/_vendor/html5lib/__pycache__/inputstream.cpython-34.pyc,,
|
|
341
|
-
pip/_vendor/requests/__pycache__/utils.cpython-34.pyc,,
|
|
342
|
-
pip/_vendor/requests/__pycache__/sessions.cpython-34.pyc,,
|
|
343
|
-
pip/__pycache__/pep425tags.cpython-34.pyc,,
|
|
344
|
-
pip/_vendor/html5lib/treewalkers/__pycache__/pulldom.cpython-34.pyc,,
|
|
345
|
-
pip/_vendor/requests/packages/chardet/__pycache__/jisfreq.cpython-34.pyc,,
|
|
346
|
-
pip/_vendor/requests/packages/urllib3/__pycache__/fields.cpython-34.pyc,,
|
|
347
|
-
pip/_vendor/requests/packages/chardet/__pycache__/euctwprober.cpython-34.pyc,,
|
|
348
|
-
pip/_vendor/distlib/__pycache__/locators.cpython-34.pyc,,
|
|
349
|
-
pip/_vendor/distlib/__pycache__/resources.cpython-34.pyc,,
|
|
350
|
-
pip/_vendor/html5lib/trie/__pycache__/py.cpython-34.pyc,,
|
|
351
|
-
pip/commands/__pycache__/list.cpython-34.pyc,,
|
|
352
|
-
pip/_vendor/__pycache__/six.cpython-34.pyc,,
|
|
353
|
-
pip/_vendor/requests/packages/urllib3/contrib/__pycache__/pyopenssl.cpython-34.pyc,,
|
|
354
|
-
pip/__pycache__/__init__.cpython-34.pyc,,
|
|
355
|
-
pip/_vendor/requests/packages/chardet/__pycache__/langthaimodel.cpython-34.pyc,,
|
|
356
|
-
pip/_vendor/__pycache__/re-vendor.cpython-34.pyc,,
|
|
357
|
-
pip/_vendor/distlib/__pycache__/scripts.cpython-34.pyc,,
|
|
358
|
-
pip/_vendor/requests/packages/chardet/__pycache__/langcyrillicmodel.cpython-34.pyc,,
|
|
359
|
-
pip/_vendor/html5lib/treewalkers/__pycache__/genshistream.cpython-34.pyc,,
|
|
360
|
-
pip/_vendor/distlib/__pycache__/version.cpython-34.pyc,,
|
|
361
|
-
pip/vcs/__pycache__/git.cpython-34.pyc,,
|
|
362
|
-
pip/_vendor/html5lib/filters/__pycache__/_base.cpython-34.pyc,,
|
|
363
|
-
pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-34.pyc,,
|
|
364
|
-
pip/_vendor/requests/packages/chardet/__pycache__/utf8prober.cpython-34.pyc,,
|
|
365
|
-
pip/_vendor/requests/packages/chardet/__pycache__/chardistribution.cpython-34.pyc,,
|
|
366
|
-
pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-34.pyc,,
|
|
367
|
-
pip/_vendor/requests/__pycache__/auth.cpython-34.pyc,,
|
|
368
|
-
pip/_vendor/requests/packages/chardet/__pycache__/eucjpprober.cpython-34.pyc,,
|
|
369
|
-
pip/__pycache__/wheel.cpython-34.pyc,,
|
|
370
|
-
pip/_vendor/requests/packages/urllib3/__pycache__/request.cpython-34.pyc,,
|
|
371
|
-
pip/_vendor/colorama/__pycache__/initialise.cpython-34.pyc,,
|
|
372
|
-
pip/_vendor/requests/packages/chardet/__pycache__/latin1prober.cpython-34.pyc,,
|
|
373
|
-
pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-34.pyc,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version": "1.5.6", "license": "MIT", "summary": "A tool for installing and managing Python packages.", "test_requires": [{"requires": ["pytest", "virtualenv (>=1.10)", "scripttest (>=1.3)", "mock"]}], "generator": "bdist_wheel (0.23.0)", "document_names": {"description": "DESCRIPTION.rst"}, "run_requires": [{"extra": "testing", "requires": ["pytest", "virtualenv (>=1.10)", "scripttest (>=1.3)", "mock"]}], "exports": {"console_scripts": {"pip": "pip:main", "pip3": "pip:main", "pip3.4": "pip:main"}}, "name": "pip", "classifiers": ["Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Topic :: Software Development :: Build Tools", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3"], "metadata_version": "2.0", "keywords": "easy_install distutils setuptools egg virtualenv", "extras": ["testing"], "commands": {"wrap_console": {"pip": "pip:main", "pip3": "pip:main", "pip3.4": "pip:main"}}, "contacts": [{"email": "python-virtualenv@groups.google.com", "name": "The pip developers", "role": "author"}], "project_urls": {"Home": "https://pip.pypa.io/"}}
|