Introduction - 图1

HTTPX

Build Status Coverage Package version

A next-generation HTTP client for Python.

!!! warning This project should be considered as an “alpha” release. It is substantially API complete, but there are still some areas that need more work.


Let’s get started…

  1. >>> import httpx
  2. >>> r = httpx.get('https://www.example.org/')
  3. >>> r
  4. <Response [200 OK]>
  5. >>> r.status_code
  6. 200
  7. >>> r.protocol
  8. 'HTTP/2'
  9. >>> r.headers['content-type']
  10. 'text/html; charset=UTF-8'
  11. >>> r.text
  12. '<!doctype html>\n<html>\n<head>\n<title>Example Domain</title>...'

Features

HTTPX builds on the well-established usability of requests, and gives you:

Plus all the standard features of requests

  • International Domains and URLs
  • Keep-Alive & Connection Pooling
  • Sessions with Cookie Persistence
  • Browser-style SSL Verification
  • Basic/Digest Authentication (Digest is still TODO)
  • Elegant Key/Value Cookies
  • Automatic Decompression
  • Automatic Content Decoding
  • Unicode Response Bodies
  • Multipart File Uploads
  • HTTP(S) Proxy Support (TODO)
  • Connection Timeouts
  • Streaming Downloads
  • .netrc Support (TODO)
  • Chunked Requests

Documentation

For a run-through of all the basics, head over to the QuickStart.

For more advanced topics, see the Advanced Usage section, or the specific topics on making Parallel Requests or using the Async Client.

The Developer Interface provides a comprehensive API reference.

Dependencies

The HTTPX project relies on these excellent libraries:

  • h2 - HTTP/2 support.
  • h11 - HTTP/1.1 support.
  • certifi - SSL certificates.
  • chardet - Fallback auto-detection for response encoding.
  • idna - Internationalized domain name support.
  • rfc3986 - URL parsing & normalization.
  • brotlipy - Decoding for “brotli” compressed responses. (Optional)

A huge amount of credit is due to requests for the API layout that much of this work follows, as well as to urllib3 for plenty of design inspiration around the lower level networking details.

Installation

Install with pip:

  1. $ pip install httpx

HTTPX requires Python 3.6+