def get_session(other_creds={}):
auth = get_session_auth(other_creds)
https_cacert = os.getenv('OS_CACERT', '')
https_insecure = os.getenv('OS_INSECURE', '').lower() == 'true'
return session.Session(auth=auth,
verify=(https_cacert or not https_insecure))
# *********************************************
# CLIENTS
# *********************************************
评论列表
文章目录