Go to file
2019-08-14 22:30:02 -05:00
docs Add additional info to Contributing Guide (#213) 2019-08-14 21:37:44 -05:00
httpx Accept SSLContext into SSLConfig(verify=...) (#215) 2019-08-14 22:30:02 -05:00
scripts Use nox for automation and CI (#128) 2019-08-13 08:39:35 -05:00
tests Accept SSLContext into SSLConfig(verify=...) (#215) 2019-08-14 22:30:02 -05:00
.gitignore Add flake8-comprehensions to nox check task (#200) 2019-08-13 09:22:18 -05:00
.travis.yml Use nox for automation and CI (#128) 2019-08-13 08:39:35 -05:00
LICENSE.md Initial commit 2019-04-04 13:27:55 +01:00
mkdocs.yml Create a Contributing page in the documentation (#190) 2019-08-06 16:52:54 -05:00
noxfile.py Move all tooling configuration to setup.cfg (#204) 2019-08-13 16:27:00 -05:00
README.md Add additional info to Contributing Guide (#213) 2019-08-14 21:37:44 -05:00
setup.cfg Fail unit tests without 100% coverage (#206) 2019-08-14 21:45:28 -05:00
setup.py Use pathlib.Path instead of os.path functions (#188) 2019-08-08 21:42:25 -05:00
test-requirements.txt Use nox for automation and CI (#128) 2019-08-13 08:39:35 -05:00

HTTPX

HTTPX - A next-generation HTTP client for Python.

Build Status Coverage Package version

Note: 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...

>>> import httpx
>>> r = httpx.get('https://www.example.org/')
>>> r
<Response [200 OK]>
>>> r.status_code
200
>>> r.protocol
'HTTP/2'
>>> r.headers['content-type']
'text/html; charset=UTF-8'
>>> r.text
'<!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

Installation

Install with pip:

$ pip install httpx

httpx requires Python 3.6+

Documentation

Project documentation is available at www.encode.io/httpx/.

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.

Contribute

If you want to contribute with HTTPX check out the Contributing Guide to learn how to start.

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.

HTTPX is BSD licensed code. Designed & built in Brighton, England.