Skip to content

Commit 44a787b

Browse files
chore(internal): codegen related update (#64)
1 parent 31d5f45 commit 44a787b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -333,18 +333,19 @@ can also get all the extra fields on the Pydantic model as a dict with
333333

334334
You 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
341342
from asktable import Asktable, DefaultHttpxClient
342343

343344
client = 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
)

0 commit comments

Comments
 (0)