python -m Web服务器模块 [端口号,默认8000]
例如:
python -m SimpleHTTPServer 8080
然后就可以在浏览器中输入
localhost:端口号/路径
来访问服务器资源。
利用Python自带包建立简单web服务器DOScd准备做服务器根目录路径输入命令:python -m Web服务器模块 [端口号默认8000]
例:
python -m SimpleHTTPServer 8080
浏览器输入
h ttp://loca lhost:端口号/路径
访问服务器资源
例:
h ttp://local host:808 0/index.h tm(index.htm文件自创建)
其机器通服务器IP址访问
Web服务器模块三种:
BaseHTTPServer: 提供基本Web服务处理器类别HTTPServerBaseHTTPRequestHandler
SimpleHTTPServer: 包含执行GETHEAD请求SimpleHTTPRequestHandler类
CGIHTTPServer: 包含处理POST请求执行CGIHTTPRequestHandler类
from bottle import run,route,request,responsefrom urllib.request import urlopen
@route('<url:re:.*>')
def get_method(url):
data=urlopen(url)
return data.read()
run(host='0.0.0.0',port=3456,debug=True)
我简单写一个,使用bottle框架,注意不要该ie的代理,使用别的浏览器如firefox代理到
127.0.0.1:3456
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)