带瓶子的蟒蛇网

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了带瓶子的蟒蛇网相关的知识,希望对你有一定的参考价值。

**work in progress**
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. import os
  4. import bottle as web # http://bottle.paws.de/page/docs
  5. DEV=True
  6. web.debug(DEV)
  7.  
  8.  
  9. @web.route("/static/:path")
  10. def static(path):
  11. web.send_file(path,root="static")
  12.  
  13. @web.route('/:name#.*#')
  14. def index(name):
  15. name = name or "unknown"
  16. web.response.content_type = 'text/html; charset=utf-8'
  17. web.response.COOKIES['kiki'] = name
  18. return """hello %(name)s
  19. <a href='/do/show?a=1&a=2'>show</a>""" % locals()
  20.  
  21. @web.route('/do/:cmd?')
  22. def cmd(cmd):
  23. if cmd=="show":
  24. yield "<li>cookies : %s</li>"% str(web.request.COOKIES)
  25. yield "<li>get : %s</li>"% str(web.request.GET)
  26. yield "<li>post : %s</li>"% str(web.request.POST)
  27. else:
  28. web.redirect("/") #don't work with yield now ;-(
  29.  
  30. @web.route('/.*')
  31. def fallback():
  32. yield "my 404"
  33. #~ web.abort(404, "Not Found")
  34.  
  35. @web.error(500) # don't work for me ?!?
  36. def fallback500(err):
  37. return "my error:"+str(err)
  38.  
  39. def main(useGae=False):
  40. if useGae:
  41. from google.appengine.ext.webapp import util
  42. util.run_wsgi_app(web.default_app())
  43. else:
  44. web.run(reloader=DEV)
  45.  
  46. if __name__=="__main__":
  47. main()

以上是关于带瓶子的蟒蛇网的主要内容,如果未能解决你的问题,请参考以下文章

bzoj 5028: 小Z的加油店——带修改的区间gcd

带瓶子和会话的python web(烧杯)

如何用python绘制彩色蟒蛇

周一 装备大讲堂易折叠随手带:可放入口袋的HydraPark SoftFlask水杯

用python怎么把蟒蛇变成彩色?

深搜+小孩分游问题