from wsgiref.simple_server import make_server

def hello_world_app(environ, start_response):
    start_response('200 OK', [('Content-type', 'text/html; charset=utf-8')] )
    return [b'Welcome To The Python Web Server !!']

httpd = make_server('', 80, hello_world_app)
print("Server is Start ... ")
httpd.serve_forever()

 

 

 

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 黃彥霖 的頭像
    黃彥霖

    彥霖 實驗筆記

    黃彥霖 發表在 痞客邦 留言(0) 人氣()