最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

python在浏览器运行_如何在浏览器中运行python脚本?

运维笔记admin1浏览0评论

基本上,您可以像这样使用BaseHTTPServer并运行代码。在

在本地主机.py在#!/usr/bin/env python

import BaseHTTPServer

class HTTPFrontend(object) :

def __init__(self, port) :

self.server = BaseHTTPServer.HTTPServer(('', port), self.RequestHandler)

print "Web interface listening on http://localhost:" + str(port)

def start(self) :

self.server.serve_forever()

def stop(self) :

self.server.socket.close()

class RequestHandler(BaseHTTPServer.BaseHTTPRequestHandler) :

def do_GET(self) :

self.send_response(200)

self.send_header('Content-Type', 'text/html')

self.end_headers()

templateFile = open("home.html")

template = templateFile.read()

templateFile.close()

message = "this is how simple templating works"

self.wfile.write(template % {'message': message})

def do_POST(self) :

self.send_response(200)

self.send_header('Content-Type', 'text/html')

self.end_headers()

self.wfile.write("this is a POST")

if __name__ == "__main__":

server = HTTPFrontend(8080)

server.start()

在主页.html在

^{pr2}$

如果您在浏览器中打开http://localhost:8654,您将得到:this is how simple templating works

发布评论

评论列表(0)

  1. 暂无评论