本文整理汇总了Python中Modules.get_all_modules方法的典型用法代码示例。如果您正苦于以下问题:Python Modules.get_all_modules方法的具体用法?Python Modules.get_all_modules怎么用?Python Modules.get_all_modules使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Modules
的用法示例。
在下文中一共展示了Modules.get_all_modules方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: check_paths
# 需要导入模块: import Modules [as 别名]
# 或者: from Modules import get_all_modules [as 别名]
if __name__ == '__main__':
check_paths()
# Check if a module name is passed to the command line
if len(sys.argv)>1:
module_name_to_wrap = sys.argv[1]
if module_name_to_wrap == 'GEOM':
print "Generating swig files for the GEOM library"
modules_to_wrap = Modules.SALOME_GEOM_MODULES
elif module_name_to_wrap == 'SMESH':
print "Generating swig files for the SMESH library"
modules_to_wrap = Modules.SALOME_SMESH_MODULES
else:
modules_to_wrap = None
# Try to find the module with the name provided
for module in Modules.get_all_modules():
if module[0] == module_name_to_wrap:
modules_to_wrap = [module]
break
#print modules_to_wrap
if modules_to_wrap == None:
raise NameError,"Unknown module"
else:
if sys.platform == 'win32':
modules_to_wrap = Modules.COMMON_MODULES + Modules.WIN_MODULES
else:
modules_to_wrap = Modules.COMMON_MODULES + Modules.UNIX_MODULES
if MULTI_PROCESS_GENERATION:
print "Generating pythonOCC SWIG files (MultiProcess mode)."
generate_swig_multiprocess(modules_to_wrap)