wsgi簡介,flask和scrapy的簡單使用

WSGI接口定義很是簡單,它只要求Web開發者實現一個函數,就能夠響應HTTP請求。html def application(environ, start_response): start_response('200 OK', [('Content-Type', 'text/html')]) return [b'<h1>Hello, web!</h1>'] environ:HTTP
相關文章
相關標籤/搜索