使用bottle快速搭建最简单的网站
作者:互联网
先使用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 命令运行该文件即可。
标签:run,name,网站,bottle,route,template,使用,搭建 来源: https://blog.csdn.net/genghaojie123/article/details/110099744