溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

使用Python怎么實現(xiàn)一個API接口

發(fā)布時間:2021-03-09 16:32:38 來源:億速云 閱讀:253 作者:Leah 欄目:開發(fā)技術(shù)

這篇文章給大家介紹使用Python怎么實現(xiàn)一個API接口,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

get方法

代碼實現(xiàn)

# coding:utf-8
 
import json
from urlparse import parse_qs
from wsgiref.simple_server import make_server
 
 
# 定義函數(shù),參數(shù)是函數(shù)的兩個參數(shù),都是python本身定義的,默認就行了。
def application(environ, start_response):
 # 定義文件請求的類型和當前請求成功的code
 start_response('200 OK', [('Content-Type', 'text/html')])
 # environ是當前請求的所有數(shù)據(jù),包括Header和URL,body,這里只涉及到get
 # 獲取當前get請求的所有數(shù)據(jù),返回是string類型
 params = parse_qs(environ['QUERY_STRING'])
 # 獲取get中key為name的值
 name = params.get('name', [''])[0]
 no = params.get('no', [''])[0]
 
 # 組成一個數(shù)組,數(shù)組中只有一個字典
 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()

請求實例

使用Python怎么實現(xiàn)一個API接口

post方法

代碼實現(xiàn)

# coding:utf-8
 
import json
from wsgiref.simple_server import make_server
 
 
# 定義函數(shù),參數(shù)是函數(shù)的兩個參數(shù),都是python本身定義的,默認就行了。
def application(environ, start_response):
 # 定義文件請求的類型和當前請求成功的code
 start_response('200 OK', [('Content-Type', 'application/json')])
 # environ是當前請求的所有數(shù)據(jù),包括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()

請求實例

使用Python怎么實現(xiàn)一個API接口

關(guān)于使用Python怎么實現(xiàn)一個API接口就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI