當前位置: 首頁>>代碼示例>>Python>>正文


Python Client.add_account方法代碼示例

本文整理匯總了Python中rucio.client.Client.add_account方法的典型用法代碼示例。如果您正苦於以下問題:Python Client.add_account方法的具體用法?Python Client.add_account怎麽用?Python Client.add_account使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在rucio.client.Client的用法示例。


在下文中一共展示了Client.add_account方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: open

# 需要導入模塊: from rucio.client import Client [as 別名]
# 或者: from rucio.client.Client import add_account [as 別名]
from rucio.client import Client
from rucio.common.exception import Duplicate

if __name__ == '__main__':

    info = []
    f = open ('tools/atlas_accounts.csv')
#    f = open ('user_accounts.csv')
    for line in f.readlines():
        account, dn, email = line.rstrip().split('\t')
        info.append((account, dn, email))
    f.close()

    c = Client()
    for account, dn, email in info:
        try:
            c.add_account(account=account, type='USER')
        except Duplicate:
           print 'Account %(account)s already added' % locals()

        try:
            c.add_identity(account=account, identity=dn, authtype='X509', email=email , default=True)
        except Duplicate:
           print 'Identity %(account)s already added' % locals()

        try:
            scope = 'user.' + account
            c.add_scope(account, scope)
        except Duplicate:
           print 'Scope %(scope)s already added' % locals()
開發者ID:pombredanne,項目名稱:rucio,代碼行數:32,代碼來源:sync_user_accounts.py

示例2: users

# 需要導入模塊: from rucio.client import Client [as 別名]
# 或者: from rucio.client.Client import add_account [as 別名]
        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)
        rses_total -= 1
    print "2. Adding %s artificial RSEs finished." % tmp

    # 3. Create known users
    tmp = users_total
    for user in known_users:
        print "Adding account %s" % user[0]
        try:
            c.add_account(user[0], user[1])
            c.add_scope(user[0], user[0])  # Adding default scope
        except Duplicate:
            print "User %s already exists" % user[0]
        users_total -= 1
    print "3. Adding %s known users finished." % (tmp - users_total)
    tmp = users_total
    # 4. Fill up DB to total number of Users
    while users_total:
        try:
            c.add_account("user%s" % users_total, "user")  # Adding user
            c.add_scope("user%s" % users_total, "user%s" % users_total)  # Adding default scope
        except Duplicate:
            print "User user%s already exists" % users_total
        users_total -= 1
    print "4. Adding %s artificial users (and default scopes) finished." % tmp
開發者ID:pombredanne,項目名稱:rucio,代碼行數:33,代碼來源:bootstrap_stresstest.py

示例3: open

# 需要導入模塊: from rucio.client import Client [as 別名]
# 或者: from rucio.client.Client import add_account [as 別名]
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#                       http://www.apache.org/licenses/LICENSE-2.0
#
# Authors:
# - Vincent Garonne, <[email protected]>, 2013

from rucio.client import Client
from rucio.common.exception import Duplicate

if __name__ == '__main__':

    info = []
    f = open ('tools/atlas_groups.csv')
    for line in f.readlines():
         group = line.rstrip()
         info.append(group)
    f.close()

    c = Client()
    for group in info:
        try:
            account = group.split('.')[1]
            c.add_account(account=account, type='GROUP')
        except Duplicate:
           print 'Account %(account)s already added' % locals()

        try:
            c.add_scope(account, scope=group)
        except Duplicate:
           print 'Scope %(group)s already added' % locals()
開發者ID:pombredanne,項目名稱:rucio,代碼行數:33,代碼來源:sync_group_accounts.py

示例4: Client

# 需要導入模塊: from rucio.client import Client [as 別名]
# 或者: from rucio.client.Client import add_account [as 別名]
# Licensed under the Apache License, Version 2.0 (the "License");
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
#
# Authors:
# - Vincent Garonne, <[email protected]>, 2013
# - Mario Lassnig, <[email protected]>, 2014

from rucio.client import Client
from rucio.common.exception import Duplicate

if __name__ == "__main__":
    c = Client()
    try:
        c.add_account("jdoe", "SERVICE")
    except Duplicate:
        print "Account jdoe already added" % locals()

    try:
        c.add_scope("jdoe", "mock")
    except Duplicate:
        print "Scope mock already added" % locals()

    # add your accounts here, if you test against CERN authed nodes
    additional_test_accounts = [
        (
            "/DC=ch/DC=cern/OU=Organic Units/OU=Users/CN=mlassnig/CN=663551/CN=Mario Lassnig",
            "x509",
            "[email protected]",
        ),
開發者ID:pombredanne,項目名稱:rucio,代碼行數:33,代碼來源:bootstrap_tests.py


注:本文中的rucio.client.Client.add_account方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。