1. 程式人生 > >Python寫一個服務

Python寫一個服務

有一個 httpd get請求 localhost light -type utf-8 獲取 amp

# coding:utf-8
import json
from urllib.parse 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的值
    a = params.get(‘a‘, [‘‘])[0]
    b = params.get(‘b‘, [‘‘])[0]
    print(a,b)
    c = a+b
    # 組成一個數組,數組中只有一個字典
    #dic = {‘name‘: name, ‘no‘: no}
    dic = {‘C‘:c}
    return [json.dumps(dic).encode(‘utf-8‘)]


if __name__ == "__main__":
    port = 8000
    httpd = make_server("0.0.0.0", port, application)
    print("serving http on port {0}...".format(str(port)))
    httpd.serve_forever()

 執行後,在瀏覽器輸入http://localhost:8000/?a=1&b=2

Python寫一個服務