码迷,mamicode.com
首页 > 编程语言 > 详细

[Python 2.7] Hello World CGI HTTP Server

时间:2014-08-13 01:09:54      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:python   cgi   cgihttpserver   


# CGI HTTP server

## Getting Started

Python 2.x is preferred to this simple demo. I‘m using Python 2.7 over windows.

## 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 "<TITLE>CGI script output</TITLE>"
print "<H1>This is my first CGI script</H1>"
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 script

Hello, world!



[Python 2.7] Hello World CGI HTTP Server,布布扣,bubuko.com

[Python 2.7] Hello World CGI HTTP Server

标签:python   cgi   cgihttpserver   

原文地址:http://blog.csdn.net/wxqee/article/details/38525965

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!