本文整理汇总了Python中DIRAC.Interfaces.API.DiracAdmin.DiracAdmin.getCSDict方法的典型用法代码示例。如果您正苦于以下问题:Python DiracAdmin.getCSDict方法的具体用法?Python DiracAdmin.getCSDict怎么用?Python DiracAdmin.getCSDict使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DIRAC.Interfaces.API.DiracAdmin.DiracAdmin
的用法示例。
在下文中一共展示了DiracAdmin.getCSDict方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: len
# 需要导入模块: from DIRAC.Interfaces.API.DiracAdmin import DiracAdmin [as 别名]
# 或者: from DIRAC.Interfaces.API.DiracAdmin.DiracAdmin import getCSDict [as 别名]
Script.parseCommandLine( ignoreErrors = True )
args = Script.getPositionalArgs()
if len( args ) < 1:
Script.showHelp()
from DIRAC.Interfaces.API.DiracAdmin import DiracAdmin
diracAdmin = DiracAdmin()
exitCode = 0
errorList = []
gridCfgPath = cfgPath( 'Resources', 'Sites', grid )
result = DIRAC.gConfig.getSections( gridCfgPath )
if not result['OK']:
print 'Could not get DIRAC site list'
DIRAC.exit( 2 )
sites = result['Value']
for site in sites:
result = diracAdmin.getCSDict( cfgPath( gridCfgPath, site ) )
if result['OK']:
ces = result['Value'].get( 'CE', [] )
for ce in args:
if ce in ces:
print '%s: %s' % ( ce, site )
DIRAC.exit( exitCode )