本文整理汇总了Python中saml2.mdstore.MetadataStore.identity_providers方法的典型用法代码示例。如果您正苦于以下问题:Python MetadataStore.identity_providers方法的具体用法?Python MetadataStore.identity_providers怎么用?Python MetadataStore.identity_providers使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类saml2.mdstore.MetadataStore
的用法示例。
在下文中一共展示了MetadataStore.identity_providers方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: ac_factory
# 需要导入模块: from saml2.mdstore import MetadataStore [as 别名]
# 或者: from saml2.mdstore.MetadataStore import identity_providers [as 别名]
dri.NAMESPACE: dri,
ui.NAMESPACE: ui,
idpdisc.NAMESPACE: idpdisc,
md.NAMESPACE: md,
xmldsig.NAMESPACE: xmldsig,
xmlenc.NAMESPACE: xmlenc
}
ATTRCONV = ac_factory()
sec_config.xmlsec_binary = sigver.get_xmlsec_binary(["/opt/local/bin"])
mds = MetadataStore(ONTS.values(), ATTRCONV, sec_config,
disable_ssl_certificate_validation=True)
mds.imp({"mdfile": ["swamid2.md"]})
# Nagios or or Not Nagios output based on command argument
NAGIOS = False
if len(sys.argv) > 1:
if sys.argv[1].lower() == "nagios":
NAGIOS = True
for entity_id in mds.identity_providers():
if NAGIOS:
p = subprocess.Popen(['./mccs.py', "-N", "-e", entity_id, "conf"],
stdout=subprocess.PIPE)
else:
p = subprocess.Popen(['./mccs.py', "-e", entity_id, "conf"],
stdout=subprocess.PIPE)
print p.stdout.read()