{ "info": { "author": "Lynn Root", "author_email": "lynn@spotify.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "ramlfications: RAML reference implementation in Python\n======================================================\n\n.. image:: https://img.shields.io/travis/spotify/ramlfications.svg?style=flat-square\n :target: https://travis-ci.org/spotify/ramlfications\n :alt: CI status\n\n.. image:: https://img.shields.io/pypi/v/ramlfications.svg?style=flat-square\n :target: https://pypi.python.org/pypi/ramlfications/\n :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/status/ramlfications.svg?style=flat-square\n :target: https://pypi.python.org/pypi/ramlfications/\n :alt: Development Status\n\n.. image:: https://img.shields.io/pypi/l/ramlfications.svg?style=flat-square\n :target: https://github.com/spotify/ramlfications/blob/master/LICENSE\n :alt: License\n\n.. image:: https://codecov.io/github/spotify/ramlfications/coverage.svg?branch=master\n :target: https://codecov.io/github/spotify/ramlfications?branch=master\n :alt: Current coverage\n\n.. image:: https://img.shields.io/pypi/pyversions/ramlfications.svg?style=flat-square\n :target: https://pypi.python.org/pypi/ramlfications/\n :alt: Supported Python versions\n\n\n.. begin\n\nRequirements and Installation\n=============================\n\nUser Setup\n----------\n\nThe latest stable version can be found on PyPI_, and you can install via pip_::\n\n $ pip install ramlfications\n\n``ramlfications`` runs on Python 2.6, 2.7, and 3.3+, and PyPy. Both Linux and OS X are supported. Currently, only RAML 0.8 is supported, but there are plans_ to support 1.0.\n\nContinue onto `usage`_ to get started on using ``ramlfications``.\n\n\nDeveloper Setup\n---------------\n\nIf you'd like to contribute or develop upon ``ramlfications``, be sure to read `How to Contribute`_\nfirst.\n\nYou can see the progress of ``ramlfications`` on our public `project management`_ page.\n\nSystem requirements:\n^^^^^^^^^^^^^^^^^^^^\n\n- C Compiler (gcc/clang/etc.)\n- If on Linux - you'll need to install Python headers (e.g. ``apt-get install python-dev``)\n- Python 2.6, 2.7, 3.3+, or PyPy\n- virtualenv_\n\nHere's how to set your machine up::\n\n $ git clone git@github.com:spotify/ramlfications\n $ cd ramlfications\n $ virtualenv env\n $ source env/bin/activate\n (env) $ pip install -r dev-requirements.txt\n\n\nRun Tests\n^^^^^^^^^\n\nIf you'd like to run tests for all supported Python versions, you must have all Python versions\ninstalled on your system. I suggest pyenv_ to help with that.\n\nTo run all tests::\n\n (env) $ tox\n\nTo run a specific test setup (options include: ``py26``, ``py27``, ``py33``, ``py34``, ``pypy``,\n``flake8``, ``verbose``, ``manifest``, ``docs``, ``setup``, ``setupcov``)::\n\n (env) $ tox -e py26\n\nTo run tests without tox::\n\n (env) $ py.test\n (env) $ py.test --cov ramlfications --cov-report term-missing\n\n\nBuild Docs\n^^^^^^^^^^\n\nDocumentation is build with Sphinx_, written in rST, uses the `Read the Docs`_ theme with\na slightly customized CSS, and is hosted on `Read the Docs site`_.\n\nTo rebuild docs locally, within the parent ``ramlfications`` directory::\n\n (env) $ tox -e docs\n\nor::\n\n (env) $ sphinx-build -b docs/ docs/_build\n\nThen within ``ramlfications/docs/_build`` you can open the index.html page in your browser.\n\n\nStill have issues?\n^^^^^^^^^^^^^^^^^^\n\nFeel free to drop by ``#ramlfications`` on Freenode (`webchat`_) or ping via `Twitter`_.\n\"roguelynn\" is the maintainer, a.k.a `econchick`_ on GitHub, and based in San Fran.\n\n\n.. _pip: https://pip.pypa.io/en/latest/installing.html#install-pip\n.. _PyPI: https://pypi.python.org/project/ramlfications/\n.. _virtualenv: https://virtualenv.pypa.io/en/latest/\n.. _pyenv: https://github.com/yyuu/pyenv\n.. _Sphinx: http://sphinx-doc.org/\n.. _`Read the Docs`: https://github.com/snide/sphinx_rtd_theme\n.. _`Read the Docs site`: https://ramlfications.readthedocs.org\n.. _`usage`: http://ramlfications.readthedocs.org/en/latest/usage.html\n.. _`How to Contribute`: http://ramlfications.readthedocs.org/en/latest/contributing.html\n.. _`webchat`: http://webchat.freenode.net?channels=%23ramlfications&uio=ND10cnVlJjk9dHJ1ZQb4\n.. _`econchick`: https://github.com/econchick\n.. _`Twitter`: https://twitter.com/roguelynn\n.. _`project management`: https://waffle.io/spotify/ramlfications\n.. _plans: https://github.com/spotify/ramlfications/issues/54\n\nChangelog\n=========\n\n0.1.9 (2015-12-24)\n------------------\n\nHappy holidays!\n\n- Fix resource type inheritance (`Issue 23`_ & `Issue 47`_)\n- Preserve order of ``baseUriParameters`` and ``uriParameters`` in API root and resource nodes (`Issue 37`_)\n- Fix missing URI parameters if not defined/declared inline (`Issue 56`_)\n- Fix how arguments are passed into pytest in ``setup.py`` (`PR 55`_ - thank you `matiasb`_!)\n\n\n0.1.8 (2015-10-07)\n------------------\n\n- Fix incorrect/incomplete behavior optional properties of Resource Types (`Issue 44`_).\n- Fix ``protocols`` inheritance (`Issue 44`_).\n- Partial fix for `Issue 23`_ - incorrect resource type inheritance\n\n * When a resource type is defined with one method that is optional and is applied to a resource that does *not* have that method defined, the resource\u2019s method should not inherit from the optional method\n * When a resource inherits a resource type but explicitly defines named parameters, the named parameters in the resource should overwrite those that are inherited\n\n0.1.7 (2015-08-20)\n------------------\n\nAdded:\n\n- Support for parsing ``$ref`` s in included JSON schemas (`Issue 4`_). Thank you `benhamill`_, `nvillalva`_, and `jhl2343`_!\n- Collect all validation errors (rather than just erroring out on the first one) (`Issue 21`_). Thank you `cerivera`_!\n\n\n0.1.6 (2015-08-03)\n------------------\n\nAdded:\n\n- `waffle.io`_ page to documentation for project management overview\n\nFixed:\n\n- Parse errors when RAML file would have empty mappings (`Issue 30`_)\n- Switch ``yaml.Loader`` to ``yaml.SafeLoader`` (`Issue 26`_)\n- Update documentation to reflect rearrangement of errors (`Issue 27`_)\n- Remove ``default`` parameter from being required for ``baseURIParameters`` (`Issue 29`_)\n- Pin mock library for tox tests (`Issue 22`_)\n- Experimenting with speeding up pypy tests within tox on Travis\n\n0.1.5 (2015-06-05)\n------------------\n\nFixed:\n\n- Configuration parsing for validation/production. Thanks `vrajmohan`_!\n- Parsing of response bodies (fixes `Issue 12`_). Thanks `Igor`_!\n\n0.1.4 (2015-05-27)\n------------------\n\nAdded:\n\n- Support for recursive ``!includes`` in RAML files (0.1.3 would handle the error, now actually supports it. Thanks `Ben`_ for your `PR`_!).\n\n0.1.3 (2015-05-14)\n------------------\n\nAdded:\n\n- New ``#ramlfications`` channel on `freenode`_ (web chat link)! Come chat, I'm lonely.\n- Documentation for configuration and the ``update`` command.\n\nFixed:\n\n- Handle recursive/cyclical ``!includes`` in RAML files for now (`PR`_)\n- Encoding issues from upgrading to tox 2.0\n- ``tests/test_utils.py`` would create ``ramlfications/data/supported_mime_types.json``; now mocked out.\n\n0.1.2 (2015-04-21)\n------------------\n\nFixed:\n\n- pypy 2.5.x would fail a parser test because order of list was not expected\n\n0.1.1 (2015-04-21)\n------------------\n\nNew:\n\n- Added ability to parse IANA-supported MIME media types\n- Added ``update`` command for user to update IANA-supported MIME types if/when needed\n\n0.1.0a1 (2015-04-18)\n--------------------\nInitial alpha release of ``ramlfications``\\!\n\n\n.. _`PR`: https://github.com/spotify/ramlfications/pull/8\n.. _`freenode`: http://webchat.freenode.net?channels=%23ramlfications&uio=ND10cnVlJjk9dHJ1ZQb4\n.. _`Ben`: https://github.com/benhamill\n.. _`vrajmohan`: https://github.com/spotify/ramlfications/pull/16\n.. _`Issue 12`: https://github.com/spotify/ramlfications/issues/12\n.. _`Igor`: https://github.com/spotify/ramlfications/pull/13\n.. _`Issue 30`: https://github.com/spotify/ramlfications/issues/30\n.. _`Issue 26`: https://github.com/spotify/ramlfications/issues/26\n.. _`Issue 27`: https://github.com/spotify/ramlfications/issues/27\n.. _`Issue 29`: https://github.com/spotify/ramlfications/issues/29\n.. _`Issue 22`: https://github.com/spotify/ramlfications/issues/22\n.. _`waffle.io`: https://waffle.io/spotify/ramlfications\n.. _`Issue 4`: https://github.com/spotify/ramlfications/issues/4\n.. _`benhamill`: https://github.com/benhamill\n.. _`nvillalva`: https://github.com/nvillalva\n.. _`jhl2343`: https://github.com/jhl2343\n.. _`Issue 21`: https://github.com/spotify/ramlfications/issues/21\n.. _`cerivera`: https://github.com/cerivera\n.. _`Issue 44`: https://github.com/spotify/ramlfications/issues/44\n.. _`Issue 23`: https://github.com/spotify/ramlfications/issues/23\n.. _`matiasb`: https://github.com/matiasb\n.. _`PR 55`: https://github.com/spotify/ramlfications/pull/55\n.. _`Issue 47`: https://github.com/spotify/ramlfications/issues/47\n.. _`Issue 37`: https://github.com/spotify/ramlfications/issues/37\n.. _`Issue 56`: https://github.com/spotify/ramlfications/issues/56", "description_content_type": null, "docs_url": null, "download_url": null, "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://ramlfications.readthedocs.org", "keywords": "raml,rest", "license": "Apache 2.0", "maintainer": null, "maintainer_email": null, "name": "ramlfications", "package_url": "https://pypi.org/project/ramlfications/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/ramlfications/", "project_urls": { "Homepage": "https://ramlfications.readthedocs.org" }, "release_url": "https://pypi.org/project/ramlfications/0.1.9/", "requires_dist": null, "requires_python": null, "summary": "A Python RAML parser", "version": "0.1.9" }, "last_serial": 1877139, "releases": { "0.1.0a1": [ { "comment_text": "", "digests": { "md5": "fc24fa9da58a6945d128450754f16c32", "sha256": "750be982f218d99d62435ab2faac668129359cf5f19cdace4b398060545268e4" }, "downloads": -1, "filename": "ramlfications-0.1.0a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fc24fa9da58a6945d128450754f16c32", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 35314, "upload_time": "2015-04-18T08:21:28", "url": "https://files.pythonhosted.org/packages/1f/48/fa98847982db8962d137b9d4ec2c960d96650d824cb224f3445f97e67db7/ramlfications-0.1.0a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e5d37805a3e572aa076e79fb5f86da61", "sha256": "acd2f99eb69cce92fbd61735d2a5a7b3a824cd7302616637533842e7b2a1f53b" }, "downloads": -1, "filename": "ramlfications-0.1.0a1.tar.gz", "has_sig": false, "md5_digest": "e5d37805a3e572aa076e79fb5f86da61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 523988, "upload_time": "2015-04-18T08:24:00", "url": "https://files.pythonhosted.org/packages/3d/0e/a45dac5198b287c21aa637cac0fe39b056c57c0ee948275c1e7dbcaffa2e/ramlfications-0.1.0a1.tar.gz" } ], "0.1.0b1": [], "0.1.0b2": [ { "comment_text": "", "digests": { "md5": "95add36e7ae618cb35ded8dfa87f8e31", "sha256": "e136457c5ed8953ed3fe03f34fea9905cdb5aca54509d7900c94f1bf69fb2ef4" }, "downloads": -1, "filename": "ramlfications-0.1.0b2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "95add36e7ae618cb35ded8dfa87f8e31", "packagetype": "bdist_wheel", "python_version": "any", "requires_python": null, "size": 38407, "upload_time": "2015-04-21T14:25:25", "url": "https://files.pythonhosted.org/packages/2c/30/18e47628bf8399352b8830d44f57f1e055aaf6759e235b847cd0a55f661f/ramlfications-0.1.0b2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c69895660c3997121f18ea9974ab04cd", "sha256": "0560858d370de3b7b8bc80915deb2b30cad252025171a930782bb32948ff84f1" }, "downloads": -1, "filename": "ramlfications-0.1.0b2.tar.gz", "has_sig": false, "md5_digest": "c69895660c3997121f18ea9974ab04cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 861214, "upload_time": "2015-04-21T14:25:14", "url": "https://files.pythonhosted.org/packages/88/08/d27c3357284b89575558f0b0001b1e1173875aad500e20ce573f4c5972a3/ramlfications-0.1.0b2.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "37a08926c868704baaa12f697afcdc20", "sha256": "6e09ef5083ec0a9ce0349d0c62db2953f00371f2ad2410a562b3bebac7290dd6" }, "downloads": -1, "filename": "ramlfications-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "37a08926c868704baaa12f697afcdc20", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 38375, "upload_time": "2015-04-21T14:42:02", "url": "https://files.pythonhosted.org/packages/4b/93/812d9d3c701bc5f2d71414241b0a34a863d5b25d5dda3fe852536ecff4c8/ramlfications-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b8cf591db902e1724f9eb00556d07808", "sha256": "4f359f9736386e78660c3b9dc8b867ec754f5afb690de31f4eaf94e576c89c39" }, "downloads": -1, "filename": "ramlfications-0.1.1.tar.gz", "has_sig": false, "md5_digest": "b8cf591db902e1724f9eb00556d07808", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 861165, "upload_time": "2015-04-21T14:41:12", "url": "https://files.pythonhosted.org/packages/c3/e1/e1dedf3572993ca573a5ce6c0816c0891e66cd4cc8c0f7f8834838b14104/ramlfications-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "edf5f2848cf696268fcec8df560f7e75", "sha256": "616783ec756ea5c1784a3134efed5dc17ecfc79dfd9ca108ab4467ef1c1a6f99" }, "downloads": -1, "filename": "ramlfications-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "edf5f2848cf696268fcec8df560f7e75", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 38783, "upload_time": "2015-04-22T08:25:03", "url": "https://files.pythonhosted.org/packages/0d/63/937bcfb6598bc9dc15affee9b98fa103d3a49ef41f23c62cf037d866959a/ramlfications-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "accd7262bab5178b180400c00fc1bbf6", "sha256": "f94d8ddbf69b31e31140b7c46df81feece885c87a5d965476b5c76ebd7abfd5a" }, "downloads": -1, "filename": "ramlfications-0.1.2.tar.gz", "has_sig": false, "md5_digest": "accd7262bab5178b180400c00fc1bbf6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 862058, "upload_time": "2015-04-22T08:24:42", "url": "https://files.pythonhosted.org/packages/c5/a5/6614a69b891272323c267e380d77650d2687adc0aab2a79abfe95d8155d6/ramlfications-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "7f068d012497640181093feafc6bf8b4", "sha256": "ac01a3872e9cddf2773f15c2a8a3942a1445fc7123fc7062d664429284a54c43" }, "downloads": -1, "filename": "ramlfications.0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7f068d012497640181093feafc6bf8b4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 40067, "upload_time": "2015-05-15T20:49:50", "url": "https://files.pythonhosted.org/packages/2e/ff/41f68c9bb7670fe07bbe8c211d016bc0d483e86be22b18608f3d270db879/ramlfications.0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "59896fba8511e5ffb589144ef8fb1fe4", "sha256": "d7dc93e17f550b0ebe8872672e78c051ab8cad32c27a84e62254c941f14dcfd7" }, "downloads": -1, "filename": "ramlfications.0.1.3.tar.gz", "has_sig": false, "md5_digest": "59896fba8511e5ffb589144ef8fb1fe4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1068274, "upload_time": "2015-05-15T20:49:33", "url": "https://files.pythonhosted.org/packages/9f/7b/a573f1e88289b8a5131bd83784908cf9d29f6cb53d6d2056290f200fdb1d/ramlfications.0.1.3.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "82561d7a6104df7bd04bbf339ba6ed3d", "sha256": "9b349737e81e335b5502d6c830dc2705275ebddaf1823a91a8e7aca48a782eb2" }, "downloads": -1, "filename": "ramlfications-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "82561d7a6104df7bd04bbf339ba6ed3d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 40656, "upload_time": "2015-06-05T16:55:34", "url": "https://files.pythonhosted.org/packages/c3/9b/41b50634f52482acbb3099defc4d365aff45f504c4e5e652ad10cadc5c21/ramlfications-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "589b618dd539abf1a1dcf9ca7c2fe7b2", "sha256": "dbd8605a3b28adbda2e9d85bb6769d05edbc97925a3e22bcf6220a928930a72e" }, "downloads": -1, "filename": "ramlfications-0.1.5.tar.gz", "has_sig": false, "md5_digest": "589b618dd539abf1a1dcf9ca7c2fe7b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1070635, "upload_time": "2015-06-05T16:55:16", "url": "https://files.pythonhosted.org/packages/d1/ae/a4205bdd96e65a4ecca040d0a3a4fb234c6adcb780a4f531409140fec656/ramlfications-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "2e5c351a79b00ca48075d33a3512e62c", "sha256": "5817f20a81a4ecdd831af636d4f32e9cd9aa777771e566e28a88f8141785974c" }, "downloads": -1, "filename": "ramlfications-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2e5c351a79b00ca48075d33a3512e62c", "packagetype": "bdist_wheel", "python_version": "any", "requires_python": null, "size": 42211, "upload_time": "2015-08-03T22:48:49", "url": "https://files.pythonhosted.org/packages/c6/25/5e691ef68d22855b9eee17b89d861d2aefe3b6550c7bb9da93a04289646b/ramlfications-0.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fc9de378227229ef9563e8fd24991406", "sha256": "2ae6244475d2b60b9bddf5d296e7777db73886107ea224975b47def8fc3bad9b" }, "downloads": -1, "filename": "ramlfications-0.1.6.tar.gz", "has_sig": false, "md5_digest": "fc9de378227229ef9563e8fd24991406", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1076300, "upload_time": "2015-08-03T22:49:13", "url": "https://files.pythonhosted.org/packages/9e/51/6c375d8b56115ef76037812882a2adc95e44a2dfb59abc290cd568ebfaa5/ramlfications-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "fbf21402f204fcf6bb709d10ecdb39f7", "sha256": "91f3a0e713408b1f0c66b3f33b30f875e8f1e39e3792080e76988530444c4764" }, "downloads": -1, "filename": "ramlfications-0.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fbf21402f204fcf6bb709d10ecdb39f7", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 43784, "upload_time": "2015-08-20T21:34:38", "url": "https://files.pythonhosted.org/packages/84/da/a9ebd7ae641c76e73c4a32385862361b97944e7f350d96812ee3db5af4e3/ramlfications-0.1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "259098b80aab88e16004edab1c55f2fc", "sha256": "539d863a211a762fa808c4d4e053c90bfa9901110d424c931e8d1afafed6b930" }, "downloads": -1, "filename": "ramlfications-0.1.7.tar.gz", "has_sig": false, "md5_digest": "259098b80aab88e16004edab1c55f2fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1084246, "upload_time": "2015-08-20T21:34:22", "url": "https://files.pythonhosted.org/packages/38/4c/7d489f72d5d8879f12ea58f482556398418e30fdd31f4d6b09daea037576/ramlfications-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "3e7a19833d1afb801e7578921a940e47", "sha256": "dbfe7ec1beef84938dda38bb128f42a17f685e9e5b311343f4b9c39056438baf" }, "downloads": -1, "filename": "ramlfications-0.1.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3e7a19833d1afb801e7578921a940e47", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 45640, "upload_time": "2015-10-07T20:50:03", "url": "https://files.pythonhosted.org/packages/4c/03/4e6ed4da65403150ae9616ce1153d2287fc11c91b78bd775faf897fac40c/ramlfications-0.1.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b0ba73502f54f82a08aaccdc83091065", "sha256": "bfceecbc0f05eb315a323191aa602af24046c124f2dab020c9c8335e1c95b22d" }, "downloads": -1, "filename": "ramlfications-0.1.8.tar.gz", "has_sig": false, "md5_digest": "b0ba73502f54f82a08aaccdc83091065", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1090114, "upload_time": "2015-10-07T20:49:48", "url": "https://files.pythonhosted.org/packages/b7/fb/5d874014a2b1da9c6c1730830a8d2ebd53fbe07cd852626ab704b9dab3a9/ramlfications-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "b859e8b844e6bf06558eb01d1dedcd69", "sha256": "c29f992dc748a3df28b8b54282f49a8ff9b1f85184871c1c99c222b0521afb7a" }, "downloads": -1, "filename": "ramlfications-0.1.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b859e8b844e6bf06558eb01d1dedcd69", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 49188, "upload_time": "2015-12-25T03:39:32", "url": "https://files.pythonhosted.org/packages/92/a6/2c55224098adb71ffcaf02fbf9309043baf9f0594a67b6fa609db8f59fe4/ramlfications-0.1.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e6d5ff4057de04d9f9efdcb373be2cb4", "sha256": "7bb89c11b13bc6b4099ee7fa07c5285a54b64a5e9c71eb6ca99660358fb27677" }, "downloads": -1, "filename": "ramlfications-0.1.9.tar.gz", "has_sig": false, "md5_digest": "e6d5ff4057de04d9f9efdcb373be2cb4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1094577, "upload_time": "2015-12-25T03:39:46", "url": "https://files.pythonhosted.org/packages/3c/ed/5554bef6fd6008e9a34f717f2f2ee14dca598666687fb9c73d37a4aa9d36/ramlfications-0.1.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b859e8b844e6bf06558eb01d1dedcd69", "sha256": "c29f992dc748a3df28b8b54282f49a8ff9b1f85184871c1c99c222b0521afb7a" }, "downloads": -1, "filename": "ramlfications-0.1.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b859e8b844e6bf06558eb01d1dedcd69", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 49188, "upload_time": "2015-12-25T03:39:32", "url": "https://files.pythonhosted.org/packages/92/a6/2c55224098adb71ffcaf02fbf9309043baf9f0594a67b6fa609db8f59fe4/ramlfications-0.1.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e6d5ff4057de04d9f9efdcb373be2cb4", "sha256": "7bb89c11b13bc6b4099ee7fa07c5285a54b64a5e9c71eb6ca99660358fb27677" }, "downloads": -1, "filename": "ramlfications-0.1.9.tar.gz", "has_sig": false, "md5_digest": "e6d5ff4057de04d9f9efdcb373be2cb4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1094577, "upload_time": "2015-12-25T03:39:46", "url": "https://files.pythonhosted.org/packages/3c/ed/5554bef6fd6008e9a34f717f2f2ee14dca598666687fb9c73d37a4aa9d36/ramlfications-0.1.9.tar.gz" } ] }