{ "info": { "author": "noah morrison", "author_email": "noah@morrison.ph", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Text Processing :: Markup" ], "description": "[![PyPI version](https://badge.fury.io/py/chevron.svg)](https://badge.fury.io/py/chevron)\n[![Build Status](https://travis-ci.org/noahmorrison/chevron.svg?branch=master)](https://travis-ci.org/noahmorrison/chevron)\n[![Coverage Status](https://img.shields.io/coveralls/noahmorrison/chevron.svg)](https://coveralls.io/r/noahmorrison/chevron?branch=master)\n\nA python implementation of the [mustache templating language](http://mustache.github.io).\n\nWhy chevron?\n------------\n\nI'm glad you asked!\n\n### chevron is fast ###\n\nChevron runs in less than half the time of [pystache](http://github.com/defunkt/pystache) (Which is not even up to date on the spec).\nAnd in about 70% the time of [Stache](https://github.com/hyperturtle/Stache) (A 'trimmed' version of mustache, also not spec compliant).\n\n### chevron is pep8 ###\n\nThe flake8 command is run by [travis](https://travis-ci.org/noahmorrison/chevron) to ensure consistency.\n\n### chevron is spec compliant ###\n\nChevron passes all the unittests provided by the [spec](https://github.com/mustache/spec) (in every version listed below).\n\nIf you find a test that chevron does not pass, please [report it.](https://github.com/noahmorrison/chevron/issues/new)\n\n### chevron is Python 2 and 3 compatible ###\n\nPython 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, and 3.6 are all tested by travis.\n\n\n\nUSAGE\n-----\n\nCommandline usage: (if installed via pypi)\n```\nusage: chevron [-h] [-v] [-d DATA] [-p PARTIALS_PATH] [-e PARTIALS_EXT]\n [-l DEF_LDEL] [-r DEF_RDEL]\n template\n\npositional arguments:\n template The mustache file\n\noptional arguments:\n -h, --help show this help message and exit\n -v, --version show program's version number and exit\n -d DATA, --data DATA The json data file\n -p PARTIALS_PATH, --path PARTIALS_PATH\n The directory where your partials reside\n -e PARTIALS_EXT, --ext PARTIALS_EXT\n The extension for your mustache partials, 'mustache'\n by default\n -l DEF_LDEL, --left-delimiter DEF_LDEL\n The default left delimiter, \"{{\" by default.\n -r DEF_RDEL, --right-delimiter DEF_RDEL\n The default right delimiter, \"}}\" by default.\n```\n\nPython usage with strings\n```python\nimport chevron\n\nchevron.render('Hello, {{ mustache }}!', {'mustache': 'World'})\n```\n\nPython usage with file\n```python\nimport chevron\n\nwith open('file.mustache', 'r') as f:\n chevron.render(f, {'mustache': 'World'})\n```\n\nPython usage with unpacking\n```python\nimport chevron\n\nargs = {\n 'template': 'Hello, {{ mustache }}!',\n\n 'data': {\n 'mustache': 'World'\n }\n}\n\nchevron.render(**args)\n```\n\nchevron supports partials (via dictionaries)\n```python\nimport chevron\n\nargs = {\n 'template': 'Hello, {{> thing }}!',\n\n 'partials_dict': {\n 'thing': 'World'\n }\n}\n\nchevron.render(**args)\n```\n\nchevron supports partials (via the filesystem)\n```python\nimport chevron\n\nargs = {\n 'template': 'Hello, {{> thing }}!',\n\n # defaults to .\n 'partials_path': 'partials/',\n\n # defaults to mustache\n 'partials_ext': 'ms',\n}\n\n# ./partials/thing.ms will be read and rendered\nchevron.render(**args)\n```\n\nchevron supports lambdas\n```python\nimport chevron\n\ndef first(text, render):\n # return only first occurance of items\n result = render(text)\n return [ x.strip() for x in result.split(\" || \") if x.strip() ][0]\n\ndef inject_x(text, render):\n # inject data into scope\n return render(text, {'x': 'data'})\n\nargs = {\n 'template': 'Hello, {{# first}} {{x}} || {{y}} || {{z}} {{/ first}}! {{# inject_x}} {{x}} {{/ inject_x}}',\n\n 'data': {\n 'y': 'foo',\n 'z': 'bar',\n 'first': first,\n 'inject_x': inject_x\n }\n}\n\nchevron.render(**args)\n```\n\nINSTALL\n-------\n\n- with git\n```\n$ git clone https://github.com/noahmorrison/chevron.git\n```\n\nor using submodules\n```\n$ git submodules add https://github.com/noahmorrison/chevron.git\n```\n\nAlso available on pypi!\n\n- with pip\n```\n$ pip install chevron\n```\n\n\n\nTODO\n---\n\n* get popular\n* have people complain\n* fix those complaints\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/noahmorrison/chevron", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "chevron", "package_url": "https://pypi.org/project/chevron/", "platform": "", "project_url": "https://pypi.org/project/chevron/", "project_urls": { "Homepage": "https://github.com/noahmorrison/chevron" }, "release_url": "https://pypi.org/project/chevron/0.13.1/", "requires_dist": null, "requires_python": "", "summary": "Mustache templating language renderer", "version": "0.13.1" }, "last_serial": 4336740, "releases": { "0.0.0": [ { "comment_text": "", "digests": { "md5": "2fa5daaddbb2c23f636677d4174c9758", "sha256": "3128ed5f24bdb79d8689f8257f17ee9fd351a8311d354b09346bf880db97f479" }, "downloads": -1, "filename": "chevron-0.0.0.tar.gz", "has_sig": false, "md5_digest": "2fa5daaddbb2c23f636677d4174c9758", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5878, "upload_time": "2015-01-23T13:19:49", "url": "https://files.pythonhosted.org/packages/0a/32/fe3d10d9464d0a0ac0eeb4fa946e1e39489e9a59c630a487d6c461f37715/chevron-0.0.0.tar.gz" } ], "0.1": [ { "comment_text": "", "digests": { "md5": "0ff0b8b7c8115624922762ce9af4f4d9", "sha256": "aa99880539c723539a062d605fe2887109e8ccd9bc8e2197339fce6bfbc29efb" }, "downloads": -1, "filename": "chevron-0.1.tar.gz", "has_sig": false, "md5_digest": "0ff0b8b7c8115624922762ce9af4f4d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4780, "upload_time": "2014-11-18T23:06:15", "url": "https://files.pythonhosted.org/packages/47/44/c623d34ddf598f2f8f9e4cb94026cc392656392217bf01b85ac24ef83d95/chevron-0.1.tar.gz" } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "ea069fc2403e098948c52cd2acf69075", "sha256": "d863fb6039d6f338a245fa51f92f7c38723bbe196f7c21f828f7c9968148b7fe" }, "downloads": -1, "filename": "chevron-0.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ea069fc2403e098948c52cd2acf69075", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8603, "upload_time": "2017-06-15T04:27:27", "url": "https://files.pythonhosted.org/packages/9e/60/e9d16dfd8143ed2b3b1d5b203fde7560623c3e9daf99dc938591fe514668/chevron-0.10.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0a62a777009b71c117e1f954e34beac7", "sha256": "6f286c00dd76e66783acd17b6d59a670e20d74b0eedfb63be2c574300dd9bc1e" }, "downloads": -1, "filename": "chevron-0.10.0.tar.gz", "has_sig": false, "md5_digest": "0a62a777009b71c117e1f954e34beac7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6321, "upload_time": "2017-06-15T04:27:29", "url": "https://files.pythonhosted.org/packages/9d/e3/b669e80454fb1710bcb54d184b7d2da8b8b8bceafc6389c659759da4a872/chevron-0.10.0.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "99f513a1e3bad822ef8418c7351e38fb", "sha256": "388fad218e169fb37fd65a87385eed6ff8b9cdd3f717429c0cab0759a55160ab" }, "downloads": -1, "filename": "chevron-0.11.0.zip", "has_sig": false, "md5_digest": "99f513a1e3bad822ef8418c7351e38fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8913, "upload_time": "2017-06-29T21:18:48", "url": "https://files.pythonhosted.org/packages/fd/55/1b83cf1966fda0f697d4d2173b3df63d6f6dee47e326b65225acca0b059b/chevron-0.11.0.zip" } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "46b8f62b9e9e4f8c859080d8cfb20254", "sha256": "ba8ab9819f234aa87b42df58e4a8abb302e70dce4e6bcb5f417a140aa4afc58d" }, "downloads": -1, "filename": "chevron-0.11.1-py3-none-any.whl", "has_sig": false, "md5_digest": "46b8f62b9e9e4f8c859080d8cfb20254", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8662, "upload_time": "2017-07-03T11:48:31", "url": "https://files.pythonhosted.org/packages/91/e4/def9b8eafd112053e2cb63ec335e4b5934eb25a7ab2276e60ec3e9846b7d/chevron-0.11.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "55cbec641d5b80244b842c62e16d1300", "sha256": "7e607f6f78564ae30808d82e748dac31772df48c26607f0b66ce9969a6ba0a16" }, "downloads": -1, "filename": "chevron-0.11.1.tar.gz", "has_sig": false, "md5_digest": "55cbec641d5b80244b842c62e16d1300", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6371, "upload_time": "2017-07-03T11:48:32", "url": "https://files.pythonhosted.org/packages/74/2c/21a0f6c9bbc9bfe6ca4646111be126c0a6753e8670780ef0d6ba72cfacc3/chevron-0.11.1.tar.gz" } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "fc62bd8c6d7e3bd887f2e3fa9f326145", "sha256": "4b8bed4da5361f917234da82e34227512cbe786bb50ee3c59ce78e6b9c8708c1" }, "downloads": -1, "filename": "chevron-0.12.0-py3-none-any.whl", "has_sig": false, "md5_digest": "fc62bd8c6d7e3bd887f2e3fa9f326145", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7895, "upload_time": "2018-07-21T00:08:12", "url": "https://files.pythonhosted.org/packages/1a/52/040085bc41832afb5eba77557fbe47daf2f6be1fd544f25e253f1ddb6834/chevron-0.12.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c390eeffeb46316eac11ebc9c3d2bdde", "sha256": "279b5113ac6ca3abefffa360bffbf6b397476c80d38c82896473d1dd6f82d86a" }, "downloads": -1, "filename": "chevron-0.12.0.tar.gz", "has_sig": false, "md5_digest": "c390eeffeb46316eac11ebc9c3d2bdde", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8244, "upload_time": "2018-06-16T14:34:34", "url": "https://files.pythonhosted.org/packages/d0/b2/e0c12b8de2f8e6b6f610d98a0b767aa6f80261aa50819f247da605045e9c/chevron-0.12.0.tar.gz" } ], "0.12.1": [ { "comment_text": "", "digests": { "md5": "23e52511fd50eba56828cd3e69144ed4", "sha256": "75d377c9a0ef6010d676044586b17348f27681d51ccf2410901f1d3f71115f2d" }, "downloads": -1, "filename": "chevron-0.12.1-py3-none-any.whl", "has_sig": false, "md5_digest": "23e52511fd50eba56828cd3e69144ed4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8075, "upload_time": "2018-07-21T00:06:21", "url": "https://files.pythonhosted.org/packages/4d/42/c9d25827b8c07809d2318d6e704999e3e3c358d37ffa6584dbd44e82f961/chevron-0.12.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bba40a2dc88c24a9d130e23c0347c3d3", "sha256": "ce71efbdb090399d2f09c0a4ba99d90bf3a976e580fe593b73d791d0fa672f9c" }, "downloads": -1, "filename": "chevron-0.12.1.tar.gz", "has_sig": false, "md5_digest": "bba40a2dc88c24a9d130e23c0347c3d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8312, "upload_time": "2018-06-17T11:54:01", "url": "https://files.pythonhosted.org/packages/91/71/be48be86ce04d3a4df91c9517aa93c524b1d6824980bd783415ffbe558f3/chevron-0.12.1.tar.gz" } ], "0.12.2": [ { "comment_text": "", "digests": { "md5": "1c93b8fd9de037499145240be574db05", "sha256": "2317ec5244e9ffb1e053cce2e6415c9e15898200def1fa819379ad382df92d0b" }, "downloads": -1, "filename": "chevron-0.12.2-py3-none-any.whl", "has_sig": false, "md5_digest": "1c93b8fd9de037499145240be574db05", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8102, "upload_time": "2018-07-21T00:10:59", "url": "https://files.pythonhosted.org/packages/c2/fa/7ddfaff07ebdb522fb906bab3bde9fe418ce4e9e398b9ad2fdf7f9f6fa4c/chevron-0.12.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4408928f05de24ade6071e7514ca9b12", "sha256": "0f9b30f6dc664db76168b005672f8ed4905b3f820c645995887158f61bb03d59" }, "downloads": -1, "filename": "chevron-0.12.2.tar.gz", "has_sig": false, "md5_digest": "4408928f05de24ade6071e7514ca9b12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8333, "upload_time": "2018-07-21T00:05:08", "url": "https://files.pythonhosted.org/packages/b5/84/187793314abb5d63dff39cbea030e317f06605d45c034239645580f9a352/chevron-0.12.2.tar.gz" } ], "0.13.1": [ { "comment_text": "", "digests": { "md5": "0d5373c155486bf05668bb95ebbb2c28", "sha256": "95b0a055ef0ada5eb061d60be64a7f70670b53372ccd221d1b88adf1c41a9094" }, "downloads": -1, "filename": "chevron-0.13.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0d5373c155486bf05668bb95ebbb2c28", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11237, "upload_time": "2018-10-03T14:31:20", "url": "https://files.pythonhosted.org/packages/a3/1e/6ef58385f54c5bbf70b3b451930015aa2d30b3cd5ae324bba4da77c5b889/chevron-0.13.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "008fd615a646c35f3ba0697722ebc4c4", "sha256": "f95054a8b303268ebf3efd6bdfc8c1b428d3fc92327913b4e236d062ec61c989" }, "downloads": -1, "filename": "chevron-0.13.1.tar.gz", "has_sig": false, "md5_digest": "008fd615a646c35f3ba0697722ebc4c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9095, "upload_time": "2018-10-03T14:31:21", "url": "https://files.pythonhosted.org/packages/2a/01/efb4ef22ea9b6377392bd5d6af5acbd218100ee7379dbcd8a7322585710d/chevron-0.13.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "e62b8c8ba220b38a232f38273433e474", "sha256": "0ba044c1350882420c250c6929a0f817847f1be8bd9658df43599c4e9e590e31" }, "downloads": -1, "filename": "chevron-0.2.tar.gz", "has_sig": false, "md5_digest": "e62b8c8ba220b38a232f38273433e474", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5056, "upload_time": "2014-11-19T19:05:35", "url": "https://files.pythonhosted.org/packages/f0/8b/79b1fae633913c4c41f13a7dd168e4f7f707522e551e56fcf119aae81648/chevron-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "3dae04da1bc482824b9b96f52c4417a2", "sha256": "afab1c297675c14d7a7fd930809350e25ca8372510b5693664151f9d4ae5831d" }, "downloads": -1, "filename": "chevron-0.3.tar.gz", "has_sig": false, "md5_digest": "3dae04da1bc482824b9b96f52c4417a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5133, "upload_time": "2014-11-22T03:45:58", "url": "https://files.pythonhosted.org/packages/66/29/91df8f85426f1d30e0d40e5d928a8e36657ebc02fd2a4de59f61ad380328/chevron-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "2377f76172ba683237db210e45e9df95", "sha256": "55967462d574f5aa31f26df6540036ebcf525b8aa5909677e6d5a9dc6e798e0e" }, "downloads": -1, "filename": "chevron-0.4.tar.gz", "has_sig": false, "md5_digest": "2377f76172ba683237db210e45e9df95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5263, "upload_time": "2014-11-22T23:26:34", "url": "https://files.pythonhosted.org/packages/59/d3/d5bade29bd656b7cf7b8b1f8e37134674fd1f5a26636b0be34dbfdb72e4d/chevron-0.4.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "4ad6c326783917a117df8e8b905bcedf", "sha256": "9f304d916037f51a7d2f9e49ccc53af4a22f24588a4e1ae5ed37a9457fecc6dd" }, "downloads": -1, "filename": "chevron-0.4.1.tar.gz", "has_sig": false, "md5_digest": "4ad6c326783917a117df8e8b905bcedf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5268, "upload_time": "2014-11-28T15:11:30", "url": "https://files.pythonhosted.org/packages/b1/3e/355edce8b5837f1ebcb08daad101f623232ba24402dae50ed5bc368c9889/chevron-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "1188ad4db53d7b304c34112e04e1540d", "sha256": "95fb37c3171d84b9f7a36dbc47da47d17974bd4223717dfbeef83f22fee1f1fb" }, "downloads": -1, "filename": "chevron-0.4.2.tar.gz", "has_sig": false, "md5_digest": "1188ad4db53d7b304c34112e04e1540d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5438, "upload_time": "2014-11-29T22:27:52", "url": "https://files.pythonhosted.org/packages/83/bb/d8a7531ea90b5a1a2e686e4a3064fa2796381f6f1a9b023e612e9b3a6102/chevron-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "440748e6a6019bc5f57aa3456bfee73f", "sha256": "0dd6ce484bc33e35fbc5be232d74b6ada0261bc35a36a7bf3f28a985a293e30c" }, "downloads": -1, "filename": "chevron-0.4.3.tar.gz", "has_sig": false, "md5_digest": "440748e6a6019bc5f57aa3456bfee73f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5600, "upload_time": "2014-12-05T04:25:54", "url": "https://files.pythonhosted.org/packages/ed/11/8f178a94f027c40e7bd56b1b0d4c4e0c1802ab1398cf7ba6b7abecbc5df6/chevron-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "c03565da124abd8219c1b2840037bd42", "sha256": "f2e2deb951574852a70fb22e0742d3af9b516c234b6b867212441964eb327139" }, "downloads": -1, "filename": "chevron-0.4.4.tar.gz", "has_sig": false, "md5_digest": "c03565da124abd8219c1b2840037bd42", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5871, "upload_time": "2014-12-23T03:59:49", "url": "https://files.pythonhosted.org/packages/73/8f/b920428cb8980b67d1671c221e7feba2920dc932b00fd19b4b4be12fd985/chevron-0.4.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "8cb907b078a73786c0382224a8916ba0", "sha256": "a4d715e97688c022256c78302da29365b8a191b0cae2ae0bc0cf6050d6db7961" }, "downloads": -1, "filename": "chevron-0.5.tar.gz", "has_sig": false, "md5_digest": "8cb907b078a73786c0382224a8916ba0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5864, "upload_time": "2015-01-15T20:04:24", "url": "https://files.pythonhosted.org/packages/dd/2c/964bcd52b22e96ec73d11ebfcc0167ee9feba5abe8c86db7979e4e426d31/chevron-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "316210b448f3a7a776a9f019e844fefe", "sha256": "239a7951f51c6f10b0da084aaef197d80642f19c0bec64fafcdb93754fd03969" }, "downloads": -1, "filename": "chevron-0.6.tar.gz", "has_sig": false, "md5_digest": "316210b448f3a7a776a9f019e844fefe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5887, "upload_time": "2015-01-16T16:03:30", "url": "https://files.pythonhosted.org/packages/15/8a/62036f5dd2da2873a4f1bf43623dfb1874b794e2d161faaf1b6122e6ea5c/chevron-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "940a392c05d6995bf0ef6b0e6530e6e9", "sha256": "c185d957e11209891954cecec5e6ff8b9e6b306e65d43bd2d9bc61849c07a88f" }, "downloads": -1, "filename": "chevron-0.7.tar.gz", "has_sig": false, "md5_digest": "940a392c05d6995bf0ef6b0e6530e6e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5898, "upload_time": "2015-01-23T02:59:50", "url": "https://files.pythonhosted.org/packages/6c/4a/ac30db6e96eadf28e394a7eb093b7e9b4de22d2ed4fd1474be7fdc138cc4/chevron-0.7.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "46a05a541961958a4ac9d88eb1906fd8", "sha256": "d4dde34638413c206906380836c0a6611b045c7a0412dbae2e83bc7a46575c29" }, "downloads": -1, "filename": "chevron-0.7.1.tar.gz", "has_sig": false, "md5_digest": "46a05a541961958a4ac9d88eb1906fd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5885, "upload_time": "2015-01-23T13:27:16", "url": "https://files.pythonhosted.org/packages/5d/12/cbd89c264fa20ffe774d9b44b87a146815dc57f56f5d05e1f4ce1f638411/chevron-0.7.1.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "c1705f3abd0536c0e8795900d2b9a2ae", "sha256": "1cc8bd3e3c3241da448300852093ba31df7f642257fe630ac90d62ed51b1ed4d" }, "downloads": -1, "filename": "chevron-0.7.3.tar.gz", "has_sig": false, "md5_digest": "c1705f3abd0536c0e8795900d2b9a2ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5891, "upload_time": "2015-01-25T04:11:09", "url": "https://files.pythonhosted.org/packages/fc/44/4357a93a7de04e4842b00751d23e884043f5da34d8488b7eb604e931cc32/chevron-0.7.3.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "759bf22319935e4c5399f7e832dd0129", "sha256": "40173c150f9822931a72531f2a8c461c01706fb2870440f7f911bd9b49913b9c" }, "downloads": -1, "filename": "chevron-0.7.4.tar.gz", "has_sig": false, "md5_digest": "759bf22319935e4c5399f7e832dd0129", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5916, "upload_time": "2015-01-25T20:56:32", "url": "https://files.pythonhosted.org/packages/88/37/e79323097090f67040ee57320ebdb1b4da61aa54aeb1f967a03abcbd3af4/chevron-0.7.4.tar.gz" } ], "0.7.6": [ { "comment_text": "", "digests": { "md5": "a250c62fd0de768f898afc1ece8c9baa", "sha256": "1901da847b458dc6d15c01df82161ba61be2a5bcaac6d6426039e05b16c01511" }, "downloads": -1, "filename": "chevron-0.7.6.tar.gz", "has_sig": false, "md5_digest": "a250c62fd0de768f898afc1ece8c9baa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7282, "upload_time": "2015-01-26T01:07:20", "url": "https://files.pythonhosted.org/packages/2f/cd/0f3169d076a3a6883bef22d7a5aabf8b24ad76ecc1574262a48045237c60/chevron-0.7.6.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "24e8f37207cf9b2e9c6461a5df934df5", "sha256": "c98e131a324d33cdc2f2aff7bc6a4a55f387820ff6b550b57fc936163e5e70ff" }, "downloads": -1, "filename": "chevron-0.8.2.tar.gz", "has_sig": false, "md5_digest": "24e8f37207cf9b2e9c6461a5df934df5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7324, "upload_time": "2015-01-26T21:30:07", "url": "https://files.pythonhosted.org/packages/5f/1a/28ff1333f91ed8f9d4b26b86a03195c54096ea7fdea30f012def1923e0f9/chevron-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "41cfa6a7ae68d4352e1dca86cc04bf79", "sha256": "4504eaf228afe570e5e411c096742486adade5111bb4ac4222469be64291b6c3" }, "downloads": -1, "filename": "chevron-0.8.3.tar.gz", "has_sig": false, "md5_digest": "41cfa6a7ae68d4352e1dca86cc04bf79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7344, "upload_time": "2015-01-26T21:32:34", "url": "https://files.pythonhosted.org/packages/f5/36/714cf38afaa026ca8d3fc5e8650f3f704d78c5a1fdeb17930c22eb5e6d0f/chevron-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "e5ca001fc9165eb48bb0b72c4bdc3160", "sha256": "2c26d2aa09f61db2d58db65303e31f14f495f0d66a0456abd5990e267fe418fa" }, "downloads": -1, "filename": "chevron-0.8.4.tar.gz", "has_sig": false, "md5_digest": "e5ca001fc9165eb48bb0b72c4bdc3160", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7352, "upload_time": "2015-01-26T22:02:28", "url": "https://files.pythonhosted.org/packages/fe/2f/f153bde3ed90903a77b98944157e77569ca2478864cd2e761889c1d118dd/chevron-0.8.4.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "3866bd13fdbd3cc7d95fbdba2cc43e98", "sha256": "a563887fac4f104f7e2241ed902d21f50ff2453245e4758043453ad4d7032341" }, "downloads": -1, "filename": "chevron-0.9.0.tar.gz", "has_sig": false, "md5_digest": "3866bd13fdbd3cc7d95fbdba2cc43e98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7658, "upload_time": "2015-04-11T03:14:33", "url": "https://files.pythonhosted.org/packages/66/00/3649f47f2acb8d05ebe3d399a3f61b3d294404c3401ec0069aeea1d1426b/chevron-0.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0d5373c155486bf05668bb95ebbb2c28", "sha256": "95b0a055ef0ada5eb061d60be64a7f70670b53372ccd221d1b88adf1c41a9094" }, "downloads": -1, "filename": "chevron-0.13.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0d5373c155486bf05668bb95ebbb2c28", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11237, "upload_time": "2018-10-03T14:31:20", "url": "https://files.pythonhosted.org/packages/a3/1e/6ef58385f54c5bbf70b3b451930015aa2d30b3cd5ae324bba4da77c5b889/chevron-0.13.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "008fd615a646c35f3ba0697722ebc4c4", "sha256": "f95054a8b303268ebf3efd6bdfc8c1b428d3fc92327913b4e236d062ec61c989" }, "downloads": -1, "filename": "chevron-0.13.1.tar.gz", "has_sig": false, "md5_digest": "008fd615a646c35f3ba0697722ebc4c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9095, "upload_time": "2018-10-03T14:31:21", "url": "https://files.pythonhosted.org/packages/2a/01/efb4ef22ea9b6377392bd5d6af5acbd218100ee7379dbcd8a7322585710d/chevron-0.13.1.tar.gz" } ] }