Urllib3

urllib3 is a user-friendly HTTP client library for Python
Alternatives To Urllib3
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Cpp Httplib9,564
2 days ago1August 03, 202219mitC++
A C++ header-only HTTP/HTTPS server and client library
Async Http Client6,1021,83146811 days ago126October 13, 201689otherJava
Asynchronous Http and WebSocket Client library for Java
Urllib33,40737,7175,540a day ago71March 16, 2022125mitPython
urllib3 is a user-friendly HTTP client library for Python
Reading Code Of Nginx 1.9.23,211
2 years ago11gpl-3.0C
nginx-1.9.2源码通读分析注释,带详尽函数中文分析注释以及相关函数流程调用注释,最全面的nginx源码阅读分析中文注释,更新完毕
Evpp3,121
7 months ago130bsd-3-clauseC++
A modern C++ network library for developing high performance network services in TCP/UDP/HTTP protocols.
Onion1,872
9 months ago59otherC
C library to create simple HTTP servers and Web Applications.
Restclient Cpp1,412
8 months ago28mitC++
C++ client for making HTTP/REST requests
Brynet904
4 months ago26mitC++
A Header-Only cross-platform C++ TCP network library . We can use vcpkg(https://github.com/Microsoft/vcpkg/tree/master/ports/brynet) install brynet.
Volley Demo903
7 years ago4Java
An demonstration of Volley - HTTP library announced by google in I/O 2013. Illustrates, JSONRequest,StringRequest, Image caching.
Tiny Http8461778315 days ago29February 25, 202248apache-2.0Rust
Low level HTTP server library in Rust
Alternatives To Urllib3
Select To Compare


Alternative Project Comparisons
Readme

urllib3

PyPI Version Python Versions Join our Discord Coverage Status Build Status on GitHub Documentation Status
OpenSSF Scorecard SLSA 3 CII Best Practices

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, brotli, and zstd encoding.
  • Proxy support for HTTP and SOCKS.
  • 100% test coverage.

urllib3 is powerful and easy to use:

>>> import urllib3
>>> resp = urllib3.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 https://github.com/urllib3/urllib3.git
$ cd urllib3
$ pip 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

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.

Popular Http Projects
Popular Thread Projects
Popular Networking Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Python
Http
Thread
Http Client