Skip to content

Commit

Permalink
Add urllib3proxy transport to init (#979)
Browse files Browse the repository at this point in the history
* Update HTTP/2 docs

* Include URLLib3ProxyTransport in top-level API

* Linting
  • Loading branch information
tomchristie authored May 22, 2020
1 parent bafa32a commit c30acf0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion httpx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from ._models import URL, Cookies, Headers, QueryParams, Request, Response
from ._status_codes import StatusCode, codes
from ._transports.asgi import ASGIDispatch, ASGITransport
from ._transports.urllib3 import URLLib3Transport
from ._transports.urllib3 import URLLib3ProxyTransport, URLLib3Transport
from ._transports.wsgi import WSGIDispatch, WSGITransport

__all__ = [
Expand Down Expand Up @@ -74,6 +74,7 @@
"WriteTimeout",
"URL",
"URLLib3Transport",
"URLLib3ProxyTransport",
"StatusCode",
"Cookies",
"Headers",
Expand Down

0 comments on commit c30acf0

Please sign in to comment.