这是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=8080)
如何确定run
是否已成功启动bottle
服务器的实例并且服务器已准备好接收传入的http呼叫?
答案 0 :(得分:1)
使用网络浏览器尝试浏览http://localhost:8080/hello/Anthony
。如果您使用的是Linux,请尝试wget http://localhost:8080/hello/Anthony
。