使用python中的HTTPServer创建本地站点

该方法是我在阅读 Mark Lutz编写的programming python 时看到的,经过自己修改和尝试完全可以:

一下是代码:

import os,sys
from BaseHTTPServer import HTTPServer
from CGIHTTPServer import CGIHTTPRequestHandler
webdir='E:/web'        #站点目录
port=80
os.chdir(webdir)
srvraddr=('',port)
srvrobj=HTTPServer(srvraddr,CGIHTTPRequestHandler)
srvrobj.serve_forever()

运行就可以了,要访问自己写的.py文件必须通过一个html文件做跳转,例如:

E:/web/we.html

<html>
 <title>Interactive Page</title>
 <body>
 <form method=POST action="cgi-bin/sd.py">
 <P><B>Enter your name:</B>
 <P><input type=text name=user>
 <P><input type=submit>
 </form>
 </body>
</html>
E:/web/cgi-bin/sd.py

import cgi
form = cgi.FieldStorage() 
print('Content-type: text/html\n') 
print('<title>Reply Page</title>')
if not 'user' in form:
    print('<h1>Who are you?</h1>')
else:
    print('<h1>Hello <i>%s</i>!</h1>' % cgi.escape(form['user'].value))

在浏览器输入http://localhost/we.html测试,我试过可以

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值