All Projects → urllib3 → Urllib3

urllib3 / Urllib3

Licence: mit
Python HTTP library with thread-safe connection pooling, file post support, user friendly, and more.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Urllib3

Grab
Web Scraping Framework
Stars: ✭ 2,147 (-24.85%)
Mutual labels:  http-client, urllib3
Aleph
Asynchronous communication for Clojure
Stars: ✭ 2,389 (-16.38%)
Mutual labels:  http-client
Rehttp
Package rehttp implements a Go HTTP transport that handles retries.
Stars: ✭ 170 (-94.05%)
Mutual labels:  http-client
Http Kit
http-kit is a minimalist, event-driven, high-performance Clojure HTTP server/client library with WebSocket and asynchronous support
Stars: ✭ 2,234 (-21.81%)
Mutual labels:  http-client
Crest
HTTP and REST client for Crystal
Stars: ✭ 174 (-93.91%)
Mutual labels:  http-client
Ob Http
make http request within org-mode babel
Stars: ✭ 191 (-93.31%)
Mutual labels:  http-client
Libhv
🔥 比libevent、libuv更易用的国产网络库。A c/c++ network library for developing TCP/UDP/SSL/HTTP/WebSocket client/server.
Stars: ✭ 3,355 (+17.43%)
Mutual labels:  http-client
Avhttp
avhttp is concurrent http downloader
Stars: ✭ 232 (-91.88%)
Mutual labels:  http-client
Fluenthttpclient
A modern async HTTP client for REST APIs. Its fluent interface lets you send an HTTP request and parse the response in one go.
Stars: ✭ 208 (-92.72%)
Mutual labels:  http-client
Httplug
HTTPlug, the HTTP client abstraction for PHP
Stars: ✭ 2,295 (-19.67%)
Mutual labels:  http-client
Wretch
A tiny wrapper built around fetch with an intuitive syntax. 🍬
Stars: ✭ 2,285 (-20.02%)
Mutual labels:  http-client
Fshttp
A lightweight F# HTTP library.
Stars: ✭ 181 (-93.66%)
Mutual labels:  http-client
Rester
A REST client for almost any web service (Firefox and Chrome Extension)
Stars: ✭ 192 (-93.28%)
Mutual labels:  http-client
Resilient.js
Fault tolerant and reactive HTTP client for node.js and browsers
Stars: ✭ 172 (-93.98%)
Mutual labels:  http-client
Http Client
An HTTP client engine, intended as a base layer for more user-friendly packages.
Stars: ✭ 214 (-92.51%)
Mutual labels:  http-client
Http4s
A minimal, idiomatic Scala interface for HTTP
Stars: ✭ 2,173 (-23.94%)
Mutual labels:  http-client
Play Ws
Standalone Play WS, an async HTTP client with fluent API
Stars: ✭ 190 (-93.35%)
Mutual labels:  http-client
Punchclock
Make sure your asynchronous operations show up to work on time
Stars: ✭ 235 (-91.77%)
Mutual labels:  http-client
Http Client
[Deprecated] Event-driven, streaming HTTP client for ReactPHP.
Stars: ✭ 228 (-92.02%)
Mutual labels:  http-client
Donkey
Modern Clojure HTTP server and client built for ease of use and performance
Stars: ✭ 199 (-93.03%)
Mutual labels:  http-client

urllib3

PyPI Version Python Versions Join our Discord Coverage Status Build Status on GitHub Documentation Status

urllib3 is a powerful, user-friendly HTTP client for Python. Much of the Python ecosystem already uses urllib3 and you should too. urllib3 brings many critical features that are missing from the Python standard libraries:

  • Thread safety.
  • Connection pooling.
  • Client-side SSL/TLS verification.
  • File uploads with multipart encoding.
  • Helpers for retrying requests and dealing with HTTP redirects.
  • Support for gzip, deflate, and brotli encoding.
  • Proxy support for HTTP and SOCKS.
  • 100% test coverage.

urllib3 is powerful and easy to use:

>>> import urllib3
>>> http = urllib3.PoolManager()
>>> resp = http.request("GET", "http://httpbin.org/robots.txt")
>>> resp.status
200
>>> resp.data
b"User-agent: *\nDisallow: /deny\n"

Installing

urllib3 can be installed with pip:

$ python -m pip install urllib3

Alternatively, you can grab the latest source code from GitHub:

$ git clone git://github.com/urllib3/urllib3.git
$ python setup.py install

Documentation

urllib3 has usage and reference documentation at urllib3.readthedocs.io.

Community

urllib3 has a community Discord channel for asking questions and collaborating with other contributors. Drop by and say hello 👋

Contributing

urllib3 happily accepts contributions. Please see our contributing documentation for some tips on getting started.

Security Disclosures

To report a security vulnerability, please use the Tidelift security contact. Tidelift will coordinate the fix and disclosure with maintainers.

Maintainers

👋

Sponsorship

If your company benefits from this library, please consider sponsoring its development.

For Enterprise

Tidelift Professional support for urllib3 is available as part of the Tidelift Subscription. Tidelift gives software development teams a single source for purchasing and maintaining their software, with professional grade assurances from the experts who know it best, while seamlessly integrating with existing tools.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].