get方法
代码实现
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# coding:utf-8 import json from urlparse import parse_qs from wsgiref.simple_server import make_server # 定义函数,参数是函数的两个参数,都是python本身定义的,默认就行了。 def application(environ, start_response): # 定义文件请求的类型和当前请求成功的code start_response( '200 ok' , [( 'content-type' , 'text/html' )]) # environ是当前请求的所有数据,包括header和url,body,这里只涉及到get # 获取当前get请求的所有数据,返回是string类型 params = parse_qs(environ[ 'query_string' ]) # 获取get中key为name的值 name = params.get( 'name' , [''])[ 0 ] no = params.get( 'no' , [''])[ 0 ] # 组成一个数组,数组中只有一个字典 dic = { 'name' : name, 'no' : no} return [json.dumps(dic)] if __name__ = = "__main__" : port = 5088 httpd = make_server( "0.0.0.0" , port, application) print "serving http on port {0}..." . format ( str (port)) httpd.serve_forever() |
请求实例
post方法
代码实现
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# coding:utf-8 import json from wsgiref.simple_server import make_server # 定义函数,参数是函数的两个参数,都是python本身定义的,默认就行了。 def application(environ, start_response): # 定义文件请求的类型和当前请求成功的code start_response( '200 ok' , [( 'content-type' , 'application/json' )]) # environ是当前请求的所有数据,包括header和url,body request_body = environ[ "wsgi.input" ].read( int (environ.get( "content_length" , 0 ))) request_body = json.loads(request_body) name = request_body[ "name" ] no = request_body[ "no" ] # input your method here # for instance: # 增删改查 dic = { 'mynameis' : name, 'mynois' : no} return [json.dumps(dic)] if __name__ = = "__main__" : port = 6088 httpd = make_server( "0.0.0.0" , port, application) print "serving http on port {0}..." . format ( str (port)) httpd.serve_forever() |
请求实例
疑问
怎么实现请求的路径限制?
怎么限制接口调用方的headers?
以上这篇对python实现简单的api接口实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/u013040887/article/details/78895323