标签:style blog color os div sp log on c
1. hello world. URL hander
import bottle @bottle.route(‘/‘) def home_page(): return "hello world\n" @bottle.route(‘/testpage‘) def test_page(): return "this is a test page" bottle.debug(True) bottle.run(host=‘localhost‘,port=8080)
标签:style blog color os div sp log on c
原文地址:http://www.cnblogs.com/phoenix13suns/p/3978554.html