本文整理汇总了Python中Resources.list_resources方法的典型用法代码示例。如果您正苦于以下问题:Python Resources.list_resources方法的具体用法?Python Resources.list_resources怎么用?Python Resources.list_resources使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Resources
的用法示例。
在下文中一共展示了Resources.list_resources方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: run
# 需要导入模块: import Resources [as 别名]
# 或者: from Resources import list_resources [as 别名]
def run(fileName):
org = ['g06'];
expt = ['odot'];
fparts = fileName.split('.');
# defensive check
if len(fparts) != 4: return;
for e in expt:
for o in org:
# construct the AWS/S3 bucket path
soln_bucket = Processing.solution_bucket(fparts[1],fparts[2],'',e,o,fparts[3]);
# ok get the snx with this bucket prefix
files = Resources.list_resources(soln_bucket,'.mat.gz');
# blab about it ... maybe
if len(files) == 0: print 'no solution for',fileName;