本文整理汇总了Python中pkg_resources.ExtractionError方法的典型用法代码示例。如果您正苦于以下问题:Python pkg_resources.ExtractionError方法的具体用法?Python pkg_resources.ExtractionError怎么用?Python pkg_resources.ExtractionError使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pkg_resources
的用法示例。
在下文中一共展示了pkg_resources.ExtractionError方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: find_ca_bundle
# 需要导入模块: import pkg_resources [as 别名]
# 或者: from pkg_resources import ExtractionError [as 别名]
def find_ca_bundle():
"""Return an existing CA bundle path, or None"""
if os.name=='nt':
return get_win_certfile()
else:
for cert_path in cert_paths:
if os.path.isfile(cert_path):
return cert_path
try:
return pkg_resources.resource_filename('certifi', 'cacert.pem')
except (ImportError, ResolutionError, ExtractionError):
return None
示例2: _certifi_where
# 需要导入模块: import pkg_resources [as 别名]
# 或者: from pkg_resources import ExtractionError [as 别名]
def _certifi_where():
try:
return __import__('certifi').where()
except (ImportError, ResolutionError, ExtractionError):
pass
示例3: find_ca_bundle
# 需要导入模块: import pkg_resources [as 别名]
# 或者: from pkg_resources import ExtractionError [as 别名]
def find_ca_bundle():
"""Return an existing CA bundle path, or None"""
if os.name == 'nt':
return get_win_certfile()
else:
for cert_path in cert_paths:
if os.path.isfile(cert_path):
return cert_path
try:
return pkg_resources.resource_filename('certifi', 'cacert.pem')
except (ImportError, ResolutionError, ExtractionError):
return None
示例4: find_ca_bundle
# 需要导入模块: import pkg_resources [as 别名]
# 或者: from pkg_resources import ExtractionError [as 别名]
def find_ca_bundle():
"""Return an existing CA bundle path, or None"""
if os.name == 'nt':
return get_win_certfile()
else:
for cert_path in cert_paths:
if os.path.isfile(cert_path):
return cert_path
try:
import certifi
return certifi.where()
except (ImportError, ResolutionError, ExtractionError):
return None