python使用RestrictedPython虚拟隔离环境执行python代码
代码语言:python
所属分类:其他
代码描述:python使用RestrictedPython虚拟隔离环境执行python代码
代码标签: python RestrictedPython 虚拟 隔离 环境 执行 python 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
from RestrictedPython import compile_restricted, safe_builtins def execute_restricted_code(code): byte_code = compile_restricted(code, '<inline>', 'exec') restricted_locals = {} exec(byte_code, safe_builtins, restricted_locals) return r.........完整代码请登录后点击上方下载按钮下载查看
网友评论0