当前位置: 首页>>代码示例>>Python>>正文


Python Modules.get_all_modules方法代码示例

本文整理汇总了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)
开发者ID:dbarbier,项目名称:pythonocc,代码行数:32,代码来源:generate_swig_files.py


注:本文中的Modules.get_all_modules方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。