{ "info": { "author": "Rocky Burt", "author_email": "pylons-discuss@googlegroups.com", "bugtrack_url": null, "classifiers": [ "Framework :: Pyramid", "Intended Audience :: Developers", "License :: Repoze Public License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy" ], "description": "Jinja2 bindings for Pyramid\n===========================\n\nThese are bindings for the `Jinja2 templating system `_\nfor the `Pyramid `_ web framework.\n\nSee https://docs.pylonsproject.org/projects/pyramid-jinja2/en/latest/ for\ndocumentation or ``index.rst`` in the ``docs`` sub-directory of the source\ndistribution.\n\n\n2.8 (2019-01-25)\n================\n\n- Drop Python 3.3 support.\n\n- Add Python 3.6 and 3.7 support.\n\n- Support the ``mapping`` argument in the injected ``gettext`` function.\n See https://github.com/Pylons/pyramid_jinja2/pull/143\n\n2.7 (2016-11-15)\n================\n\n- Drop Python 2.6 and 3.2 support.\n\n- Add Python 3.5 support.\n\n- #123: Switch to pytest and pip for testing and installation in the\n documentation and scaffold. nose and coverage are still used in the core\n pyramid_jinja2 package [stevepiercy].\n\n- Prefer ``resource_url`` over deprecated ``model_url``. Pyramid has changed\n its vocabulary, so let's reflect the changes. [Mikko Ohtamaa]\n\n- Support a dotted path to a gettext wrapper for the ``jinja2.i18n.gettext``\n setting. [mmerickel]\n\n2.6.2 (2016-01-23)\n==================\n\n- Officially drop support for Python 3.2, test under Python 3.5 and pypy3\n [Domen Kozar]\n\n2.6.1 (2016-01-20)\n==================\n\n- Don't include .pyc in wheel file [Domen Kozar]\n\n2.6 (2016-01-20)\n================\n\n- #116: Update scaffold to be consistent with Pyramid's default scaffolds\n [stevepiercy]\n\n2.5 (2015-04-16)\n================\n\n- #106: Allow specifying a custom pyramid_jinja.i18n.GetTextWrapper [dstufft]\n\n2.4 (2015-03-27)\n================\n\n- #105: Support ``jinja2.finalize`` configuration setting. [dstufft]\n\n- #94: Fix loading of templates with relative names on Windows [zart]\n\n- Support Python 3.4 [mmerickel]\n\n- Improve scaffold [marioidival]\n\n- #98: Avoid get_current_request where possible [housleyjk]\n\n- #99: Add resource_path filter [javex]\n\n2.3.3 (2014-07-02)\n==================\n\n- #91: Fix a recursion error while attempting to include a template with the\n same name as one of the parents that was already loaded. [mmerickel]\n\n2.3.2 (2014-06-13)\n==================\n\n- Fix 2.3.1 brownbag release. It had some erroneous didn't-mean-to-push\n changes that are now solved. Brought coverage back up to 100%.\n\n2.3.1 (2014-06-13)\n==================\n\n- Improve the template-relative searchpath logic to search more possibilities\n in the include-chain built up from templates including or extending\n other templates. The logic for when the chain was longer than just one\n template including another template was broken.\n\n2.3 (2014-05-30)\n================\n\n- Require ``pyramid_jinja2`` to be included even when using\n ``pyramid_jinja2.renderer_factory``. It is now a thin wrapper around the\n default renderer and can be used to share the same settings with another\n file extension. [mmerickel]\n\nBackward Incompatible Changes\n-----------------------------\n\n- ``pyramid_jinja2`` **must** be included into the ``Configurator`` in order\n to use ``pyramid_jinja2.renderer_factory`` otherwise you may see the\n exception::\n\n ValueError: As of pyramid_jinja2 2.3, the use of the\n \"pyramid_jinja2.renderer_factory\" requires that pyramid_jinja2 be\n configured via config.include(\"pyramid_jinja2\") or the equivalent\n \"pyramid.includes\" setting.\n\n The fix is to include ``pyramid_jinja2``::\n\n config.include('pyramid_jinja2')\n\n2.2 (2014-05-30)\n================\n\n- #88: Formalize template loading order and allow all lookups to fallback to\n the search path. A template is now always searched for relative to its\n parent template. If not found, the lookup will fallback to the search path.\n [mmerickel]\n\n- Add ``prepend`` option to ``config.add_jinja2_search_path`` to allow\n prepending of paths to the beginning of the search path if a path should\n override previously defined paths. [mmerickel]\n\n2.1 (2014-05-16)\n================\n\n- The 2.0 series started adding the package that invoked\n ``config.add_jinja2_renderer`` to the template search path. This is\n being removed in favor of explicit search paths and will hopefully not\n affect many people as it has only been available for a couple weeks. The\n only automatic search path left is the one added by the default ``.jinja2``\n renderer created when including ``pyramid_jinja2``. [mmerickel]\n\n- Adjust the ``config.include('pyramid_jinja2')`` to add any packages from\n ``jinja2.directories`` **before** the default search path at the base of\n the app. Previously there was no way to override that search path.\n [mmerickel]\n\n2.0.2 (2014-05-06)\n==================\n\n- The path of the child template is always considered when inheriting from\n a base template. Therefore when doing ``render('templates/foo.jinja2')``\n and ``foo.jinja2`` has an ``{% extends 'base.jinja2' %}``, the template\n will be searched for as ``'templates/base.jinja2'`` on the search path.\n Previously the path of the child template was ignored when doing the\n lookup for the base, causing some very subtle and unrecoverable lookup\n errors when the child template was found relative to the caller instead\n of being found on the search path. [mmerickel]\n\n- This release restores the default search path behaviors from the 1.x series\n that were inadvertently removed in the 2.x. The project's root package is\n added to the search path by default. [mmerickel]\n\n2.0.1 (2014-04-23)\n==================\n\n- #86: Fix a regression caused by the new support for extending a template\n relative to itself. Using ``{% extends 'some_asset:spec.jinja2' %}`` was\n no longer working and is now fixed. [mmerickel]\n\n\n2.0 (2014-04-21)\n================\n\n- Claim Python 3.4 support\n [mmerickel]\n\n- #75: Fix the missing piece of relative template loading by allowing a\n template to inherit from a template relative to itself, instead of\n forcing the parent to be on the search path.\n [mmerickel]\n\n- #73: Added a new ``config.add_jinja2_renderer`` API that can create and\n override multiple Jinja2 renderers, each loaded using potentially different\n settings and extensions.\n\n The other APIs are now keyed on the renderer extension, as each extension\n may have different settings. Thus ``config.add_jinja2_search_path``,\n ``config.add_jinja2_extension``, and ``config.get_jinja2_environment``\n accept a ``name`` argument, which defaults to ``.jinja2``.\n\n This deprecates the old ``pyramid_jinja2.renderer_factory`` mechanism\n for adding renderers with alternate extensions.\n\n Configuration of the renderers has been updated to follow Pyramid's\n standard mechanisms for conflict detection. This means that if two modules\n both try to add a renderer for the ``.jinja2`` extension, they may raise a\n conflict or the modifications made by the invocation closest to the\n ``Configurator`` in the call-stack will win. This behavior can be affected\n by calling ``config.commit`` at appropriate times to force a configuration\n to take effect immediately. As such, configuration is deferred until\n commit-time, meaning that it is now possible\n ``config.get_jinja2_environment`` will return ``None`` because the changes\n have not yet been committed.\n [mmerickel]\n\nBackward Incompatible Changes\n-----------------------------\n\n- The creation and configuration of the Jinja2 ``Environment`` is now deferred\n until commit-type in the Pyramid ``Configurator``. This means that\n ``config.get_jinja2_environment`` may return ``None``. To resolve this,\n invoke ``config.commit()`` before attempting to get the environment.\n\n1.10 (2014-01-11)\n=================\n\n- #77: Change semantics of ``jinja2.bytecode_caching`` setting. The new\n default is false (no bytecode caching) -- ``bytecode_caching`` must\n explicitly be set to true to enable a filesystem bytecode cache.\n In addition, an atexit callback to clean the cache is no longer\n registered (as this seemed to defeat most of the purpose of having\n a bytecode cache.) Finally, a more complex bytecode cache may be\n configured by setting ``jinja2.bytecode_caching`` directly to a\n ``jinja2.BytecodeCache`` instance. (This can not be done in a\n paste .ini file, it must be done programatically.)\n [dairiki]\n\n- prevent error when using `python setup.py bdist_wheel`\n [msabramo]\n\n\n1.9 (2013-11-08)\n================\n\n- fix indentation level for Jinja2ProjectTemplate in scaffolds/__init__.py\n [Bruno Binet]\n\n- Remove unnecessary dependency on ``pyramid.interfaces.ITemplateRenderer``\n which was deprecated in Pyramid 1.5.\n [mmerickel]\n\n- #68: Added `model_path_filter`, `route_path_filter` and `static_path_filter` filters\n [Remco]\n\n- #74: Fixed issue with route being converted as_const by jinja2 engine when using btyecode cache\n [Remco]\n\n\n1.8 (2013-10-03)\n================\n\n- #70: Do not pin for py3.2 compatibility unless running under py3.2\n [dairiki]\n\n\n1.7 (2013-08-07)\n================\n\n- #56: python3.3: Non-ASCII characters in changelog breaks pip installation\n [Domen Kozar]\n\n- #57: Remove useless warning: `DeprecationWarning: reload_templates setting\n is deprecated, use pyramid.reload_templates instead.`\n [Marc Abramowitz]\n\n\n1.6 (2013-01-23)\n================\n\n- Set `jinja2.i18n.domain` default to the package name\n of the pyramid application.\n [Domen Kozar]\n\n- Add `jinja2.globals` setting to add global objects into \n the template context\n [Eugene Fominykh]\n\n- Add `jinja2.newstyle` setting to enable newstyle gettext calls\n [Thomas Schussler]\n\n1.5 (2012-11-24)\n================\n\n- Add `pyramid.reload_templates` to set `jinja2.auto_reload` instead of\n using `reload_templates`. Deprecate the latter.\n [Domen Kozar]\n\n- Clear bytecode cache on atexit\n [Domen Kozar]\n\n- Add support for more Jinja2 options. Note support for jinja2.autoescape is\n limited to boolean only.\n\n * jinja2.block_start_string\n * jinja2.block_end_string\n * jinja2.variable_start_string\n * jinja2.variable_end_string\n * jinja2.comment_start_string\n * jinja2.comment_end_string\n * jinja2.line_statement_prefix\n * jinja2.line_comment_prefix\n * jinja2.trim_blocks\n * jinja2.newline_sequence\n * jinja2.optimized\n * jinja2.cache_size\n * jinja2.autoescape\n\n [Michael Ryabushkin]\n\n1.4.2 (2012-10-17)\n==================\n\n- Add `jinja2.undefined` setting to change handling of undefined types.\n [Robert Buchholz]\n\n- Remove redundant decoding error handling\n [Domen Kozar]\n\n- Configure bytecode caching by default. Introduce `jinja2.bytecode_caching`\n and `jinja2.bytecode_caching_directory` settings.\n [Domen Kozar]\n\n- Allow to add custom Jinja2 tests in `jinja2.tests` setting.\n [Sebastian Kalinowski]\n\n1.4.1 (2012-09-12)\n==================\n\n- Fix brown-bag release\n [Domen Kozar]\n\n\n1.4 (2012-09-12)\n================\n\n- Correctly resolve relative search paths passed to ``add_jinja2_search_path``\n and ``jinja2.directories``\n [Domen Kozar]\n\n- #34: Don't recreate ``jinja2.Environment`` for ``add_jinja2_extension``\n [Domen Kozar]\n\n- Drop Python 2.5 compatibility\n [Domen Kozar]\n\n- Addition of ``static_url`` filter.\n\n- Add ``dev`` and ``docs`` setup.py aliases (ala Pyramid).\n\n- Changed template loading relative to package calling the renderer so\n it works like the Chameleon template loader.\n\n1.3 (2011-12-14)\n================\n\n- Make scaffolding compatible with Pyramid 1.3a2+.\n\n1.2 (2011-09-27)\n================\n\n- Make tests pass on Pyramid 1.2dev.\n\n- Make compatible with Python 3.2 (requires Pyramid 1.3dev+).\n\n1.1 (2011-07-24)\n================\n\n- Add ``get_jinja2_environment`` directive.\n\n- Add all configurator directives to documentation.\n\n1.0 (2011-05-12)\n================\n\n- Message domain can now be specified with *jinja2.i18n.domain* for i18n\n\n- Paster template now sets up starter locale pot/po/mo files\n\n- pyramid_jinja2 now depends on Jinja2 >= 2.5.0 due to\n ``jinja2.Environment.install_gettext_callables`` use\n https://github.com/Pylons/pyramid_jinja2/pull/21\n\n- Added demo app just to visualize i18n work\n\n0.6.2 (2011-04-06)\n==================\n\n- ``jinja2.ext.i18n`` is now added by default, see ``i18n.rst``\n for details\n\n- Added ``add_jinja2_extension`` directive to the Configurator\n\n- Updated jinja2.extensions parsing mechanism\n\n- Fixed docs to indicate using asset: prefix is no longer necessary\n\n0.6.1 (2011-03-03)\n==================\n\n- Asset-based loading now takes precedance and does not require\n \"asset:\" prefix\n\n- Fixed the \"current\" package mechanism of asset: loading so that\n it more accurately finds the current package\n\n- Dependency on ``pyramid_zcml`` removed.\n\n0.6 (2011-02-15)\n================\n\n- Documentation overhauled.\n\n- Templates can now be looked up by asset spec completely bypassing\n the search path by specifying a prefix of ``asset:``.\n\n- Updated paster template to more closely relate to changes made\n to paster templmates in Pyramid core.\n\n- Add new directive ``add_jinja2_search_path`` to the configurator\n when ``includeme`` is used.\n\n0.5 (2011-01-18)\n================\n\n- Add ``includeme`` function (meant to be used via ``config.include``).\n\n- Fix documentation bug related to ``paster create`` reported at\n https://github.com/Pylons/pyramid_jinja2/issues/12\n\n- Depend upon Pyramid 1.0a10 + (to make ZCML work).\n\n0.4 (2010-12-16)\n================\n\nPaster Template\n---------------\n\n- Changes to normalize with default templates shipping with Pyramid core:\n remove calls to ``config.begin()`` and ``config.end()`` from\n ``__init__.main``, entry point name changed to ``main``, entry\n ``__init__.py`` function name changed to ``main``, depend on WebError, use\n ``paster_plugins`` argument to setup function in setup.py, depend on\n Pyramid 1.0a6+ (use ``config`` rather than ``configurator``).\n\nTests\n-----\n\n- Use ``testing.setUp`` and ``testing.tearDown`` rather than constructing a\n Configurator (better fwd compat).\n\nFeatures\n--------\n\n- Add ``model_url`` and ``route_url`` filter implementations (and\n documented).\n\nDocumentation\n-------------\n\n- Use Makefile which pulls in Pylons theme automagically.\n\n0.3 (2010-11-26)\n================\n\n- Add ``jinja2.filters`` and ``jinja2.extensions`` settings (thanks to\n aodag).\n\n- Document all known settings.\n\n0.2 (2010-11-06)\n================\n\n- Template autoreloading did not function, even if ``reload_templates`` was\n set to ``True``.\n\n0.1 (2010-11-05)\n================\n\n- First release. *Not* backwards compatible with ``repoze.bfg.jinja2``: we\n use a filesystem loader (the directories to load from come from the\n ``jinja2.directories`` setting). No attention is paid to the current\n package when resolving a renderer= line.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Pylons/pyramid_jinja2", "keywords": "web wsgi pylons pyramid jinja2", "license": "BSD-derived (http://www.repoze.org/LICENSE.txt)", "maintainer": "Domen Kozar", "maintainer_email": "domen@dev.si", "name": "pyramid-jinja2", "package_url": "https://pypi.org/project/pyramid-jinja2/", "platform": "", "project_url": "https://pypi.org/project/pyramid-jinja2/", "project_urls": { "Homepage": "https://github.com/Pylons/pyramid_jinja2" }, "release_url": "https://pypi.org/project/pyramid-jinja2/2.8/", "requires_dist": [ "Jinja2 (>=2.5.0)", "MarkupSafe", "pyramid (>=1.3.0)", "zope.deprecation", "pylons-sphinx-themes (>=0.3) ; extra == 'docs'", "Sphinx (>=1.7.5) ; extra == 'docs'", "coverage ; extra == 'testing'", "nose (>=1.2.0) ; extra == 'testing'", "WebTest ; extra == 'testing'" ], "requires_python": "", "summary": "Jinja2 template bindings for the Pyramid web framework", "version": "2.8" }, "last_serial": 4741537, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "f9eada181a21d305e7fdf01ffa22024a", "sha256": "cb3473a610a5c3abc1ebf3338ad17a86cab4d89f16d5e668da31447bafef8693" }, "downloads": -1, "filename": "pyramid_jinja2-0.1.tar.gz", "has_sig": false, "md5_digest": "f9eada181a21d305e7fdf01ffa22024a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26856, "upload_time": "2010-11-05T10:02:55", "url": "https://files.pythonhosted.org/packages/a8/a6/2fca9825e6336976d6cd795f74f4bcfa58a66168de9d725e17d790e6ae9c/pyramid_jinja2-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "62e2b58c70304cb257053d034b40fdbc", "sha256": "ae173db24f28a711e08f1cda205080daa100b4bb878ca1dc49ea9bcab2bafecb" }, "downloads": -1, "filename": "pyramid_jinja2-0.2.tar.gz", "has_sig": false, "md5_digest": "62e2b58c70304cb257053d034b40fdbc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26946, "upload_time": "2010-11-06T07:01:01", "url": "https://files.pythonhosted.org/packages/e0/b4/f73998a9ab2971243458431ab2c7584dd5df676a804450a42923b1bee65d/pyramid_jinja2-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "456c00a804f95a4474c0eead2509b20a", "sha256": "4085ff732619804572f4754f6364bc1abb13d7bbd143a9c2a191675b30f8172a" }, "downloads": -1, "filename": "pyramid_jinja2-0.3.tar.gz", "has_sig": false, "md5_digest": "456c00a804f95a4474c0eead2509b20a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30692, "upload_time": "2010-11-26T06:04:10", "url": "https://files.pythonhosted.org/packages/22/04/a842a45938daf9bd2265367a763558805a7d21bcbcb29a47eedd7e23bf9f/pyramid_jinja2-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "8e9f9b0cc645b9bc500c5c9d04b2403e", "sha256": "fa340b5f381ae981b37673690beecb8b6b881f5542fe1a7c06e74cf568f29049" }, "downloads": -1, "filename": "pyramid_jinja2-0.4.tar.gz", "has_sig": false, "md5_digest": "8e9f9b0cc645b9bc500c5c9d04b2403e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32889, "upload_time": "2010-12-16T20:09:01", "url": "https://files.pythonhosted.org/packages/c0/9d/57ed671ae52ebd0d23de57193ab5c06b96305175fa672c99cdb17afed563/pyramid_jinja2-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "c92fa1893a60728248458ede0d11ae6d", "sha256": "1201f6c52630135f9767726626830b8a2f66c76f043ebbe032c8cc693e2d2747" }, "downloads": -1, "filename": "pyramid_jinja2-0.5.tar.gz", "has_sig": false, "md5_digest": "c92fa1893a60728248458ede0d11ae6d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33766, "upload_time": "2011-01-18T23:41:49", "url": "https://files.pythonhosted.org/packages/99/9d/084d0241c0ac9f730169524725d37ab8152af35802cc7b9473dc5d0cf1ed/pyramid_jinja2-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "dfc3997628b22e52a689f7dab142704a", "sha256": "519d3e3c04d9180f7587e90ab1d1954663b2e4c2e1175e55260591f0cc09821a" }, "downloads": -1, "filename": "pyramid_jinja2-0.6.tar.gz", "has_sig": false, "md5_digest": "dfc3997628b22e52a689f7dab142704a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43930, "upload_time": "2011-02-15T18:31:06", "url": "https://files.pythonhosted.org/packages/c3/d9/cf937ab6cfe0fcad07e6ce5bf579e0ba9830ccc2e1b3ee6204adec1850d9/pyramid_jinja2-0.6.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "4867ada3512b1d5b4cb56e1288af6d3c", "sha256": "ed9bb411f8f171b11bba2cee6eece08d2bf7fd4bf3e5f9d7eb4ca3450a05ac3f" }, "downloads": -1, "filename": "pyramid_jinja2-0.6.1.tar.gz", "has_sig": false, "md5_digest": "4867ada3512b1d5b4cb56e1288af6d3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45533, "upload_time": "2011-03-03T23:19:55", "url": "https://files.pythonhosted.org/packages/bd/4a/308966b44c9e28414975eff0824c6729d253ced51aa945062fb4470cc1df/pyramid_jinja2-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "0806432f3febc20f695d5fc4d6a15e17", "sha256": "639c7bd9555d6c50c9d4671ab5b40747b4082541881305b894eba4104881385c" }, "downloads": -1, "filename": "pyramid_jinja2-0.6.2.tar.gz", "has_sig": false, "md5_digest": "0806432f3febc20f695d5fc4d6a15e17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43996, "upload_time": "2011-04-06T21:47:13", "url": "https://files.pythonhosted.org/packages/4a/f4/4d1bc189e28d15719e675ff753acc49dc87860b3841e2ad159d9fa1bc94c/pyramid_jinja2-0.6.2.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "3c15cb2780bc67e892a2c1d134fb940a", "sha256": "d6081eab8d55ab678ff63e717a06575a24a91186e7c9a8bc93b5e7e7ab6b1c26" }, "downloads": -1, "filename": "pyramid_jinja2-1.0.tar.gz", "has_sig": false, "md5_digest": "3c15cb2780bc67e892a2c1d134fb940a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46536, "upload_time": "2011-05-12T22:59:33", "url": "https://files.pythonhosted.org/packages/ea/e9/6cbe0c33698f3e3a5c266223dffe80ca9c1dc13beb9c048e479565ec13d8/pyramid_jinja2-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "e2fedb940ec5d6988df7b1fe8c538889", "sha256": "e110e1e32b71d1b38e41cf13244c99c1813fb4d1535189b6d799bbc5e12beef0" }, "downloads": -1, "filename": "pyramid_jinja2-1.1.tar.gz", "has_sig": false, "md5_digest": "e2fedb940ec5d6988df7b1fe8c538889", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52571, "upload_time": "2011-07-25T00:43:41", "url": "https://files.pythonhosted.org/packages/d1/4a/a03848a4fbf3c60feeef1c0b24394c902639be3b879a7ed57eca0454f1ef/pyramid_jinja2-1.1.tar.gz" } ], "1.10": [ { "comment_text": "", "digests": { "md5": "4fdd6229c4641e53a15d6b048c5aa5fe", "sha256": "01e2beeae3888907682bb458a8255dafd47faa8209b480bf072fba8224a00153" }, "downloads": -1, "filename": "pyramid_jinja2-1.10.zip", "has_sig": false, "md5_digest": "4fdd6229c4641e53a15d6b048c5aa5fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74481, "upload_time": "2014-01-11T19:10:56", "url": "https://files.pythonhosted.org/packages/29/43/c4440264a3f22c6da808deb18df27f7c92f02676bfea09cbf201508dba6f/pyramid_jinja2-1.10.zip" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "0511c21512881d9b2e341cfb571badd4", "sha256": "e218b567c0e7ea1f81392c5bbd79b4625cee0589110554de5b84afc399375a56" }, "downloads": -1, "filename": "pyramid_jinja2-1.2.tar.gz", "has_sig": false, "md5_digest": "0511c21512881d9b2e341cfb571badd4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53643, "upload_time": "2011-09-28T04:08:08", "url": "https://files.pythonhosted.org/packages/a0/72/3928893239eab09bc440987493e2ef7ccea88ed0d34329548735f73b4afa/pyramid_jinja2-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "4081c4dfe3996b4ae5eb3843bcd4e4ca", "sha256": "4db301dedb2be9552782f32f59ea036a4979cf04fd25a51b86d1b5263b9888ac" }, "downloads": -1, "filename": "pyramid_jinja2-1.3.tar.gz", "has_sig": false, "md5_digest": "4081c4dfe3996b4ae5eb3843bcd4e4ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53823, "upload_time": "2011-12-15T04:53:45", "url": "https://files.pythonhosted.org/packages/aa/78/d66bbf84737a20bf55c7211231def1f4991841cfafdabddc5566d3d03e2b/pyramid_jinja2-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "61ec2ad898ca252fb35380879ced52fd", "sha256": "93b5b55c2e820928ab2ac163c391fb554f1deb2c8658a0cc258173a419991341" }, "downloads": -1, "filename": "pyramid_jinja2-1.4.zip", "has_sig": false, "md5_digest": "61ec2ad898ca252fb35380879ced52fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64615, "upload_time": "2012-09-12T13:28:24", "url": "https://files.pythonhosted.org/packages/4f/cd/24375032073a148893f639abf615bd42275dce264d39997d063db83b408e/pyramid_jinja2-1.4.zip" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "3baf543e77d3d0b8bb95dadfb2fdb29a", "sha256": "2e90e3ad4afec7c87c733ee4d4e778f7b94a2edf33f23ffd9235cd200e606838" }, "downloads": -1, "filename": "pyramid_jinja2-1.4.1.zip", "has_sig": false, "md5_digest": "3baf543e77d3d0b8bb95dadfb2fdb29a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65352, "upload_time": "2012-09-12T13:38:38", "url": "https://files.pythonhosted.org/packages/d1/e5/c817c90bd9be1aae0b8dc2c195980bb6bff91e30c0939e245e6b89a95741/pyramid_jinja2-1.4.1.zip" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "37584a8f893b86c250fbb423ee6eef41", "sha256": "78e53c7319a37acc5fa60b29ec388fa4bf23cfe0b649b27ed4184e2fdf0fb5d2" }, "downloads": -1, "filename": "pyramid_jinja2-1.4.2.zip", "has_sig": false, "md5_digest": "37584a8f893b86c250fbb423ee6eef41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67513, "upload_time": "2012-10-17T21:51:32", "url": "https://files.pythonhosted.org/packages/6c/60/f372be20438f7d7dc8941338950fb89b38820bc70cca60709fb2b86bb00e/pyramid_jinja2-1.4.2.zip" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "940ab83d7e61f73098f2f07973c02a5a", "sha256": "b35884c5be49483c2e7204bedd04b6c18828b3b66f875236a4824049197939bd" }, "downloads": -1, "filename": "pyramid_jinja2-1.5.zip", "has_sig": false, "md5_digest": "940ab83d7e61f73098f2f07973c02a5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69962, "upload_time": "2012-11-24T22:24:16", "url": "https://files.pythonhosted.org/packages/45/a0/97e3deda7b39f9f155fa58829e9cd6df19667b6b8b79d471a45eb6282b58/pyramid_jinja2-1.5.zip" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "b7df1ab97f90f39529d27ba6da1f6b1c", "sha256": "8f80fcec681b968f5094e37cd1537836ae6a24b40584de4ef7853d813cf73717" }, "downloads": -1, "filename": "pyramid_jinja2-1.6.zip", "has_sig": false, "md5_digest": "b7df1ab97f90f39529d27ba6da1f6b1c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71400, "upload_time": "2013-01-23T15:30:46", "url": "https://files.pythonhosted.org/packages/10/e9/994bd78a8700782e18aec0ab2b3dadabc7a89d46c640d72e585d6bf54363/pyramid_jinja2-1.6.zip" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "e763b19335476ff4f78cfd45a3bb6852", "sha256": "a18686f51d85dc74ce495dc108c87c9b1251748541d31cb073a1011a9a0fa207" }, "downloads": -1, "filename": "pyramid_jinja2-1.7.tar.gz", "has_sig": false, "md5_digest": "e763b19335476ff4f78cfd45a3bb6852", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1023970, "upload_time": "2013-08-19T06:37:57", "url": "https://files.pythonhosted.org/packages/26/b0/76518b70a6341dcd2b0072c9c65ca0bb3f0fe1a9c311ea3ed90e3b848721/pyramid_jinja2-1.7.tar.gz" } ], "1.8": [ { "comment_text": "", "digests": { "md5": "d6b0da67c184c8986333baa36a4912dc", "sha256": "8d542c81f28db2e74af66437007adbca91ebd370935737c3dc53ed6497d42acd" }, "downloads": -1, "filename": "pyramid_jinja2-1.8.zip", "has_sig": false, "md5_digest": "d6b0da67c184c8986333baa36a4912dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72252, "upload_time": "2013-10-03T20:32:12", "url": "https://files.pythonhosted.org/packages/8b/ef/7ed063703d64a356f753825aeed07ba0b987015ef1bfdaeb26a6fb425372/pyramid_jinja2-1.8.zip" } ], "1.9": [ { "comment_text": "", "digests": { "md5": "a6728117cad24749ddb39d2827cd9033", "sha256": "7469cebbe19d43820047aaceff104bcc13a83973908e1395c89907a1426d82a8" }, "downloads": -1, "filename": "pyramid_jinja2-1.9.zip", "has_sig": false, "md5_digest": "a6728117cad24749ddb39d2827cd9033", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73131, "upload_time": "2013-11-08T16:36:28", "url": "https://files.pythonhosted.org/packages/02/3e/99432e115e2f57b8944846a0bf7fa2957cd56485ceccc62f2d67251996f9/pyramid_jinja2-1.9.zip" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "2447bcbbff3ff399ef9e8a54d378f4fc", "sha256": "ea5ecd8b80d2bfe8276ddfbe7b503eb0adeb1b99b946294c2bf5731cd66225aa" }, "downloads": -1, "filename": "pyramid_jinja2-2.0.zip", "has_sig": false, "md5_digest": "2447bcbbff3ff399ef9e8a54d378f4fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78437, "upload_time": "2014-04-21T15:51:39", "url": "https://files.pythonhosted.org/packages/90/05/2ae1091300ab6b451b77f669bd7f42f756319b0aae5c8119cf2d692917c0/pyramid_jinja2-2.0.zip" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "327fc4dec22080a74428916737401ee1", "sha256": "bc65191dab77ba2d16201334c1e59bc73fd241d13a71f07a101e5205b8287b57" }, "downloads": -1, "filename": "pyramid_jinja2-2.0.1.zip", "has_sig": false, "md5_digest": "327fc4dec22080a74428916737401ee1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79777, "upload_time": "2014-04-23T18:30:56", "url": "https://files.pythonhosted.org/packages/c4/84/dfae659163c05f26aabe86322361e1f6a6dcd4e4f62333e6f7d8640d1bb8/pyramid_jinja2-2.0.1.zip" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "27746e9da1b51a0b826fb1de93eea359", "sha256": "0086b922c743ab36324ceb196fb0f395fb2fa244ea564e4476d393512cb294a5" }, "downloads": -1, "filename": "pyramid_jinja2-2.0.2.tar.gz", "has_sig": false, "md5_digest": "27746e9da1b51a0b826fb1de93eea359", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1111403, "upload_time": "2014-05-06T22:52:25", "url": "https://files.pythonhosted.org/packages/c2/ee/b07fbe59de2fa317dd4fc62da5932ba5205659211db9ac8c895904d3a404/pyramid_jinja2-2.0.2.tar.gz" } ], "2.1": [ { "comment_text": "", "digests": { "md5": "37d763eab806904b3b4337257c74458c", "sha256": "084a4ce516049a511c5024507a86e83c938528b1483075c49bd60a7772958215" }, "downloads": -1, "filename": "pyramid_jinja2-2.1.tar.gz", "has_sig": false, "md5_digest": "37d763eab806904b3b4337257c74458c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1115929, "upload_time": "2014-05-16T18:12:15", "url": "https://files.pythonhosted.org/packages/ee/e1/d3ca97b1dc40355637c2b6e3b2859f6367ea7267906293eabc6f7dabd195/pyramid_jinja2-2.1.tar.gz" } ], "2.2": [ { "comment_text": "", "digests": { "md5": "2cef9f567e664cd76813a5da39703332", "sha256": "1c66039d02b3ae343cce00de71dc704048ec0b7b6b90b475007308aa06f5ccfc" }, "downloads": -1, "filename": "pyramid_jinja2-2.2.tar.gz", "has_sig": false, "md5_digest": "2cef9f567e664cd76813a5da39703332", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64017, "upload_time": "2014-05-30T06:15:12", "url": "https://files.pythonhosted.org/packages/9f/22/cc43166e44984c131807bf44001bb630b818eee8e62913ebc4b8e91f3b6e/pyramid_jinja2-2.2.tar.gz" } ], "2.3": [ { "comment_text": "", "digests": { "md5": "0dcd526d18c2ba1d223b5a0820ebb53f", "sha256": "f1324e5bb06470625593b04f30d6910651f82b4f7e169e819e5e83cd10762d9f" }, "downloads": -1, "filename": "pyramid_jinja2-2.3.tar.gz", "has_sig": false, "md5_digest": "0dcd526d18c2ba1d223b5a0820ebb53f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1079115, "upload_time": "2014-05-30T07:07:33", "url": "https://files.pythonhosted.org/packages/9f/bb/7e75a151c8a9853caa41e05c7def01f436eeadecaad684bd67d8268c20ca/pyramid_jinja2-2.3.tar.gz" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "c467eaec3609804ffbaac64219f38708", "sha256": "1de4a8611ceb028fbd3b7e1b7c90c7f89a451278b9df3fc2a42fc1bc798b5eb3" }, "downloads": -1, "filename": "pyramid_jinja2-2.3.1.tar.gz", "has_sig": false, "md5_digest": "c467eaec3609804ffbaac64219f38708", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1044294, "upload_time": "2014-06-13T21:26:52", "url": "https://files.pythonhosted.org/packages/9b/0e/c4720c828f6a6d79571d7029b8aa8482c67ec84195eca7fffe444687223f/pyramid_jinja2-2.3.1.tar.gz" } ], "2.3.2": [ { "comment_text": "", "digests": { "md5": "bb85af346596b72a76ac75c1e10e1f2e", "sha256": "1f1f9315833733154aec63ad272ac36c70fdf30fe0b5abbb91d253d1677b44ea" }, "downloads": -1, "filename": "pyramid_jinja2-2.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bb85af346596b72a76ac75c1e10e1f2e", "packagetype": "bdist_wheel", "python_version": "any", "requires_python": null, "size": 60667, "upload_time": "2014-06-13T22:18:16", "url": "https://files.pythonhosted.org/packages/0b/6a/c1cd1f46f4290d208f2dc68a2edb6bb5fced63d413b1dffcb7131395f4e5/pyramid_jinja2-2.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d12c8a62ab7065e81aee998912f34e2f", "sha256": "7cbc685a0d156ead1a664357566e6721a9521f9ea0cb03ee5d16160d548e8ed1" }, "downloads": -1, "filename": "pyramid_jinja2-2.3.2.tar.gz", "has_sig": false, "md5_digest": "d12c8a62ab7065e81aee998912f34e2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1044573, "upload_time": "2014-06-13T22:15:12", "url": "https://files.pythonhosted.org/packages/bc/78/fd3c7d0ca0be3260557d001297db3f0c70258bfdd51bc6752aae6c450ff1/pyramid_jinja2-2.3.2.tar.gz" } ], "2.3.3": [ { "comment_text": "", "digests": { "md5": "ffee89aaa01f359a320e4679207aa9b4", "sha256": "b73684ceca1f1f3b6a481e89966f794c1e381398e1d8e5ded1c12e0e2015edda" }, "downloads": -1, "filename": "pyramid_jinja2-2.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ffee89aaa01f359a320e4679207aa9b4", "packagetype": "bdist_wheel", "python_version": "any", "requires_python": null, "size": 72998, "upload_time": "2014-07-02T14:37:40", "url": "https://files.pythonhosted.org/packages/27/af/c40ab453be75d150921969cbf019a0aff028fae6e8c495660eba142ced9e/pyramid_jinja2-2.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3c4ee0203cd2b167cd4b5e2569f60768", "sha256": "0f264289b5c562b99c7dd308ff7a6bf94000a443830a137f29bf51e5e8d62523" }, "downloads": -1, "filename": "pyramid_jinja2-2.3.3.tar.gz", "has_sig": false, "md5_digest": "3c4ee0203cd2b167cd4b5e2569f60768", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 617824, "upload_time": "2014-07-02T14:36:25", "url": "https://files.pythonhosted.org/packages/0d/30/d4476e3923d1bf808bf24ca3aa20bdedb1aa9477d8f47805e262ebfa83aa/pyramid_jinja2-2.3.3.tar.gz" } ], "2.4": [ { "comment_text": "", "digests": { "md5": "093f2ebc34c32dbf17b13b27d7b603c7", "sha256": "289dc29a8aae25e1d48235268ac37f1b9a8425d76ce1b0d1e577ae6137262833" }, "downloads": -1, "filename": "pyramid_jinja2-2.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "093f2ebc34c32dbf17b13b27d7b603c7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 190479, "upload_time": "2015-03-27T18:27:37", "url": "https://files.pythonhosted.org/packages/83/17/a486c6ea56331e896f7ce27b258e5ee85b0edf68d7bf25615c9cc5647c5a/pyramid_jinja2-2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6e1c16ad22fc07b26a63916115a1733b", "sha256": "ceaf358ebe41ad76c1f01c3c31fcc4f285114cf3a5290c4ab6b4d6c440c56be8" }, "downloads": -1, "filename": "pyramid_jinja2-2.4.tar.gz", "has_sig": true, "md5_digest": "6e1c16ad22fc07b26a63916115a1733b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 725707, "upload_time": "2015-03-27T18:27:40", "url": "https://files.pythonhosted.org/packages/ee/01/1380c9db0c3466a55193753091d1168faf2b76009b77b76cbf8bd3ffd92b/pyramid_jinja2-2.4.tar.gz" } ], "2.5": [ { "comment_text": "", "digests": { "md5": "07cb6547204ac5e6f0b22a954ccee928", "sha256": "93c86e3103b454301f4d66640191aba047f2ab85ba75647aa18667b7448396bd" }, "downloads": -1, "filename": "pyramid_jinja2-2.5.tar.gz", "has_sig": false, "md5_digest": "07cb6547204ac5e6f0b22a954ccee928", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63164, "upload_time": "2015-04-16T23:15:33", "url": "https://files.pythonhosted.org/packages/a1/80/595e26ffab7deba7208676b6936b7e5a721875710f982e59899013cae1ed/pyramid_jinja2-2.5.tar.gz" } ], "2.6": [ { "comment_text": "", "digests": { "md5": "918151191bf317a110e94cd2b1e3c447", "sha256": "54655475afc85d0e84033373bdd627fc442f8870eaff642a939af228f34472a7" }, "downloads": -1, "filename": "pyramid_jinja2-2.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "918151191bf317a110e94cd2b1e3c447", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 126218, "upload_time": "2016-01-20T18:26:26", "url": "https://files.pythonhosted.org/packages/6c/84/bcfe5fd8a20a924cdf892a2255fbe8212df7a3d4ea652f322bd629c19e03/pyramid_jinja2-2.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e13045f20fb68bfe2ecc0a4e61cdc899", "sha256": "bdbaa373f5ca03d2d61c3c2922350fd9ac2ba427157578631d820895c5b8be9f" }, "downloads": -1, "filename": "pyramid_jinja2-2.6.tar.gz", "has_sig": false, "md5_digest": "e13045f20fb68bfe2ecc0a4e61cdc899", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64995, "upload_time": "2016-01-20T18:19:44", "url": "https://files.pythonhosted.org/packages/ea/a9/99ea54b4981c5b7daa37944b38b517e07c18e2062229994732205f594ea5/pyramid_jinja2-2.6.tar.gz" } ], "2.6.1": [ { "comment_text": "", "digests": { "md5": "b91ea902f7eb8ced3c1548e390f39b26", "sha256": "c6548e3915c6d0be8246c5b81bd56cf53db6be78942280393a51feda9a62c9e0" }, "downloads": -1, "filename": "pyramid_jinja2-2.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b91ea902f7eb8ced3c1548e390f39b26", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 68547, "upload_time": "2016-01-20T18:57:59", "url": "https://files.pythonhosted.org/packages/17/dc/4a52cade0278977f037a84bf1555792f9b84578d09c057dc03b140ea883e/pyramid_jinja2-2.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "61bf774bed5a12f388a3f59fba9ae28b", "sha256": "2463805f36e71cc6faa3c42e110de4e323babf4cc76301bb6db0a3baa6f0ea2f" }, "downloads": -1, "filename": "pyramid_jinja2-2.6.1.tar.gz", "has_sig": false, "md5_digest": "61bf774bed5a12f388a3f59fba9ae28b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65045, "upload_time": "2016-01-20T18:56:31", "url": "https://files.pythonhosted.org/packages/52/73/f18ed08d9abccd9f1d67a754e7da3587a9fed7500eaffc64cca2a1511e2f/pyramid_jinja2-2.6.1.tar.gz" } ], "2.6.2": [ { "comment_text": "", "digests": { "md5": "3a1cf61f72ada3831f078d188ef3b4f8", "sha256": "ae5ca85b1f36ed3b23b1e00df4ff09d728317f0d3bf54e9c4e8030c9e15ac12f" }, "downloads": -1, "filename": "pyramid_jinja2-2.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3a1cf61f72ada3831f078d188ef3b4f8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 68626, "upload_time": "2016-01-23T15:34:59", "url": "https://files.pythonhosted.org/packages/7d/5b/c2c141c4bb9c143821c6e2a81d4d93e5142906448fd5c56c51a48cbc6129/pyramid_jinja2-2.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "10ca075934ebf8f52acfc9898991966d", "sha256": "b6b61380da5918e7619c262546e9ee4e2884dc24a14ff12ab480f6b00b9d3a8f" }, "downloads": -1, "filename": "pyramid_jinja2-2.6.2.tar.gz", "has_sig": false, "md5_digest": "10ca075934ebf8f52acfc9898991966d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65129, "upload_time": "2016-01-23T15:35:04", "url": "https://files.pythonhosted.org/packages/37/00/ac38702305dcf08fe1f1d6d882e8e2d957543bc96c62de52d99d43433c23/pyramid_jinja2-2.6.2.tar.gz" } ], "2.7": [ { "comment_text": "", "digests": { "md5": "00d784009a845ccff8cc846cc614fb11", "sha256": "2e12f1f40d770be2d9680697bb7f9e3dd446341db254b8ebdd8539f9118ddd75" }, "downloads": -1, "filename": "pyramid_jinja2-2.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "00d784009a845ccff8cc846cc614fb11", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 70032, "upload_time": "2016-11-15T16:40:41", "url": "https://files.pythonhosted.org/packages/21/30/fdd0b9a365a60c9e56ae4730c8839eae603f7a87696df14dbd4f980acf35/pyramid_jinja2-2.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c2f8b2cd7b73a6f1d9a311fcfaf4fb92", "sha256": "5c21081f65a5bec0b76957990c2b89ed41f4fd11257121387110cb722fd0e5eb" }, "downloads": -1, "filename": "pyramid_jinja2-2.7.tar.gz", "has_sig": false, "md5_digest": "c2f8b2cd7b73a6f1d9a311fcfaf4fb92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1100073, "upload_time": "2016-11-15T16:40:44", "url": "https://files.pythonhosted.org/packages/d8/80/d60a7233823de22ce77bd864a8a83736a1fe8b49884b08303a2e68b2c853/pyramid_jinja2-2.7.tar.gz" } ], "2.8": [ { "comment_text": "", "digests": { "md5": "cf83253882506fec36d164f711945d1d", "sha256": "c7ce77a2ec5cfb7b29c9eabec9e5c167698d13adb2524c0c47cc6fe6a0a09ab1" }, "downloads": -1, "filename": "pyramid_jinja2-2.8-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "cf83253882506fec36d164f711945d1d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 64911, "upload_time": "2019-01-25T19:53:07", "url": "https://files.pythonhosted.org/packages/f4/dd/eb694f397c5c7bf7ce9104c868cdfd4279b78ceea34b832ebdb98af7130f/pyramid_jinja2-2.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5958dd1db169f17e0f67682cb2f4c427", "sha256": "81e0615cb3108f2a251ff3141ad0d698a5d03685819f3a836ea84787e8489502" }, "downloads": -1, "filename": "pyramid_jinja2-2.8.tar.gz", "has_sig": true, "md5_digest": "5958dd1db169f17e0f67682cb2f4c427", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1107414, "upload_time": "2019-01-25T19:53:10", "url": "https://files.pythonhosted.org/packages/64/41/96751acb06af8d3d11c3ba3c1cd54509ed384a8c1b088595953172a3ee57/pyramid_jinja2-2.8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "cf83253882506fec36d164f711945d1d", "sha256": "c7ce77a2ec5cfb7b29c9eabec9e5c167698d13adb2524c0c47cc6fe6a0a09ab1" }, "downloads": -1, "filename": "pyramid_jinja2-2.8-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "cf83253882506fec36d164f711945d1d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 64911, "upload_time": "2019-01-25T19:53:07", "url": "https://files.pythonhosted.org/packages/f4/dd/eb694f397c5c7bf7ce9104c868cdfd4279b78ceea34b832ebdb98af7130f/pyramid_jinja2-2.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5958dd1db169f17e0f67682cb2f4c427", "sha256": "81e0615cb3108f2a251ff3141ad0d698a5d03685819f3a836ea84787e8489502" }, "downloads": -1, "filename": "pyramid_jinja2-2.8.tar.gz", "has_sig": true, "md5_digest": "5958dd1db169f17e0f67682cb2f4c427", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1107414, "upload_time": "2019-01-25T19:53:10", "url": "https://files.pythonhosted.org/packages/64/41/96751acb06af8d3d11c3ba3c1cd54509ed384a8c1b088595953172a3ee57/pyramid_jinja2-2.8.tar.gz" } ] }