Python and Pylons and Jinja2: Difference between revisions
From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs) Created page with "and maybe maps with Leaflet too. [http://pylonsproject.org/ Pylons Project] Pyramid is for writing web applications in Python. "[http://jinja.pocoo.org/docs/ Jinja2] is a mo..." |
Brian Wilson (talk | contribs) mNo edit summary |
||
Line 4: | Line 4: | ||
"[http://jinja.pocoo.org/docs/ Jinja2] is a modern and designer friendly templating language for Python, modelled after Django’s templates." | "[http://jinja.pocoo.org/docs/ Jinja2] is a modern and designer friendly templating language for Python, modelled after Django’s templates." | ||
By "templating" they mean embedding python (or code) inside HTML files, like PHP. | |||
"bootstrap" is a "front end framework". It is a bunch of javascript and css files that help you build a site with a consistent look. | |||
Pyramid helps you write WSGI applications, so you are writing in python and it generates the HTML. |
Revision as of 17:02, 16 December 2013
and maybe maps with Leaflet too.
Pylons Project Pyramid is for writing web applications in Python.
"Jinja2 is a modern and designer friendly templating language for Python, modelled after Django’s templates."
By "templating" they mean embedding python (or code) inside HTML files, like PHP.
"bootstrap" is a "front end framework". It is a bunch of javascript and css files that help you build a site with a consistent look.
Pyramid helps you write WSGI applications, so you are writing in python and it generates the HTML.