Mercurial > repos > jpayne > bioproject_to_srr_2
comparison urllib3-2.2.1.dist-info/METADATA @ 7:5eb2d5e3bf22
planemo upload for repository https://toolrepo.galaxytrakr.org/view/jpayne/bioproject_to_srr_2/556cac4fb538
author | jpayne |
---|---|
date | Sun, 05 May 2024 23:32:17 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
6:b2745907b1eb | 7:5eb2d5e3bf22 |
---|---|
1 Metadata-Version: 2.1 | |
2 Name: urllib3 | |
3 Version: 2.2.1 | |
4 Summary: HTTP library with thread-safe connection pooling, file post, and more. | |
5 Project-URL: Changelog, https://github.com/urllib3/urllib3/blob/main/CHANGES.rst | |
6 Project-URL: Documentation, https://urllib3.readthedocs.io | |
7 Project-URL: Code, https://github.com/urllib3/urllib3 | |
8 Project-URL: Issue tracker, https://github.com/urllib3/urllib3/issues | |
9 Author-email: Andrey Petrov <andrey.petrov@shazow.net> | |
10 Maintainer-email: Seth Michael Larson <sethmichaellarson@gmail.com>, Quentin Pradet <quentin@pradet.me>, Illia Volochii <illia.volochii@gmail.com> | |
11 License-File: LICENSE.txt | |
12 Keywords: filepost,http,httplib,https,pooling,ssl,threadsafe,urllib | |
13 Classifier: Environment :: Web Environment | |
14 Classifier: Intended Audience :: Developers | |
15 Classifier: License :: OSI Approved :: MIT License | |
16 Classifier: Operating System :: OS Independent | |
17 Classifier: Programming Language :: Python | |
18 Classifier: Programming Language :: Python :: 3 | |
19 Classifier: Programming Language :: Python :: 3 :: Only | |
20 Classifier: Programming Language :: Python :: 3.8 | |
21 Classifier: Programming Language :: Python :: 3.9 | |
22 Classifier: Programming Language :: Python :: 3.10 | |
23 Classifier: Programming Language :: Python :: 3.11 | |
24 Classifier: Programming Language :: Python :: 3.12 | |
25 Classifier: Programming Language :: Python :: Implementation :: CPython | |
26 Classifier: Programming Language :: Python :: Implementation :: PyPy | |
27 Classifier: Topic :: Internet :: WWW/HTTP | |
28 Classifier: Topic :: Software Development :: Libraries | |
29 Requires-Python: >=3.8 | |
30 Provides-Extra: brotli | |
31 Requires-Dist: brotli>=1.0.9; (platform_python_implementation == 'CPython') and extra == 'brotli' | |
32 Requires-Dist: brotlicffi>=0.8.0; (platform_python_implementation != 'CPython') and extra == 'brotli' | |
33 Provides-Extra: h2 | |
34 Requires-Dist: h2<5,>=4; extra == 'h2' | |
35 Provides-Extra: socks | |
36 Requires-Dist: pysocks!=1.5.7,<2.0,>=1.5.6; extra == 'socks' | |
37 Provides-Extra: zstd | |
38 Requires-Dist: zstandard>=0.18.0; extra == 'zstd' | |
39 Description-Content-Type: text/markdown | |
40 | |
41 <h1 align="center"> | |
42 | |
43 ![urllib3](https://github.com/urllib3/urllib3/raw/main/docs/_static/banner_github.svg) | |
44 | |
45 </h1> | |
46 | |
47 <p align="center"> | |
48 <a href="https://pypi.org/project/urllib3"><img alt="PyPI Version" src="https://img.shields.io/pypi/v/urllib3.svg?maxAge=86400" /></a> | |
49 <a href="https://pypi.org/project/urllib3"><img alt="Python Versions" src="https://img.shields.io/pypi/pyversions/urllib3.svg?maxAge=86400" /></a> | |
50 <a href="https://discord.gg/urllib3"><img alt="Join our Discord" src="https://img.shields.io/discord/756342717725933608?color=%237289da&label=discord" /></a> | |
51 <a href="https://github.com/urllib3/urllib3/actions?query=workflow%3ACI"><img alt="Coverage Status" src="https://img.shields.io/badge/coverage-100%25-success" /></a> | |
52 <a href="https://github.com/urllib3/urllib3/actions?query=workflow%3ACI"><img alt="Build Status on GitHub" src="https://github.com/urllib3/urllib3/workflows/CI/badge.svg" /></a> | |
53 <a href="https://urllib3.readthedocs.io"><img alt="Documentation Status" src="https://readthedocs.org/projects/urllib3/badge/?version=latest" /></a><br> | |
54 <a href="https://deps.dev/pypi/urllib3"><img alt="OpenSSF Scorecard" src="https://api.securityscorecards.dev/projects/github.com/urllib3/urllib3/badge" /></a> | |
55 <a href="https://slsa.dev"><img alt="SLSA 3" src="https://slsa.dev/images/gh-badge-level3.svg" /></a> | |
56 <a href="https://bestpractices.coreinfrastructure.org/projects/6227"><img alt="CII Best Practices" src="https://bestpractices.coreinfrastructure.org/projects/6227/badge" /></a> | |
57 </p> | |
58 | |
59 urllib3 is a powerful, *user-friendly* HTTP client for Python. Much of the | |
60 Python ecosystem already uses urllib3 and you should too. | |
61 urllib3 brings many critical features that are missing from the Python | |
62 standard libraries: | |
63 | |
64 - Thread safety. | |
65 - Connection pooling. | |
66 - Client-side SSL/TLS verification. | |
67 - File uploads with multipart encoding. | |
68 - Helpers for retrying requests and dealing with HTTP redirects. | |
69 - Support for gzip, deflate, brotli, and zstd encoding. | |
70 - Proxy support for HTTP and SOCKS. | |
71 - 100% test coverage. | |
72 | |
73 urllib3 is powerful and easy to use: | |
74 | |
75 ```python3 | |
76 >>> import urllib3 | |
77 >>> resp = urllib3.request("GET", "http://httpbin.org/robots.txt") | |
78 >>> resp.status | |
79 200 | |
80 >>> resp.data | |
81 b"User-agent: *\nDisallow: /deny\n" | |
82 ``` | |
83 | |
84 ## Installing | |
85 | |
86 urllib3 can be installed with [pip](https://pip.pypa.io): | |
87 | |
88 ```bash | |
89 $ python -m pip install urllib3 | |
90 ``` | |
91 | |
92 Alternatively, you can grab the latest source code from [GitHub](https://github.com/urllib3/urllib3): | |
93 | |
94 ```bash | |
95 $ git clone https://github.com/urllib3/urllib3.git | |
96 $ cd urllib3 | |
97 $ pip install . | |
98 ``` | |
99 | |
100 | |
101 ## Documentation | |
102 | |
103 urllib3 has usage and reference documentation at [urllib3.readthedocs.io](https://urllib3.readthedocs.io). | |
104 | |
105 | |
106 ## Community | |
107 | |
108 urllib3 has a [community Discord channel](https://discord.gg/urllib3) for asking questions and | |
109 collaborating with other contributors. Drop by and say hello 👋 | |
110 | |
111 | |
112 ## Contributing | |
113 | |
114 urllib3 happily accepts contributions. Please see our | |
115 [contributing documentation](https://urllib3.readthedocs.io/en/latest/contributing.html) | |
116 for some tips on getting started. | |
117 | |
118 | |
119 ## Security Disclosures | |
120 | |
121 To report a security vulnerability, please use the | |
122 [Tidelift security contact](https://tidelift.com/security). | |
123 Tidelift will coordinate the fix and disclosure with maintainers. | |
124 | |
125 | |
126 ## Maintainers | |
127 | |
128 - [@sethmlarson](https://github.com/sethmlarson) (Seth M. Larson) | |
129 - [@pquentin](https://github.com/pquentin) (Quentin Pradet) | |
130 - [@illia-v](https://github.com/illia-v) (Illia Volochii) | |
131 - [@theacodes](https://github.com/theacodes) (Thea Flowers) | |
132 - [@haikuginger](https://github.com/haikuginger) (Jess Shapiro) | |
133 - [@lukasa](https://github.com/lukasa) (Cory Benfield) | |
134 - [@sigmavirus24](https://github.com/sigmavirus24) (Ian Stapleton Cordasco) | |
135 - [@shazow](https://github.com/shazow) (Andrey Petrov) | |
136 | |
137 👋 | |
138 | |
139 | |
140 ## Sponsorship | |
141 | |
142 If your company benefits from this library, please consider [sponsoring its | |
143 development](https://urllib3.readthedocs.io/en/latest/sponsors.html). | |
144 | |
145 | |
146 ## For Enterprise | |
147 | |
148 Professional support for urllib3 is available as part of the [Tidelift | |
149 Subscription][1]. Tidelift gives software development teams a single source for | |
150 purchasing and maintaining their software, with professional grade assurances | |
151 from the experts who know it best, while seamlessly integrating with existing | |
152 tools. | |
153 | |
154 [1]: https://tidelift.com/subscription/pkg/pypi-urllib3?utm_source=pypi-urllib3&utm_medium=referral&utm_campaign=readme |