python搭建http服务动态请求执行python代码

代码语言:python

所属分类:其他

代码描述:python搭建http服务动态请求执行python代码,类似php实现请求python脚本。

代码标签: python 搭建 http 服务 动态 请求 执行 python 代码

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

import subprocess
from http.server import BaseHTTPRequestHandler, HTTPServer

class MyRequestHandler(BaseHTTPRequestHandler):
    def do_GET(self):
        script_path = "scripts/{}.py".format(self.path[1:])
        print(script_path+"\n")
        try:
            with open(script_path, "rb") as f:
                script = f.read()
            output = subprocess.check_output(["python", "-c", script])
            self.send_respon.........完整代码请登录后点击上方下载按钮下载查看

网友评论0