先使用pip install bottle
安装bottle,之后编辑文本:
from bottle import route,run,template
@route('/hello/<name>')
def index(name):
return template('<b>Hello {{name}}</b>!',name=name)
run(host='localhost',port=80)
保存为py文件后,使用python 命令运行该文件即可。
2024-01-29 09:53:58
先使用pip install bottle
安装bottle,之后编辑文本:
from bottle import route,run,template
@route('/hello/<name>')
def index(name):
return template('<b>Hello {{name}}</b>!',name=name)
run(host='localhost',port=80)
保存为py文件后,使用python 命令运行该文件即可。