certifi

Mozilla CA bundle for Python SSL certificate verification

brewmacoslinux
Try with needOr install directly
Source

About

Mozilla CA bundle for Python

Commands

certifi

Examples

Get the path to the CA bundle file in Python$ python -c "import certifi; print(certifi.where())"
Use certifi with requests library for HTTPS verification$ python -c "import requests, certifi; requests.get('https://example.com', verify=certifi.where())"
Check certifi version$ python -c "import certifi; print(certifi.__version__)"