如何用python搭建一个最简单的Web服务器

如何用python搭建一个最简单的Web服务器,第1张

利用Python自带的包可以建立简单的web服务器。在DOS里cd到准备做服务器根目录的路径下,输入命令:

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,response

from 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


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/279858.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-04-21
下一篇2023-04-21

发表评论

登录后才能评论

评论列表(0条)

    保存