Difference between revisions of "Flask Stuff"
Jump to navigation
Jump to search
PeterHarding (talk | contribs) |
PeterHarding (talk | contribs) |
||
(9 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
Also see - [[Jinja Template Stuff]] | Also see - [[Jinja Template Stuff]] | [[Flask Session Management]] | ||
=Context= | =Context= | ||
* http://flask.pocoo.org/docs/appcontext/ | * http://flask.pocoo.org/docs/appcontext/ | ||
=Session Management= | |||
* http://flask.pocoo.org/snippets/75/ | |||
=WTForms= | |||
* http://wtforms.simplecodes.com/docs/0.6/fields.html | |||
* http://bear-z.com/python/render-bootstrap-3-forms-with-wtforms-and-jinja/ | |||
==Using flask.g== | |||
* http://stackoverflow.com/questions/15083967/when-should-flask-g-be-used | |||
* http://stackoverflow.com/questions/13617231/how-to-use-g-user-global-in-flask | |||
* http://stackoverflow.com/questions/16469456/application-scope-variables-in-flask | |||
=Using JSON= | =Using JSON= | ||
* http://stackoverflow.com/questions/12485694/python-flask-and-jinja-templates-how-to-iterate-over-a-dictionary-created-se | * http://stackoverflow.com/questions/12485694/python-flask-and-jinja-templates-how-to-iterate-over-a-dictionary-created-se | ||
=Other Links= | |||
* http://www.reddit.com/r/flask/ | |||
* [https://blog.openshift.com/use-flask-login-to-add-user-authentication-to-your-python-application/ Implementing Authentication] | |||
* https://www.digitalocean.com/community/tutorials/how-to-structure-large-flask-applications | |||
* [http://haifux.org/lectures/294/modern-web-applications.pdf Modern Web Applications using Flask and backbone.js] | |||
[[Category:Flask]] | [[Category:Flask]] | ||
[[Category:Python]] | [[Category:Python]] |
Latest revision as of 11:36, 25 December 2014
Also see - Jinja Template Stuff | Flask Session Management
Context
Session Management
WTForms
- http://wtforms.simplecodes.com/docs/0.6/fields.html
- http://bear-z.com/python/render-bootstrap-3-forms-with-wtforms-and-jinja/
Using flask.g
- http://stackoverflow.com/questions/15083967/when-should-flask-g-be-used
- http://stackoverflow.com/questions/13617231/how-to-use-g-user-global-in-flask
- http://stackoverflow.com/questions/16469456/application-scope-variables-in-flask