Python简单http服务实现

Posted wangymd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python简单http服务实现相关的知识,希望对你有一定的参考价值。

1、代码实现

# -*- coding: utf-8 -*-
"""
Created on Tue Jun 11 18:12:01 2019

@author: wangymd
"""

from http.server import HTTPServer, BaseHTTPRequestHandler
import json

data = ‘result‘: ‘this is a http server test‘
host = (‘localhost‘, 8888)

class Resquest(BaseHTTPRequestHandler):
def do_GET(self):
self.send_response(200)
self.send_header(‘Content-type‘, ‘application/json‘)
self.end_headers()
self.wfile.write(json.dumps(data).encode())

if __name__ == ‘__main__‘:
server = HTTPServer(host, Resquest)
print("Starting http server, listen at: %s:%s" % host)
server.serve_forever()

2、测试

浏览器调用:

http://localhost:8888/

返回如下内容:

"result": "this is a http server test"

以上是关于Python简单http服务实现的主要内容,如果未能解决你的问题,请参考以下文章

Python简单http服务实现

python实战python一行代码,实现文件共享服务器

Python实现简单HTTP服务器

Python实战python一行代码,实现文件共享服务器

Python实现简单HTTP服务器

python 用于在终端中运行的sublime text 3的简单代码片段制作工具