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
We want to run our Python scripts on a company server and connect to the Usabilla API via our corporate proxy. Although having found and read the similar question #35 for JS, it is not clear how to enable this with Python.
The text was updated successfully, but these errors were encountered:
the client queries the api with urllib, so setting the proxy in your environment variables should work. Something like this will do it: import os os.environ['http_proxy'] = '{YOUR_CORPORATE_HTTP_PROXY}' os.environ['https_proxy'] = '{YOUR_CORPORATE_HTTPS_PROXY}'
We want to run our Python scripts on a company server and connect to the Usabilla API via our corporate proxy. Although having found and read the similar question #35 for JS, it is not clear how to enable this with Python.
The text was updated successfully, but these errors were encountered: