[Python 2.7] Hello World cgi http Server

Source: Internet
Author: User

[Python 2.7] Hello World cgi http Server


# Cgi http server
# Getting Started
Python 2.x is preferred to this simple demo. I'm using Python 2.7 over windows.
* Https://docs.python.org/2.7/library/cgihttpserver.html* https://docs.python.org/2.7/library/cgi.html
# Starting a CGIHTTPServer
$ Python-m CGIHTTPServer 8000 Serving HTTP on 0.0.0.0 port 8000...

# CGI Script, Hello World
$ Mkdir cgi-bin/

$ Vim cgi-bin/index. py Print "Content-Type: text/html" # HTML is following Print # blank line, end of headers
Print"CGI script output" Print "This is my first CGI script" Print "Hello, world! "

# Access
Browser the following link and a web page will return.
Http: // localhost: 8000/cgi-bin/index. py
This is my first CGI scriptHello, world!



Related Article

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.