HyperTextTransferProtocol http://e.biohackers.net/HTTP == 관련 팁 == 아래 스크립트를 webs.py로 PATH밑에 넣고 데이터 공유가 필요할때마다 사용하면 요긴하다. from PyKUG:3줄파이썬웹서버 {{{#!python import sys, SocketServer, SimpleHTTPServer, BaseHTTPServer try: PORT = int(sys.argv[1]) except: PORT = 8080 class HTTPServer(SocketServer.ThreadingMixIn, BaseHTTPServer.HTTPServer): pass HTTPServer(('', PORT), SimpleHTTPServer.SimpleHTTPRequestHandler).serve_forever() }}} 쉘에서 다음 한줄이면 소스 건드리지 않아도 되지요. ~~ {{{ python -m SimpleHTTPServer 80 }}} 웹서버의 서비스 루트디렉토리에 favicon.ico 파일네임을 갖는 아이콘파일을 갖다놓으면, 웹브라우저가 이를 읽어서, 특히 즐겨찾기 추가할때, 해당 아이콘으로 즐겨찾기를 표시한다. ''IE가 자동으로 그런짓을 한단 말이에요? 신기하네요.'' --[[destine]], 2004-10-02