def _get_ca_bundle():
"""
If verify=True, then requests is using the built in
certifi CA database. Attempt to get that path for
the websocket.
"""
try:
import certifi
return certifi.where()
except ImportError:
pass
评论列表
文章目录