File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -333,18 +333,19 @@ can also get all the extra fields on the Pydantic model as a dict with
333333
334334You can directly override the [ httpx client] ( https://www.python-httpx.org/api/#client ) to customize it for your use case, including:
335335
336- - Support for proxies
337- - Custom transports
336+ - Support for [ proxies] ( https://www.python-httpx.org/advanced/proxies/ )
337+ - Custom [ transports] ( https://www.python-httpx.org/advanced/transports/ )
338338- Additional [ advanced] ( https://www.python-httpx.org/advanced/clients/ ) functionality
339339
340340``` python
341+ import httpx
341342from asktable import Asktable, DefaultHttpxClient
342343
343344client = Asktable(
344345 # Or use the `ASKTABLE_BASE_URL` env var
345346 base_url = " http://my.test.server.example.com:8083" ,
346347 http_client = DefaultHttpxClient(
347- proxies = " http://my.test.proxy.example.com" ,
348+ proxy = " http://my.test.proxy.example.com" ,
348349 transport = httpx.HTTPTransport(local_address = " 0.0.0.0" ),
349350 ),
350351)
You can’t perform that action at this time.
0 commit comments