本文整理汇总了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'))