File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -397,18 +397,19 @@ can also get all the extra fields on the Pydantic model as a dict with
397
397
398
398
You can directly override the [ httpx client] ( https://www.python-httpx.org/api/#client ) to customize it for your use case, including:
399
399
400
- - Support for proxies
401
- - Custom transports
400
+ - Support for [ proxies] ( https://www.python-httpx.org/advanced/proxies/ )
401
+ - Custom [ transports] ( https://www.python-httpx.org/advanced/transports/ )
402
402
- Additional [ advanced] ( https://www.python-httpx.org/advanced/clients/ ) functionality
403
403
404
404
``` python
405
+ import httpx
405
406
from orb import Orb, DefaultHttpxClient
406
407
407
408
client = Orb(
408
409
# Or use the `ORB_BASE_URL` env var
409
410
base_url = " http://my.test.server.example.com:8083" ,
410
411
http_client = DefaultHttpxClient(
411
- proxies = " http://my.test.proxy.example.com" ,
412
+ proxy = " http://my.test.proxy.example.com" ,
412
413
transport = httpx.HTTPTransport(local_address = " 0.0.0.0" ),
413
414
),
414
415
)
You can’t perform that action at this time.
0 commit comments