#####################################################################
# Chobocho's Python Server
#
# cgi-bin 디렉토리가 cgi 디렉토리이다.
# index.html이 기본으로 보여진다.
# Chobocho's Python Server
#
import CGIHTTPServer
import BaseHTTPServer
PORT = 9000
Handler = CGIHTTPServer.CGIHTTPRequestHandler
httpd = BaseHTTPServer.HTTPServer( ('', PORT), Handler)
print 'Listening on port', PORT
httpd.serve_forever()
import BaseHTTPServer
PORT = 9000
Handler = CGIHTTPServer.CGIHTTPRequestHandler
httpd = BaseHTTPServer.HTTPServer( ('', PORT), Handler)
print 'Listening on port', PORT
httpd.serve_forever()
# cgi-bin 디렉토리가 cgi 디렉토리이다.
# index.html이 기본으로 보여진다.
'Coding > Python 삽질기' 카테고리의 다른 글
이미지 파일을 읽어오는 소스 (0) | 2005.05.05 |
---|---|
Python 관련 사이트 모음 (0) | 2005.03.27 |
Python 삽질기 (0) | 2005.03.17 |