如何确定瓶装服务器是否已成功启动?

时间:2014-03-03 10:48:32

标签: python 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=8080)

如何确定run是否已成功启动bottle服务器的实例并且服务器已准备好接收传入的http呼叫?

1 个答案:

答案 0 :(得分:1)

使用网络浏览器尝试浏览http://localhost:8080/hello/Anthony。如果您使用的是Linux,请尝试wget http://localhost:8080/hello/Anthony