D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
lib
/
python2.7
/
site-packages
/
pip
/
_vendor
/
certifi
/
Filename :
core.py
back
Copy
#!/usr/bin/env python # -*- coding: utf-8 -*- """ certifi.py ~~~~~~~~~~ This module returns the installation location of cacert.pem. """ import os import warnings class DeprecatedBundleWarning(DeprecationWarning): """ The weak security bundle is being deprecated. Please bother your service provider to get them to stop using cross-signed roots. """ def where(): return '/etc/pki/tls/certs/ca-bundle.crt' def old_where(): warnings.warn( "The weak security bundle has been removed. certifi.old_where() is now an alias " "of certifi.where(). Please update your code to use certifi.where() instead. " "certifi.old_where() will be removed in 2018.", DeprecatedBundleWarning ) return where() if __name__ == '__main__': print(where())
Name
Size
Last Modified
Owner
Permissions
Actions
__init__.py
0.062
KB
April 21 2022 6:08:21
root
0644
__init__.pyc
0.259
KB
April 21 2022 6:08:34
root
0644
__init__.pyo
0.259
KB
April 21 2022 6:08:34
root
0644
__main__.py
0.04
KB
April 21 2022 6:08:21
root
0644
__main__.pyc
0.209
KB
April 21 2022 6:08:34
root
0644
__main__.pyo
0.209
KB
April 21 2022 6:08:34
root
0644
core.py
0.787
KB
April 21 2022 6:08:21
root
0644
core.pyc
1.324
KB
April 21 2022 6:08:34
root
0644
core.pyo
1.324
KB
April 21 2022 6:08:34
root
0644
2017 © D7net | D704T team