Anúncio
Anúncio

Mais conteúdo relacionado

Apresentações para você(20)

Anúncio

Último(20)

Flask

  1. A Python Micro-framework For Web Development http://flask.pocoo.org Glen Zangirolami Blog: http://theglenbot.com Twitter: http://twitter.com/glenbot
  2. A solid foundation for web applications
  3. Integrated unittesting support
  4. Jinja 2 template engine
  5. 100% WSGI Compatible
  6. Unicode Based
  7. Fantastic documentation and community
  8. A personal blog
  9. Site that requires forms and registration
  10. Software administration panels
  11. Anything you can think of. The possibilities are endless!
  12. It's super simple (see 4 th bullet)
  13. Hosting Support
  14. May require some custom code (that's not so bad right? ;))
  15. Customizable
  16. Strong Community
  17. Built upon proven and stable code
  18. Early adopters can lay the ground work for the future of flask
  19. It wouldn't be a demo without hello world! from flask import Flask app = Flask(__name__) @app.route("/") def hello(): return "Hello World!" if __name__ == "__main__": app.run() It's that simple!
  20. Minitwit – A twitter clone
  21. flask.pocoo.org – Yes, the website is running flask.
  22. http://github.com/mitsuhiko/flask/tree/master/examples/
  23. Mailing List - http://flask.pocoo.org/mailinglist/
  24. IRC – irc.freenode.net - #pocoo
  25. Demo then questions Resources: http://flask.pocoo.org/ Slides: http://slideshare.net/glenbot Thanks again! Glen Zangirolami http://theglenbot.com @glenbot on twitter
Anúncio