'Coding/Python 삽질기'에 해당되는 글 102건

  1. 2005.03.24 Simple Http Server 만들기
  2. 2005.03.17 Python 삽질기
Coding/Python 삽질기2005. 3. 24. 00:59
#####################################################################
# 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()

# cgi-bin 디렉토리가 cgi 디렉토리이다.
# index.html이 기본으로 보여진다.

'Coding > Python 삽질기' 카테고리의 다른 글

이미지 파일을 읽어오는 소스  (0) 2005.05.05
Python 관련 사이트 모음  (0) 2005.03.27
Python 삽질기  (0) 2005.03.17
Posted by chobocho
Coding/Python 삽질기2005. 3. 17. 18:03
dir( ) :: 제공하는 메소드를 알 수 있다.

'Coding > Python 삽질기' 카테고리의 다른 글

이미지 파일을 읽어오는 소스  (0) 2005.05.05
Python 관련 사이트 모음  (0) 2005.03.27
Simple Http Server 만들기  (0) 2005.03.24
Posted by chobocho