PKG-INFO 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. Metadata-Version: 1.1
  2. Name: Jinja2
  3. Version: 2.7.3
  4. Summary: A small but fast and easy to use stand-alone template engine written in pure python.
  5. Home-page: http://jinja.pocoo.org/
  6. Author: Armin Ronacher
  7. Author-email: armin.ronacher@active-4.com
  8. License: BSD
  9. Description:
  10. Jinja2
  11. ~~~~~~
  12. Jinja2 is a template engine written in pure Python. It provides a
  13. `Django`_ inspired non-XML syntax but supports inline expressions and
  14. an optional `sandboxed`_ environment.
  15. Nutshell
  16. --------
  17. Here a small example of a Jinja template::
  18. {% extends 'base.html' %}
  19. {% block title %}Memberlist{% endblock %}
  20. {% block content %}
  21. <ul>
  22. {% for user in users %}
  23. <li><a href="{{ user.url }}">{{ user.username }}</a></li>
  24. {% endfor %}
  25. </ul>
  26. {% endblock %}
  27. Philosophy
  28. ----------
  29. Application logic is for the controller but don't try to make the life
  30. for the template designer too hard by giving him too few functionality.
  31. For more informations visit the new `Jinja2 webpage`_ and `documentation`_.
  32. .. _sandboxed: http://en.wikipedia.org/wiki/Sandbox_(computer_security)
  33. .. _Django: http://www.djangoproject.com/
  34. .. _Jinja2 webpage: http://jinja.pocoo.org/
  35. .. _documentation: http://jinja.pocoo.org/2/documentation/
  36. Platform: UNKNOWN
  37. Classifier: Development Status :: 5 - Production/Stable
  38. Classifier: Environment :: Web Environment
  39. Classifier: Intended Audience :: Developers
  40. Classifier: License :: OSI Approved :: BSD License
  41. Classifier: Operating System :: OS Independent
  42. Classifier: Programming Language :: Python
  43. Classifier: Programming Language :: Python :: 3
  44. Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
  45. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  46. Classifier: Topic :: Text Processing :: Markup :: HTML