python3 最簡單的http服務器

from wsgiref.simple_server import make_server def application(environ, start_response): start_response('200 OK', [('Content-Type', 'text/html')]) return ['<h1>Hello, web!</h1>'.encode()] http
相關文章
相關標籤/搜索