Learn how to configure your requests to work with the Paradigm API when your company uses a proxy.
If your company uses a proxy to access external APIs, you need to specify its configuration in your requests to allow connection to our API’s Python client.Three methods are available to configure proxy usage:
The examples above have TLS certificate verification disabled, which should only be used for testing purposes.
When the verify parameter is set to False, requests will accept any TLS certificate presented by the server and ignore hostname mismatches and/or expired certificates, which makes your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify to False may be useful during development or local testing.The verify parameter can also be a string, in which case it must be a path to a CA bundle to use. The default value is True.