本文整理汇总了Python中rucio.client.Client.add_key方法的典型用法代码示例。如果您正苦于以下问题:Python Client.add_key方法的具体用法?Python Client.add_key怎么用?Python Client.add_key使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类rucio.client.Client
的用法示例。
在下文中一共展示了Client.add_key方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: locals
# 需要导入模块: from rucio.client import Client [as 别名]
# 或者: from rucio.client.Client import add_key [as 别名]
c.add_scope("root", "scope%s" % scopes_total)
except Duplicate:
pass
except Exception:
errno, errstr = sys.exc_info()[:2]
trcbck = traceback.format_exc()
print "Interrupted processing with %s %s %s." % (errno, errstr, trcbck)
sys.exit(CRITICAL)
scopes_total -= 1
print "6. Adding %s artificial scopes for the user root finished" % tmp
# 7. Define meta data
for key, key_type, value_regexp, values in meta_keys:
try:
try:
c.add_key(key=key, key_type=key_type, value_regexp=value_regexp)
except Duplicate:
print "%(key)s already added" % locals()
for value in values:
try:
c.add_value(key=key, value=value)
except Duplicate:
print "%(key)s:%(value)s already added" % locals()
if key == "project":
try:
c.add_scope("root", value)
except Duplicate:
print "Scope %(value)s already added" % locals()