佛山软件定制

Python简易服务器

# -*- encoding:utf-8 -*-
# - Python简单Web服务器 --
# - code by newmin (blog.ops.cc)
import os
os.chdir('f:/pytestweb/')

import SimpleHTTPServer
SimpleHTTPServer.test()

#相当于
# > cd f:\pytestweb\
# > python -m SimpleHTTPServer 8000

 

这里的“Web服务器模块”有如下三种:

  • BaseHTTPServer: 提供基本的Web服务和处理器类,分别是HTTPServer和BaseHTTPRequestHandler。
  • SimpleHTTPServer: 包含执行GET和HEAD请求的SimpleHTTPRequestHandler类。
  • CGIHTTPServer: 包含处理POST请求和执行CGIHTTPRequestHandler类。

posted on 2012-01-05 22:36  New.min  阅读(279)  评论(0编辑  收藏  举报

导航