| Server IP : 162.241.226.12 / Your IP : 216.73.217.142 Web Server : Apache System : Linux box5305.bluehost.com 5.14.0-687.39.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Aug 18 06:09:16 EDT 2026 x86_64 User : zphiblgz ( 1848) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/lib/python3.9/site-packages/certifi/ |
Upload File : |
"""
certifi.py
~~~~~~~~~~
This module returns the installation location of cacert.pem or its contents.
"""
# The RPM-packaged certifi always uses the system certificates
def where() -> str:
return '/etc/pki/tls/certs/ca-bundle.crt'
def contents() -> str:
with open(where(), encoding='utf=8') as data:
return data.read()