Skip to main content

Skip SSL verification for requests.

Project description

requests-skip-verify

This package can skip SSL verification for the requests library with a single command.
Avoid SSL errors under proxies and hide warnings.

You don't need to add "verify=False" to every HTTP request anymore.

Quickstart

Install using pip:

pip install requests-skip-verify

Disable SSL Verification:

import requests
import requests_skip_verify

# Switch SSL verification
requests_skip_verify.set(True)

requests.get("https://example.com/")

ReEnable SSL Verification:

import requests
import requests_skip_verify

# Switch SSL verification
requests_skip_verify.set(False)

requests.get("https://example.com/")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

requests-skip-verify-0.0.2.tar.gz (2.6 kB view hashes)

Uploaded Source

Built Distribution

requests_skip_verify-0.0.2-py3-none-any.whl (3.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page