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


Python SourceFileLoader.base方法代码示例

本文整理汇总了Python中importlib.machinery.SourceFileLoader.base方法的典型用法代码示例。如果您正苦于以下问题:Python SourceFileLoader.base方法的具体用法?Python SourceFileLoader.base怎么用?Python SourceFileLoader.base使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在importlib.machinery.SourceFileLoader的用法示例。


在下文中一共展示了SourceFileLoader.base方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: get_feeds

# 需要导入模块: from importlib.machinery import SourceFileLoader [as 别名]
# 或者: from importlib.machinery.SourceFileLoader import base [as 别名]
if __name__ == "__main__":
    parser = argparse.ArgumentParser()
    parser.add_argument('--html', action='store_true')
    parser.add_argument('--past_links', type=str, default="past_links.txt")
    parser.add_argument('--days',       type=int, default=1)
    parser.add_argument('-t', '--templates_path', type=str, default="/home/josh/code/zglr_org/templates.py")
    args = parser.parse_args()


    title, plain, html = get_feeds(args.days, args.past_links)
    html = "<html><body>{}</body></html>".format(html)
    if args.html:
        # Import the templates module for 'base'
        if sys.version_info >= (3, 5):
            import importlib.util
            spec = importlib.util.spec_from_file_location("templates", args.templates_path)
            templates = importlib.util.module_from_spec(spec)
            spec.loader.exec_module(templates)
        elif sys.version_info >= (3, 3):
            from importlib.machinery import SourceFileLoader
            templates = SourceFileLoader("templates", args.templates_path).load_module()
        else:
            print("Failed to import templates for 'base'")
            sys.exit()

        #html = html.encode('ascii', 'ignore')
        html = templates.base(title, html)
        print(html)
    else:
        print(plain.encode('ascii', 'ignore'))
开发者ID:joshsziegler,项目名称:dotfiles,代码行数:32,代码来源:feeds.py


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