You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `httpx` client allows you to apply various configurations to all outgoing requests by passing parameters to the Client constructor.
114
+
115
+
Here are some of the options you can configure:
116
+
117
+
*`proxies`: Configure proxy settings to route requests through a specific proxy server.
118
+
*`headers`: Add custom headers to all outgoing requests.
119
+
*`timeout`: Set request and connection timeouts.
120
+
*`transport`: Use a custom transport layer for advanced scenarios.
121
+
122
+
**Important**: ensure you supply a valid httpx option. if you supply an option that doesn't exist in `httpx` the SDK will fail to initialize with `got an unexpected keyword argument`
0 commit comments