python 使用Bottle with Rocket的hello world示例。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用Bottle with Rocket的hello world示例。相关的知识,希望对你有一定的参考价值。
from rocket import Rocket
from bottle import Bottle
from bottle import route
app = Bottle(__name__)
app.debug = True
@app.route('/')
def hello():
return '<p>Hello, Bottle & Rocket!</p>'
def run_server():
server = Rocket(
interfaces=('0.0.0.0', 8000),
method='wsgi',
app_info={'wsgi_app': app})
server.start()
if __name__ == '__main__':
run_server()
以上是关于python 使用Bottle with Rocket的hello world示例。的主要内容,如果未能解决你的问题,请参考以下文章
bottle.py中的SimpleTemplate
Python之Bottle框架使用
hdu 6088 Rikka with Rock-paper-scissors (2017 多校第五场 1004) 组合数学 + 数论 + 模意义下的FFT
如何使用python bottle框架查询mongo数据库
python微框架Bottle(http)
python之Bottle框架