bottle.py的一个插件,方便使用sessio
frombottleimportru,Bottlefrombeaker.middlewareimportSessioMiddlewarefrombottle_sessioimportPlugiapp=Bottle()app.istall(Plugi())app.get('/hello')defhello():#Accessthesessioapp.sessio['key']sessio_opts={'sessio.type':'file','sessio.cookie_expires':3600,'sessio.data_dir':'/tmp','sessio.auto':True}app=SessioMiddleware(app,sessio_opts)







评论