Python--Web--WSGI

Source: Internet
Author: User

Wsgi:web Server Gateway Interface

Only a web developer is required to implement a function to respond to HTTP requests.

# hello.py def application (environ, start_response):    start_response (' kOK', [('  content-type'text/html')])      return [b'']

 #   server.py   wsgiref.simple_server import   Make_ Server  from  hello import   application  #   Create a server with an empty IP address and a port of 8000. The handler function is application:  httpd = make_server (, 8000  print  ( serving HTTP on port 8000 ...    ) 
# start listening for HTTP requests : httpd.serve_forever ()

Run server.py, enter ip:8000 in the browser to access

Python--Web--WSGI

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.