本文整理汇总了Python中importlib.machinery.SourceFileLoader.do方法的典型用法代码示例。如果您正苦于以下问题:Python SourceFileLoader.do方法的具体用法?Python SourceFileLoader.do怎么用?Python SourceFileLoader.do使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类importlib.machinery.SourceFileLoader
的用法示例。
在下文中一共展示了SourceFileLoader.do方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: filter
# 需要导入模块: from importlib.machinery import SourceFileLoader [as 别名]
# 或者: from importlib.machinery.SourceFileLoader import do [as 别名]
def filter(self, webRoot, req): # req - (clientAddress, headers, method, path, query)
result = True, 200, "", []
if re.match("^/restricted_area(/|$)", req.path):
result = False, 403, "This is restricted area.", []
else:
ext = os.path.basename(req.path).split(".")[-1]
if ext == "py":
_webRoot = webRoot if webRoot[-1] != "/" else webRoot[:-1]
script_path = _webRoot + req.path
if os.path.exists(script_path):
mod = SFL("mod", script_path).load_module()
try:
s = mod.do(req)
result = False, 200, s, []
except:
pass
return result