bottle第一种框架

1
2
3
4
5
6
7
8
9
10
from  bottle  import route, run

@route('/')
def index():
return "heool word!"

run()


##默认端口为8080

转载请注明来源 https://tianweiye.github.io