使用JSON处理GET和POST请求的简单Python服务器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用JSON处理GET和POST请求的简单Python服务器相关的知识,希望对你有一定的参考价值。
我正在尝试创建一个简单的Python服务器来测试我的前端。它应该能够处理GET和POST请求。数据应始终采用JSON格式,直到它们转换为HTTP请求/响应。应调用具有相应名称的脚本来处理每个请求。
server.朋友
#!/usr/bin/env python
from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
import SocketServer
import json
import urlparse
import subprocess
class S(BaseHTTPRequestHandler):
def _set_headers(self):
self.send_response(200)
self.send_header('Content-type', 'application/json')
self.end_headers()
def do_GET(self):
self._set_headers()
parsed_path = urlparse.urlparse(self.path)
request_id = parsed_path.path
response = subprocess.check_output(["python", request_id])
self.wfile.write(json.dumps(response))
def do_POST(self):
self._set_headers()
parsed_path = urlparse.urlparse(self.path)
request_id = parsed_path.path
response = subprocess.check_output(["python", request_id])
self.wfile.write(json.dumps(response))
def do_HEAD(self):
self._set_headers()
def run(server_class=HTTPServer, handler_class=S, port=8000):
server_address = ('', port)
httpd = server_class(server_address, handler_class)
print 'Starting httpd...'
httpd.serve_forever()
if __name__ == "__main__":
from sys import argv
if len(argv) == 2:
run(port=int(argv[1]))
else:
run()
用于处理请求的testscript.py
示例,在这种情况下只返回一个JSON对象。
#!/usr/bin/env python
return {'4': 5, '6': 7}
例如,服务器应返回{'4': 5, '6': 7}
以获取格式为http://www.domainname.com:8000/testscript的响应。
我的问题是我无法弄清楚如何在两者之间传递变量,我需要帮助才能使其工作。
以下是python中服务器客户端的示例。我正在使用bottle库来处理对服务器和创建服务器的请求。
服务器代码
import subprocess
from bottle import run, post, request, response, get, route
@route('/<path>',method = 'POST')
def process(path):
return subprocess.check_output(['python',path+'.py'],shell=True)
run(host='localhost', port=8080, debug=True)
它在localhost:8080
上启动服务器。您可以传递要运行的文件名。确保该文件位于上述代码的相同路径中,或者相应地更改路径以从不同目录运行。 Path对应于文件名,并在给出任何路径时调用process
函数。如果找不到文件,则会引发异常内部服务器错误。您也可以从子目录调用脚本。
客户代码
import httplib, subprocess
c = httplib.HTTPConnection('localhost', 8080)
c.request('POST', '/return', '{}')
doc = c.getresponse().read()
print doc
它向localhost:8080/return
调用POST请求
return.朋友
def func():
print {'4': 5, '6': 7}
func()
确保打印输出响应,因为我们使用subprocess.check_output()
,因为它只捕获打印语句。
在Popen
中使用subprocess
打开连续连接而不是check_output
将参数传递给服务器中的函数
检查这个documentation如何提取POST或GET值
我用这个:
https://gist.github.com/earonesty/ab07b4c0fea2c226e75b3d538cc0dc55
from apiserve import ApiServer, ApiRoute
class MyServer(ApiServer):
@ApiRoute("/popup")
def addbar(req):
return {"boo":req["bar"]+1}
@ApiRoute("/baz")
def justret(req):
if req:
raise ApiError(501,"no data in for baz")
return {"obj":1}
MyServer("127.0.0.1",8000).serve_forever()
这个特定的包装器允许您轻松监听某些框架混淆的端口0(随机高端口)。它自动处理所有路由的GET / POST请求,并在URI参数中与顶级JSON对象参数合并。在大多数情况下,这对我来说足够好了。
它比大多数框架重量轻很多。要点中的测试用例更好地展示了它的工作原理。
以上是关于使用JSON处理GET和POST请求的简单Python服务器的主要内容,如果未能解决你的问题,请参考以下文章
发出 JSON RPC API 的 GET 请求而不是 POST 请求
golang http库的使用 并发 get post请求处理