Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on May 21, 2023. It is now read-only.

Python HTTP library with thread-safe connection pooling, file post support, sanity friendly, and more.

License

NotificationsYou must be signed in to change notification settings

python-telegram-bot/urllib3

 
 

Repository files navigation

Build status on TravisDocumentation StatusPyPI versionBountysource

urllib3 is a powerful,sanity-friendly HTTP client for Python. Much of thePython ecosystem already uses urllib3 and you should too.urllib3 brings many critical features that are missing from the Pythonstandard 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 and deflate encoding.
  • Proxy support for HTTP and SOCKS.
  • 100% test coverage.

urllib3 is powerful and easy to use:

>>> import urllib3>>> http = urllib3.PoolManager()>>> r = http.request('GET', 'http://httpbin.org/robots.txt')>>> r.status200>>> r.data'User-agent: *\nDisallow: /deny\n'

Installing

urllib3 can be installed withpip:

$ pip install urllib3

Alternatively, you can grab the latest source code fromGitHub:

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

Documentation

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

Contributing

urllib3 happily accepts contributions. Please see ourcontributing documentationfor some tips on getting started.

Maintainers

👋

Sponsorship

If your company benefits from this library, please considersponsoring itsdevelopment.

About

Python HTTP library with thread-safe connection pooling, file post support, sanity friendly, and more.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python99.3%
  • Other0.7%

[8]ページ先頭

©2009-2025 Movatter.jp