Python显示连接到服务器的网页

时间:2014-07-14 19:17:38

标签: javascript python sendfile

我使用JavaScript构建了一个服务器,当你连接它时显示一个网页。服务器在连接时使用

发送htm文件
app.get('/', function (req, res) {
    res.sendfile('index.htm');
});

Python中是否有类似的功能?

1 个答案:

答案 0 :(得分:2)

import SimpleHTTPServer
import SocketServer

PORT = 8000

Handler = SimpleHTTPServer.SimpleHTTPRequestHandler

httpd = SocketServer.TCPServer(("", PORT), Handler)

print "serving at port", PORT
httpd.serve_forever()

请参阅https://docs.python.org/2/library/simplehttpserver.html