{ "info": { "author": "Kang Hyojun", "author_email": "iam.kanghyojun@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", "Topic :: Software Development :: Code Generators", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Object Brokering" ], "description": "nirum-python\n============\n\n.. image:: https://badge.fury.io/py/nirum.svg\n :target: https://pypi.org/project/nirum/\n :alt: Latest PyPI version\n\n.. image:: https://travis-ci.org/spoqa/nirum-python.svg\n :target: https://travis-ci.org/spoqa/nirum-python\n :alt: Build status\n\nThe Nirum_ runtime library for Python. Distributed under MIT license.\n\n(You probably don't need to directly use this package.)\n\n.. _Nirum: https://github.com/spoqa/nirum\n\n\nChangelog\n=========\n\nVersion 0.6.3\n-------------\n\nReleased on April 5, 2018.\n\n- Added missing equality functions (i.e., ``==``, ``!=`` operators, & ``hash()``\n function) to ``nirum.datastructures.Map`` and ``nirum.datastructures.List``.\n [`#110`_]\n\n\nVersion 0.6.2\n-------------\n\nReleased on February 11, 2018.\n\n- Added ``is_optional_type()`` to ensure optional type includes ``None`` type.\n- ``nirum.datastructures.List`` became to show its contents when it's passed\n to ``repr()``. [`#103`__, `#108`__ by Chang-soo Han]\n\n__ https://github.com/spoqa/nirum-python/issues/103\n__ https://github.com/spoqa/nirum-python/pull/108\n\n\nVersion 0.6.1\n-------------\n\nReleased on December 9, 2017.\n\n- Made ``nirum.datastructures.List`` to copy the given value so that\n it doesn't refer given value's state and is immutable.\n\n\nVersion 0.6.0\n-------------\n\nReleased on July 11, 2017.\n\n- Deprecated ``nirum.rpc`` module.\n\n This module and all it has provided are deprecated or obsolete. The most\n of them are now distributed as separated packages, or replaced by a newer\n concept. See also the below for details.\n\n It will be completely obsolete at version 0.7.0.\n\n- Client transport layer. [`#79`_]\n\n - Added ``nirum.transport.Transport`` interface.\n\n The recent builds of Nirum compiler became to generate ``*_Client`` classes\n taking a ``nirum.transport.Transport`` instance through their constructor.\n\n Use nirum-python-http_ (PyPI handle: ``nirum-http``) instead for HTTP\n client of services e.g.:\n\n .. code-block:: python\n\n from yourservice import YourService_Client\n from nirum_http import HttpTransport\n\n transport = HttpTransport('https://service-host/')\n client = YourService_Client(transport)\n\n - Deprecated ``nirum.rpc.Client`` type. The recent builds of Nirum compiler\n became to generate ``*_Client`` classes for services without subclassing\n ``nirum.rpc.Client``.\n\n The deprecated ``nirum.rpc.Client`` will be completely obsolete at\n version 0.7.0.\n\n- ``nirum.rpc.Service`` was moved to ``nirum.service.Service``.\n\n The recent builds of Nirum compiler became to generate service classes\n that inherit ``nirum.service.Service`` instead of ``nirum.rpc.Service``.\n\n The deprecated ``nirum.rpc.Service`` will be completely obsolete at\n version 0.7.0.\n\n- Deprecated ``nirum.rpc.WsgiApp``. This will be completely obsolete at\n version 0.7.0.\n\n Use nirum-python-wsgi_ (PyPI handle: ``nirum-wsgi``) instead.\n\n- ``nirum-server`` command is obsolete. The same command is now provided\n by nirum-python-wsgi_ (PyPI handle: ``nirum-wsgi``), a separated package.\n\n- ``nirum.func.import_string()`` function and ``nirum.func.IMPORT_RE`` constant\n are obsolete.\n\n- Fixed ``NameError`` raised from forward references. [`compiler #138`_]\n\n.. _#79: https://github.com/spoqa/nirum-python/issues/79\n.. _compiler #138: https://github.com/spoqa/nirum/issues/138\n.. _nirum-python-http: https://github.com/spoqa/nirum-python-http\n.. _nirum-python-wsgi: https://github.com/spoqa/nirum-python-wsgi\n\n\nVersion 0.5.6\n-------------\n\nReleased on April 5, 2018.\n\n- Fixed a bug that ``hash()`` on ``nirum.datastructures.List`` had raised\n ``TypeError``.\n\n\nVersion 0.5.5\n-------------\n\nReleased on April 5, 2018.\n\n- Added missing equality functions (i.e., ``==``, ``!=`` operators, & ``hash()``\n function) to ``nirum.datastructures.Map`` and ``nirum.datastructures.List``.\n [`#110`_]\n\n.. _#110: https://github.com/spoqa/nirum-python/issues/110\n\n\nVersion 0.5.4\n-------------\n\nReleased on December 9, 2017.\n\n- Made ``nirum.datastructures.List`` to copy the given value so that\n it doesn't refer given value's state and is immutable.\n\n\nVersion 0.5.3\n-------------\n\nReleased on July 6, 2017.\n\n- Fixed a serialization bug that other set-like (i.e. ``collections.Set``) types\n than Python built-in ``set`` hadn't been reduced to simpler forms so that they\n can be encoded to JSON.\n- Fixed a serialization bug that other list-like (i.e. ``collections.Sequence``)\n types than Python built-in ``list`` hadn't been reduced to simpler forms so\n that they can be encoded to JSON.\n\n\nVersion 0.5.2\n-------------\n\nReleased on June 23, 2017.\n\n- ``url`` of ``nirum.rpc.Client`` and\n ``method`` of ``nirum.rpc.Client.make_request``\n now can be both ``unicode`` and ``str`` on Python 2.7. [`#87`_]\n- ``nirum.rpc.Client`` had been an old-style class on Python 2, but now\n it became a new-style class also on Python 2. (As Python 3 has only new-style\n class, there's no change on Python 3.)\n\n.. _#87: https://github.com/spoqa/nirum-python/pull/87\n\n\nVersion 0.5.1\n-------------\n\nReleased on June 22, 2017.\n\n- Added Python 3.6 support.\n- Fixed a bug that service client methods hadn't raised the proper error\n type but ``nirum.exc.UnexpectedNirumResponseError`` instead. [`#71`_]\n- Wheel distributions (``nirum-*.whl``) are now universal between Python 2\n and 3. [`#78`_]\n- ``nirum.rpc.Service`` had been an old-style class on Python 2, but now\n it became a new-style class also on Python 2. (As Python 3 has only new-style\n class, there's no change on Python 3.) [`#83`_]\n- ``nirum.rpc.Client`` and its subtype became to raise ``TypeError`` with\n a better error message when its ``make_request()`` method is overridden and\n it returns a wrong artity of tuple. [`#80`_]\n- ``nirum.rpc.WsgiApp`` and its subtype became to raise ``TypeError`` with\n a better error message when its ``make_response()`` method is overridden and\n it returns a wrong artity of tuple. [`#80`_]\n- Fixed a bug that ``Client.ping()`` method had always raised ``TypeError``.\n [`#80`_]\n- Corrected a typo ``Accepts`` on request headers ``Client`` makes to\n ``Accept``.\n\n.. _#78: https://github.com/spoqa/nirum-python/pull/78\n.. _#83: https://github.com/spoqa/nirum-python/issues/83\n.. _#80: https://github.com/spoqa/nirum-python/pull/80\n\n\nVersion 0.5.0\n-------------\n\nReleased on June 1, 2017.\n\n- Service methods became able to specify its error type. [`#71`_]\n- Added ``nirum-server`` command to run simply Nirum service.\n\n.. _#71: https://github.com/spoqa/nirum-python/issues/71\n\n\nVersion 0.4.3\n-------------\n\nReleased on April 5, 2018.\n\n- Added missing equality functions (i.e., ``==``, ``!=`` operators, & ``hash()``\n function) to ``nirum.datastructures.Map`` and ``nirum.datastructures.List``.\n [`#110`_]\n\n\nVersion 0.4.2\n-------------\n\nReleased on July 6, 2017.\n\n- Fixed a serialization bug that other set-like (i.e. ``collections.Set``) types\n than Python built-in ``set`` hadn't been reduced to simpler forms so that they\n can be encoded to JSON.\n- Fixed a serialization bug that other list-like (i.e. ``collections.Sequence``)\n types than Python built-in ``list`` hadn't been reduced to simpler forms so\n that they can be encoded to JSON.\n\n\nVersion 0.4.1\n-------------\n\nReleased on May 2, 2017.\n\n- Compare type with its abstract type in ``nirum.validate.validate_type``.\n\n\nVersion 0.4.0\n-------------\n\nReleased on March 20, 2017.\n\n- Encoding of map types was changed according to the `Nirum serialization\n specification`__. [`#66`_]\n- Added ``nirum.datastructures`` module and ``nirum.datastructures.Map``\n which is an immutable dictionary. [`#66`_]\n- Added ``nirum.datastructures.List`` which is an immutable list.\n [`#49`_]\n- Aliased ``nirum.datastructures.Map`` as ``map_type``, and\n ``nirum.datastructures.List`` as ``list_type`` to avoid name\n conflict with user-defined types.\n\n__ https://github.com/spoqa/nirum/blob/f1629787f45fef17eeab8b4f030c34580e0446b8/docs/serialization.md\n.. _#66: https://github.com/spoqa/nirum-python/pull/66\n.. _#49: https://github.com/spoqa/nirum-python/issues/49\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/spoqa/nirum-python", "keywords": "", "license": "MIT license", "maintainer": "", "maintainer_email": "", "name": "nirum", "package_url": "https://pypi.org/project/nirum/", "platform": "", "project_url": "https://pypi.org/project/nirum/", "project_urls": { "Homepage": "https://github.com/spoqa/nirum-python" }, "release_url": "https://pypi.org/project/nirum/0.6.3/", "requires_dist": null, "requires_python": "", "summary": "The Nirum runtime library for Python", "version": "0.6.3" }, "last_serial": 3737038, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "baaafa21353ddf39ddbb2d39bf15db47", "sha256": "b95520ab6fb06801896c16823f34bddbfcd81d635209fde286143760638a5ca7" }, "downloads": -1, "filename": "nirum-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "baaafa21353ddf39ddbb2d39bf15db47", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 8743, "upload_time": "2016-08-16T13:27:46", "url": "https://files.pythonhosted.org/packages/50/4b/ffc606fa60e4e1ea79505af07fab3add3d88d23584ef73933c7a61c74866/nirum-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "081b4739582945682efee1c9ec528ad7", "sha256": "e21f973d47de3ed6104be3fb372085b7e86365415ecb073e3cafb0f9789401b7" }, "downloads": -1, "filename": "nirum-0.0.1.tar.gz", "has_sig": false, "md5_digest": "081b4739582945682efee1c9ec528ad7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6146, "upload_time": "2016-08-16T13:27:43", "url": "https://files.pythonhosted.org/packages/36/a5/cc0746c79d56d03de84fec3950da838f2b2dad971562ce2ec8dcf06c1b24/nirum-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "62df5e0b6527cc34bfc4ba01aa6a6c04", "sha256": "3bb08adb77ebb6036bdaecb98e2fa636190d2812968b07e01542172619024df3" }, "downloads": -1, "filename": "nirum-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "62df5e0b6527cc34bfc4ba01aa6a6c04", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 10611, "upload_time": "2016-08-19T00:24:51", "url": "https://files.pythonhosted.org/packages/6d/4c/c613aa2a21067c11c95f2d43b97336b49648514af96e19f358a918d2927b/nirum-0.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e6a7c1f9a87806a6d70dd265b5134f94", "sha256": "531b186d2d9f0a04d71313832389e87f60eebeaea7a8618787f16f6b520fb0d9" }, "downloads": -1, "filename": "nirum-0.0.2.tar.gz", "has_sig": false, "md5_digest": "e6a7c1f9a87806a6d70dd265b5134f94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7456, "upload_time": "2016-08-19T00:24:46", "url": "https://files.pythonhosted.org/packages/56/47/8235cca64e8c8ee615bd8e96e2981d8b540dabd14e9f69a6f455f999905e/nirum-0.0.2.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "89f63045b8ed47d5c2c1203bb385f24b", "sha256": "0fa47b7b0dc2c4e0b8b26a0d8c67b068fafe65847ce75803ce6aa692088adcd6" }, "downloads": -1, "filename": "nirum-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "89f63045b8ed47d5c2c1203bb385f24b", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 10713, "upload_time": "2016-09-07T06:13:42", "url": "https://files.pythonhosted.org/packages/d9/9d/a3c12b3a6bcfe37e9d616d6f966145a0710c679f8677af6fa249fd2c4757/nirum-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8eddbc500a62cbe494b50173ad713b43", "sha256": "dfbc4926e0b30a01056db46bf4a266a37aca850356e02241c27dfc15d2c52a53" }, "downloads": -1, "filename": "nirum-0.1.0.tar.gz", "has_sig": false, "md5_digest": "8eddbc500a62cbe494b50173ad713b43", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7603, "upload_time": "2016-09-07T06:13:39", "url": "https://files.pythonhosted.org/packages/39/0f/512c982a1e19756d1d2ff9e1039fb5d2c9480fe8a508f496c39389b5cbba/nirum-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "04c465c150010394c8b13b474d1e725c", "sha256": "fed8741f988618e5aea2ad55d7e6dfc8515df2882748c9b3e30912b517786f70" }, "downloads": -1, "filename": "nirum-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "04c465c150010394c8b13b474d1e725c", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 10733, "upload_time": "2016-09-12T06:31:10", "url": "https://files.pythonhosted.org/packages/23/17/86449d2bb071aa86554085a768fde47a6681151f6ec7b491314fb6d70112/nirum-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f8ea7b250eeb7d1626663ccbac81e4d0", "sha256": "fee5c341f53984b805a5202311f8c67e5d232503a8d307ddaf2f7ffd6db7e5a1" }, "downloads": -1, "filename": "nirum-0.1.1.tar.gz", "has_sig": false, "md5_digest": "f8ea7b250eeb7d1626663ccbac81e4d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7629, "upload_time": "2016-09-12T06:31:07", "url": "https://files.pythonhosted.org/packages/48/ae/eab4604da5fc8be6f1a7ead79fa1c9b65311cc147074bcedda44838a696b/nirum-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "bc61fc8656a7a406e4741c8c9c85c4b3", "sha256": "230c0bbb31d441ac267725060f391ab92809d6ada7d0f013cc31a0aedce0700c" }, "downloads": -1, "filename": "nirum-0.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "bc61fc8656a7a406e4741c8c9c85c4b3", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 10720, "upload_time": "2016-09-16T08:07:39", "url": "https://files.pythonhosted.org/packages/6c/57/f7e9489ff21a2517e48bc3fc0aff5902eeb596955173bbc95c6f98188c11/nirum-0.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7d4fde15cf9db0bf8fef2420601b5021", "sha256": "936d3e66b25489fdd7e628b729388858908d8c774243756779b2e9361e57a279" }, "downloads": -1, "filename": "nirum-0.1.2.tar.gz", "has_sig": false, "md5_digest": "7d4fde15cf9db0bf8fef2420601b5021", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7633, "upload_time": "2016-09-16T08:07:36", "url": "https://files.pythonhosted.org/packages/05/6d/0c9c6ad155896b9a5d84dee3ee123599263c3363def78808e434286c3137/nirum-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "7a3a67d93e0bdbccbd4b50a37949a141", "sha256": "396b3ab2def5c9f82099172c33793bb0a1d4df9a85dc1ed68073b53fe793da33" }, "downloads": -1, "filename": "nirum-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "7a3a67d93e0bdbccbd4b50a37949a141", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 10814, "upload_time": "2016-09-18T08:54:24", "url": "https://files.pythonhosted.org/packages/0a/f1/d937222a86178dbdb111d36b98e4dfa8b8a8567ab42d72f8eacf806844e8/nirum-0.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4bd5a34248a2c12898b103fa3d21df15", "sha256": "92a045b532348080ab3a5a61fc6c1eaf778f968680a8b292f874989d828f07a6" }, "downloads": -1, "filename": "nirum-0.1.3.tar.gz", "has_sig": false, "md5_digest": "4bd5a34248a2c12898b103fa3d21df15", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7717, "upload_time": "2016-09-18T08:54:21", "url": "https://files.pythonhosted.org/packages/b1/1e/0ca404f3840bc4b261f9ebaa98124c6f2efbbd3c5850348531eb8c512e06/nirum-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "26809bd751dc7fc9c8718ca1da0e26cb", "sha256": "d80da42a51e603519bf71fae36c908e9990362b99a1984001dadd9c305040c36" }, "downloads": -1, "filename": "nirum-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "26809bd751dc7fc9c8718ca1da0e26cb", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 10832, "upload_time": "2016-09-19T00:43:55", "url": "https://files.pythonhosted.org/packages/40/03/fad1cd480e6da3ce2bb2bbc27edd0b5b3e2ec9d811550dcb1f38e4614753/nirum-0.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8d7e115a51a2323261d8ad639f05e2c5", "sha256": "f871ea7bc934bc77e7e50d56add9d0567042d97dda500bca788caee004a23ee9" }, "downloads": -1, "filename": "nirum-0.1.4.tar.gz", "has_sig": false, "md5_digest": "8d7e115a51a2323261d8ad639f05e2c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7731, "upload_time": "2016-09-19T00:43:52", "url": "https://files.pythonhosted.org/packages/2e/48/1f375d641908f1ff554e26953ee1a63f71a4b97b93ea5d805f581af380f4/nirum-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "82a98690d9b42002144db8978029d5ab", "sha256": "a902e46e8d3b5845ace0c5d5c4f4437bb4e599a1c9607aff90091d8d9c57312f" }, "downloads": -1, "filename": "nirum-0.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "82a98690d9b42002144db8978029d5ab", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 10959, "upload_time": "2016-09-22T06:16:47", "url": "https://files.pythonhosted.org/packages/08/aa/6006350f418e445463ed0e7c5e73a3f6eaf8dbbb939fa3a7b83529d7a008/nirum-0.1.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "40caeaffa6aab86016d8547573151df2", "sha256": "1c238007101c5db3448a627a506bbddbb336d012d8fe6cb2c4f495dabf29659f" }, "downloads": -1, "filename": "nirum-0.1.5.tar.gz", "has_sig": false, "md5_digest": "40caeaffa6aab86016d8547573151df2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7833, "upload_time": "2016-09-22T06:16:44", "url": "https://files.pythonhosted.org/packages/bb/f5/339766b3988ae5cc6b10ec22171602aeb7eb488f1e46c2169ff2bedb632b/nirum-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "b69f65761c9863334b0982e95cd16a5f", "sha256": "0fa9f9f40448bf18e7dcb653279641d74b48e82292470400bce025ef2631c554" }, "downloads": -1, "filename": "nirum-0.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "b69f65761c9863334b0982e95cd16a5f", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11214, "upload_time": "2016-09-25T16:13:59", "url": "https://files.pythonhosted.org/packages/12/80/4c28f38fbe49082c50d4e9f2b2eb3608e443d8526b37ad6dfadb2caa05b0/nirum-0.1.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b805041ab85ee98c647d5e136314750c", "sha256": "df3b400b67e63457facd5ebf077fdae40efc4d552e465bf7697c8357d4ee766b" }, "downloads": -1, "filename": "nirum-0.1.6.tar.gz", "has_sig": false, "md5_digest": "b805041ab85ee98c647d5e136314750c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7983, "upload_time": "2016-09-25T16:13:56", "url": "https://files.pythonhosted.org/packages/78/50/473f56c0ab705b10c05346172ff077ccfdee6a657fb3b32e98c3b85a655e/nirum-0.1.6.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "43d15efccf75ff9c93fa681edf53bfb1", "sha256": "9f193d9638e87b0b3d567495950b089c9b5e6da33362d9bd74328e823882dcf7" }, "downloads": -1, "filename": "nirum-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "43d15efccf75ff9c93fa681edf53bfb1", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11217, "upload_time": "2016-09-26T07:29:43", "url": "https://files.pythonhosted.org/packages/d6/ed/0dc02a5cf112f34e06bc515bfe02855128da46b41f6787e3987779926194/nirum-0.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f47b7dc7e8dcb028fe54c6b1bb43fff6", "sha256": "6ad742da1cfec5b7c3fd3724dcca8fa9bce5763247ae26b95860e848d45e6e16" }, "downloads": -1, "filename": "nirum-0.2.0.tar.gz", "has_sig": false, "md5_digest": "f47b7dc7e8dcb028fe54c6b1bb43fff6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7973, "upload_time": "2016-09-26T07:29:40", "url": "https://files.pythonhosted.org/packages/aa/9a/870c3de524ab2c6f891af4ca2dd5c15dfc0e76bc799b9d994f8efd8f1b0a/nirum-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "42800096bd3e798a2c0e6f1755725545", "sha256": "060eb838072d42644527f812fdac596ad3fe1a053754244e29593a0e54853313" }, "downloads": -1, "filename": "nirum-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "42800096bd3e798a2c0e6f1755725545", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11441, "upload_time": "2016-11-23T11:42:23", "url": "https://files.pythonhosted.org/packages/33/9b/4cb7025d40b2a1a028fb56db0276b50e249adb6f8d13ddd7ac01543e32cd/nirum-0.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "237c30e96cbeaf7568eedba90911c444", "sha256": "af621fcae8b2253f5fff74448eb1fe0f43726a5fe708f704063e8391ab7c070a" }, "downloads": -1, "filename": "nirum-0.3.0.tar.gz", "has_sig": false, "md5_digest": "237c30e96cbeaf7568eedba90911c444", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8082, "upload_time": "2016-11-23T11:42:19", "url": "https://files.pythonhosted.org/packages/a1/88/352ed1a62b69a3218c9dc693039c89ef60f13f3f59b1d68b18a9f6cab061/nirum-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "b18b28b11e36e68484f895b618b94d57", "sha256": "2945166870579fffd45df05b19342a3d9403a83950673cf544c62bcb0e01172f" }, "downloads": -1, "filename": "nirum-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b18b28b11e36e68484f895b618b94d57", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11467, "upload_time": "2016-11-23T12:56:31", "url": "https://files.pythonhosted.org/packages/b3/96/8c32d07a4ed583f8c39ceab8e06138cd73afdfb43f24d1656a9a6ea27aca/nirum-0.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f6d805b99ddeebf9226421f832deec54", "sha256": "359109c40471ebddae5bc98197083a736e3dfbd24aa744bae645fe9eafffd5e4" }, "downloads": -1, "filename": "nirum-0.3.1.tar.gz", "has_sig": false, "md5_digest": "f6d805b99ddeebf9226421f832deec54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8100, "upload_time": "2016-11-23T12:56:28", "url": "https://files.pythonhosted.org/packages/1f/ef/604c984d13fa2d0c7e3bb245f83131a7557e3c7c622c7f808831777727d2/nirum-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "bc02687bb1edf2f9373ab995e2104965", "sha256": "8c52e0daef81f332bcfeb5f310e72718d2828e7f1a704d0af4c5abb77792bb8e" }, "downloads": -1, "filename": "nirum-0.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "bc02687bb1edf2f9373ab995e2104965", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11892, "upload_time": "2016-12-18T09:00:29", "url": "https://files.pythonhosted.org/packages/a6/5b/c333f283646357ab13374b386083819031ae7e7c364b1b5786a22eb9b8f3/nirum-0.3.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bdfefff5446408f4d9d9845e4a1311fd", "sha256": "070b8aef3c34e5fb5fc7ab963113106462a6f2eebc974ea7cf29e6d7eda366c0" }, "downloads": -1, "filename": "nirum-0.3.2.tar.gz", "has_sig": false, "md5_digest": "bdfefff5446408f4d9d9845e4a1311fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8589, "upload_time": "2016-12-18T09:00:27", "url": "https://files.pythonhosted.org/packages/3f/39/f78686a15f055719fb4f152f0ba70df0ef056e5acf6ce2614fab95d85c56/nirum-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "80bc6d67fea9da478aa1fef36a10649b", "sha256": "2c6064b5b4c59952395163f51f228e1588e1b538f81b13a2febfa7dbe79ccae8" }, "downloads": -1, "filename": "nirum-0.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "80bc6d67fea9da478aa1fef36a10649b", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12024, "upload_time": "2017-01-26T09:36:28", "url": "https://files.pythonhosted.org/packages/bc/fa/0263b1218a49bd1d3a90d49b648ac5d2210bb90d744807256a5bf68ad2cd/nirum-0.3.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a8316b146a42c7f10b4629b508f802c7", "sha256": "ef7ff99e18389a2dbc75fe527b4b92c08c7c732a32e38dee91adad09cc5269cd" }, "downloads": -1, "filename": "nirum-0.3.3.tar.gz", "has_sig": false, "md5_digest": "a8316b146a42c7f10b4629b508f802c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8694, "upload_time": "2017-01-26T09:36:25", "url": "https://files.pythonhosted.org/packages/a3/07/ef6310412356354977809d4a63fdfcbcc8b040ec76578530ab717327eac8/nirum-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "3abba114bc33f1c51b716daefcbe256e", "sha256": "bbf49748f32a6892f5a0e4c44a52751d49e5c59c3f8eb7fac84668a14cf75a2b" }, "downloads": -1, "filename": "nirum-0.3.4-py3-none-any.whl", "has_sig": false, "md5_digest": "3abba114bc33f1c51b716daefcbe256e", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12204, "upload_time": "2017-01-26T13:35:12", "url": "https://files.pythonhosted.org/packages/a5/17/22016489636ec644089199db6c17c54092bf7113a126fc8910c1ea542f58/nirum-0.3.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4cee4836fc70de3486b0a17152611556", "sha256": "af153df72a5f60be15bd36b9b2905bf8c0bb61df928acbe274331c4ab613b220" }, "downloads": -1, "filename": "nirum-0.3.4.tar.gz", "has_sig": false, "md5_digest": "4cee4836fc70de3486b0a17152611556", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8820, "upload_time": "2017-01-26T13:35:10", "url": "https://files.pythonhosted.org/packages/b6/6d/185b65b386bbb70b1869a76a35643ed748e067ca726b85133524abbffbfd/nirum-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "7480520edac9ef856311948b735903a9", "sha256": "6e734fec0b4358c65deb0f3394b41c21af365a174890f2ebda9b94f6ea5a7349" }, "downloads": -1, "filename": "nirum-0.3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "7480520edac9ef856311948b735903a9", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12310, "upload_time": "2017-02-07T13:25:50", "url": "https://files.pythonhosted.org/packages/a0/cd/7e373bcea9cba17e63036ce0bcb5f35f1ededce97f916fc993a797d552ca/nirum-0.3.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "da8847f85cc4e2451a8a1d7f1f2d1397", "sha256": "ace15d1d1d78da3a8d14bd57035b43f6426d7d6c2095cf611079cdaee97fbd7a" }, "downloads": -1, "filename": "nirum-0.3.5.tar.gz", "has_sig": false, "md5_digest": "da8847f85cc4e2451a8a1d7f1f2d1397", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8919, "upload_time": "2017-02-07T13:25:53", "url": "https://files.pythonhosted.org/packages/d2/53/a6126837d8c8d508e41876c680d23b20ed51e3fd292b42c550929f7260de/nirum-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "446b3fb43c03b9e165823ce11aae523c", "sha256": "f647a5dfa886d946f151d66b4966f129567c1c0a694e40cdc5bd6c9773a0356a" }, "downloads": -1, "filename": "nirum-0.3.6-py3-none-any.whl", "has_sig": false, "md5_digest": "446b3fb43c03b9e165823ce11aae523c", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12365, "upload_time": "2017-02-07T14:50:27", "url": "https://files.pythonhosted.org/packages/46/c7/d0afd49c02840e485946695626a17ebb4b51c2d7e708c9775770974469ea/nirum-0.3.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "40e8e70a1e44d441ae15eb58caf2fdb9", "sha256": "5244fdb821f83c4973eea4e973dda7bb9ae15c9e4d305a38b9c969537173adf7" }, "downloads": -1, "filename": "nirum-0.3.6.tar.gz", "has_sig": false, "md5_digest": "40e8e70a1e44d441ae15eb58caf2fdb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8966, "upload_time": "2017-02-07T14:50:24", "url": "https://files.pythonhosted.org/packages/72/f7/57d99559189791e6bff7f79384296d34134ce036de96ad4aee3ac7a7304c/nirum-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "a365b2db84e3d2abbf242b911a698add", "sha256": "744814e35d4820a964381c6dc8e94dfdc39dba52b45652fd2e0f128312a82feb" }, "downloads": -1, "filename": "nirum-0.3.7-py3-none-any.whl", "has_sig": false, "md5_digest": "a365b2db84e3d2abbf242b911a698add", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12470, "upload_time": "2017-02-08T09:28:09", "url": "https://files.pythonhosted.org/packages/05/fc/24534717ab4e542cb2ea063bca5775d53cfa8e12d1e243fad14858d4322b/nirum-0.3.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dfd2e97040594d03e65f8a4754cf519e", "sha256": "6ea84911422ab642c1eeee08145aafee5944c04e3c7996d3a13df5d5a51386dc" }, "downloads": -1, "filename": "nirum-0.3.7.tar.gz", "has_sig": false, "md5_digest": "dfd2e97040594d03e65f8a4754cf519e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9060, "upload_time": "2017-02-08T09:28:06", "url": "https://files.pythonhosted.org/packages/c0/1a/99bcab1b56881b07be6ea032c5def9cabf247a0ba1d19f6328c609fabf5d/nirum-0.3.7.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "64b2a63c91b91c9ef68a1ea144ae779d", "sha256": "b8f599826cf36b25460a7f90d42b2d384823d8de81e22dc9b8fafed274383da0" }, "downloads": -1, "filename": "nirum-0.3.8-py3-none-any.whl", "has_sig": false, "md5_digest": "64b2a63c91b91c9ef68a1ea144ae779d", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12478, "upload_time": "2017-03-13T03:38:05", "url": "https://files.pythonhosted.org/packages/fb/39/7f76a415fb2c6957644bca67073a0f8d0696335544627205a58f1edcbc1a/nirum-0.3.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5e22ae2bbc34d71877d04713cae1b8b8", "sha256": "3833529db71c6745008b69b415fdfa47594d4ef75842d980376f4ba91edfc694" }, "downloads": -1, "filename": "nirum-0.3.8.tar.gz", "has_sig": false, "md5_digest": "5e22ae2bbc34d71877d04713cae1b8b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9069, "upload_time": "2017-03-13T03:38:02", "url": "https://files.pythonhosted.org/packages/56/31/fd90552969909afd612d0db3dd90245959d530295245643cba5f4cc332ee/nirum-0.3.8.tar.gz" } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "41823a08b2604762bb120e7ad86fba30", "sha256": "6717df186474954f2d53f202c29f9624cdd8182464beabf8e0aebb37648cf167" }, "downloads": -1, "filename": "nirum-0.3.9-py3-none-any.whl", "has_sig": false, "md5_digest": "41823a08b2604762bb120e7ad86fba30", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12472, "upload_time": "2017-03-13T08:29:48", "url": "https://files.pythonhosted.org/packages/30/93/36296ee5ce5c28f15cc8debf86ebf6d080b85682c446984d30424591623e/nirum-0.3.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3ba965d0bc505ece7053212c9658feeb", "sha256": "e6ddc356c09c8a68eea46e1ed88198b6b8c4319839d9b3a6947434795b009aba" }, "downloads": -1, "filename": "nirum-0.3.9.tar.gz", "has_sig": false, "md5_digest": "3ba965d0bc505ece7053212c9658feeb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9076, "upload_time": "2017-03-13T08:29:45", "url": "https://files.pythonhosted.org/packages/2a/29/730ce02d5669fd50555cba50fb837902c30e30411f70e782fc7ea822d750/nirum-0.3.9.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "cccfb2e8efe310c64f90406008df1176", "sha256": "bdebcd0e607b071f6a167edb0bfe07a805c7b556f987d738a1b505b33b9dd2ae" }, "downloads": -1, "filename": "nirum-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "cccfb2e8efe310c64f90406008df1176", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 13638, "upload_time": "2017-03-20T04:27:46", "url": "https://files.pythonhosted.org/packages/f1/8d/3972f1f5ff30d70892c0542e8ec96a398d5b465e366341972a6da94917cf/nirum-0.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "108f5daa82789be5f29b572417484ead", "sha256": "28925d903e5446148492c71a6665e10f425f4568a3d00a3fe00dc28798421755" }, "downloads": -1, "filename": "nirum-0.4.0.tar.gz", "has_sig": false, "md5_digest": "108f5daa82789be5f29b572417484ead", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9807, "upload_time": "2017-03-20T04:27:43", "url": "https://files.pythonhosted.org/packages/31/43/22dac424675f90814d705bb07b3720d4ff392ac3d5d265dfa22b1a3289b1/nirum-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "09d3c2f65607b2c79e7c44bfe6f2373b", "sha256": "5e67c4794174775562a35fee11794c1f169c22f7c6f574c08dc282cf92630a45" }, "downloads": -1, "filename": "nirum-0.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "09d3c2f65607b2c79e7c44bfe6f2373b", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 13667, "upload_time": "2017-05-02T14:01:37", "url": "https://files.pythonhosted.org/packages/37/2f/57e8a441ccc4c8d87b391a8a8f682028d6c184b02870bd88aca07ad6074b/nirum-0.4.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1c805c62b32135caf9242d23941aec37", "sha256": "716b999faadabab69d48bcd395f4e81486baebe3b5c847e246b5757c108e6335" }, "downloads": -1, "filename": "nirum-0.4.1.tar.gz", "has_sig": false, "md5_digest": "1c805c62b32135caf9242d23941aec37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9851, "upload_time": "2017-05-02T14:01:40", "url": "https://files.pythonhosted.org/packages/27/8c/60396d2158ed2f8ce1e97a2edbcd170195c945b8edb3323d7426f8ff2c4d/nirum-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "720481b5387295564145ab2713253038", "sha256": "5ce639b4be0065a0734ad522d4fcd59e08502c14515c25c22293e275950650fc" }, "downloads": -1, "filename": "nirum-0.4.2-py3-none-any.whl", "has_sig": true, "md5_digest": "720481b5387295564145ab2713253038", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13790, "upload_time": "2017-07-06T06:22:07", "url": "https://files.pythonhosted.org/packages/12/47/3d8f0b545054e144c60edeeccf4bb0217583dd56ead40b347457aefdb294/nirum-0.4.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "64a448615f46bd8a6c64b5646317b395", "sha256": "ff2a07540798c1671f1d0916eab9449e3f107f3182f2bd82731d132835f5b622" }, "downloads": -1, "filename": "nirum-0.4.2.tar.gz", "has_sig": true, "md5_digest": "64a448615f46bd8a6c64b5646317b395", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9934, "upload_time": "2017-07-06T06:22:04", "url": "https://files.pythonhosted.org/packages/7b/c6/18aaa8bdbca40efc96e68c94030da9ca528c03696a65843b28f8d119c247/nirum-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "04b087b4c1edfdb5006998243122311b", "sha256": "bdb5a7a2b0c7c8ed473ca5be924fb2d2d4a313b0796cd24be0e4e8801be62ea9" }, "downloads": -1, "filename": "nirum-0.4.3-py3-none-any.whl", "has_sig": true, "md5_digest": "04b087b4c1edfdb5006998243122311b", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 14002, "upload_time": "2018-04-05T10:36:15", "url": "https://files.pythonhosted.org/packages/08/98/4e5f343458869863c9cfb9d665598d5ed503366fe8c72c902619beff96d6/nirum-0.4.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0d0d4938ee8114cf870eb974ff548cd9", "sha256": "98f95b815a6e5e78394a064972fa905f781c27144e4f44611817a45ed4ba1f60" }, "downloads": -1, "filename": "nirum-0.4.3.tar.gz", "has_sig": true, "md5_digest": "0d0d4938ee8114cf870eb974ff548cd9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10075, "upload_time": "2018-04-05T10:36:11", "url": "https://files.pythonhosted.org/packages/93/4e/453cf43b74caa5ff83f6a629f7a472e3f9ae363a33f04287e8ebb5ca034a/nirum-0.4.3.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "c2857d70ed88be33db4376048521acb4", "sha256": "1e09c568a67ee365c67e6fc99397c3f38db80193e240bef4b579495307df18c7" }, "downloads": -1, "filename": "nirum-0.5.0-py2-none-any.whl", "has_sig": false, "md5_digest": "c2857d70ed88be33db4376048521acb4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 14639, "upload_time": "2017-06-01T12:42:23", "url": "https://files.pythonhosted.org/packages/78/53/96e9d601fb975cb6f44a8fd7a914fb3d470501e256aef17e401afda3aa37/nirum-0.5.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1b948c1654492c08ef2251eee80c8813", "sha256": "7aede69729a4cbf00f8974e62b3add15928ccb24227c245b9a9ffd8678740cde" }, "downloads": -1, "filename": "nirum-0.5.0.tar.gz", "has_sig": false, "md5_digest": "1b948c1654492c08ef2251eee80c8813", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10584, "upload_time": "2017-06-01T12:42:21", "url": "https://files.pythonhosted.org/packages/75/ed/ad686c0469810b91d9feebc86e1c9defb409f7e6cf765f6cda8b3074603a/nirum-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "243a7db4254eb4894fdcbc91eb40df9b", "sha256": "8b90dcdffbbb224ae9a1b65a9181c84ee0e56a1882aa0e4d0c386f3a1084de6e" }, "downloads": -1, "filename": "nirum-0.5.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "243a7db4254eb4894fdcbc91eb40df9b", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17104, "upload_time": "2017-06-22T03:15:27", "url": "https://files.pythonhosted.org/packages/0a/54/59895fc86c779f2d15998ccda3c2afbc412db548ba494735a7065b87e5c4/nirum-0.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "620bdc335e9edc84011824f1980920aa", "sha256": "fa836739035311b8dd6ac5a72f451cc63e0368363619ebe0180bf8e73feaec61" }, "downloads": -1, "filename": "nirum-0.5.1.tar.gz", "has_sig": true, "md5_digest": "620bdc335e9edc84011824f1980920aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12103, "upload_time": "2017-06-22T03:15:23", "url": "https://files.pythonhosted.org/packages/28/33/913b660163601b881d2fca392e44bc5f0a64fd7273dfaa1eb75c908530bc/nirum-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "5271038d162d1683cd338bfbe0131543", "sha256": "1aea08b391ceb05e11b518c082dc9176951744cce0326286f6bf2e7e550e9dc1" }, "downloads": -1, "filename": "nirum-0.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5271038d162d1683cd338bfbe0131543", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17262, "upload_time": "2017-06-22T15:53:47", "url": "https://files.pythonhosted.org/packages/42/a0/1ee799462bafbb827017099a47669e90a65665d7f068cd2746084cb84186/nirum-0.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cd79d73dfb2fc56b53104027d43fbde5", "sha256": "540dc8e42bf21cc692a67ae9753adbad5fcf75b38afbd4e27eb1bcd979238494" }, "downloads": -1, "filename": "nirum-0.5.2.tar.gz", "has_sig": false, "md5_digest": "cd79d73dfb2fc56b53104027d43fbde5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12283, "upload_time": "2017-06-22T15:53:44", "url": "https://files.pythonhosted.org/packages/23/24/7466251061be425337b1a162600f77113e4c5878d5fc94a3c34198a5c9c7/nirum-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "366f388a0f238dbfea1817422208767b", "sha256": "dc5b697dade5cc0e333459570049c5d01c6d8eff9d2be171ce02a433e0031535" }, "downloads": -1, "filename": "nirum-0.5.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "366f388a0f238dbfea1817422208767b", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17671, "upload_time": "2017-07-06T06:27:08", "url": "https://files.pythonhosted.org/packages/4a/f0/4058273afab4570e11e22440c1a33c54a6362bd5c188a85e15233c3edc7d/nirum-0.5.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0ba19573af971d1571c4f3a9f3a2425b", "sha256": "572493b20d981ca203044016e29b7368f50b5672e193d47dc74859b997556aa3" }, "downloads": -1, "filename": "nirum-0.5.3.tar.gz", "has_sig": true, "md5_digest": "0ba19573af971d1571c4f3a9f3a2425b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12509, "upload_time": "2017-07-06T06:27:05", "url": "https://files.pythonhosted.org/packages/ba/8b/4d76a0c481ce4d52a43df9641e25487983a9e255a8b9f1ffb58d6f95d956/nirum-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "a73c0cef1b1b6ffcd5d8330184e49f14", "sha256": "c30df732bcbce5d694482edaedc47cdd88c09a671c265819eb63c3b0cdf4ca52" }, "downloads": -1, "filename": "nirum-0.5.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a73c0cef1b1b6ffcd5d8330184e49f14", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 18002, "upload_time": "2017-12-09T06:49:53", "url": "https://files.pythonhosted.org/packages/65/17/133b447cb2dd083ab63c9e22b5e620ef91cb1700cdc4a3fb50489664550d/nirum-0.5.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cbe7d0bd652f75bae40ddb6284a9bf38", "sha256": "d80bbf77a2a60bdafb86a70b08887706822e619755581b9c4efc8eefd16a480c" }, "downloads": -1, "filename": "nirum-0.5.4.tar.gz", "has_sig": false, "md5_digest": "cbe7d0bd652f75bae40ddb6284a9bf38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13091, "upload_time": "2017-12-09T06:49:50", "url": "https://files.pythonhosted.org/packages/11/f0/7e9baec97bc3918d0c6b01fae5a5ddd77d5f2e1185e417825738e2be34f9/nirum-0.5.4.tar.gz" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "80cf105079cf376af4c6ad7065d0f9a7", "sha256": "3bcbea8d6d8a1e409201da82b2294d13856954c5013a60b18326267442467a84" }, "downloads": -1, "filename": "nirum-0.5.5-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "80cf105079cf376af4c6ad7065d0f9a7", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 18399, "upload_time": "2018-04-05T10:53:20", "url": "https://files.pythonhosted.org/packages/9a/d7/bd71dd95fa7d03bafb496db8ae0f3c282ba10637c32aa333bbc0d7130053/nirum-0.5.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f0dc8f81a2c168eb5f05bdffe31bdcc8", "sha256": "b640b2a0f8c14b8e55aed6de173b75b60c8663577d3e40a38ebb9b1972ba575b" }, "downloads": -1, "filename": "nirum-0.5.5.tar.gz", "has_sig": true, "md5_digest": "f0dc8f81a2c168eb5f05bdffe31bdcc8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12981, "upload_time": "2018-04-05T10:53:16", "url": "https://files.pythonhosted.org/packages/c7/7f/ffb6cd7277260f1d42dc4b690736eb26477336d46d34c977fefcbb3936cb/nirum-0.5.5.tar.gz" } ], "0.5.6": [ { "comment_text": "", "digests": { "md5": "3ba688c5c0b4ef195975479b6bf4b1ed", "sha256": "d6d14791877cb7b30e66fed845ac197419f33e900e9aab1c50e95f198727b75a" }, "downloads": -1, "filename": "nirum-0.5.6-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "3ba688c5c0b4ef195975479b6bf4b1ed", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 18449, "upload_time": "2018-04-05T11:08:00", "url": "https://files.pythonhosted.org/packages/f5/b1/8f104a4697ce41ce7ecd2031b285344fde3e3fe2f5e80ba724f907f3cf9a/nirum-0.5.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0219951f165a99ee2e2070042f98b8f7", "sha256": "d987a9cb7c131ef4da4defa84d48abbdc046d2def8d55e0ca1e226b720d2574a" }, "downloads": -1, "filename": "nirum-0.5.6.tar.gz", "has_sig": true, "md5_digest": "0219951f165a99ee2e2070042f98b8f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13002, "upload_time": "2018-04-05T11:07:56", "url": "https://files.pythonhosted.org/packages/28/17/07cfe347f13f1ae0d4fa53ea9fcbb1cb4878cec77720538212acbcd75953/nirum-0.5.6.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "b628e2b4c1d35472100e7d2cecbd341b", "sha256": "1b797b6f0a7cf8f44985994020544c446dd026af40331718d009e994d9d7cbe3" }, "downloads": -1, "filename": "nirum-0.6.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "b628e2b4c1d35472100e7d2cecbd341b", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 20317, "upload_time": "2017-07-11T12:53:37", "url": "https://files.pythonhosted.org/packages/81/1c/58bceaa2329950351a710572e21513c8fc937bad620eebb5e6125d706576/nirum-0.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0d61a3b7a2d1b614d1213ed74bb6368b", "sha256": "5af4309a2f58d4a2946f4c431d5643a8460079b9b7fb6bbb5002be40b3a7270d" }, "downloads": -1, "filename": "nirum-0.6.0.tar.gz", "has_sig": true, "md5_digest": "0d61a3b7a2d1b614d1213ed74bb6368b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14055, "upload_time": "2017-07-11T12:53:33", "url": "https://files.pythonhosted.org/packages/b8/0d/f1b735d59ffae0d117f96e0797d96c572ff7ce826a6078353116b6409387/nirum-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "e987955ee03e1c59f5a5d29102c7df4c", "sha256": "926ac131bd386c28e7040ce93a651dc9e3f144b7da23a494c86b302f13c7ec45" }, "downloads": -1, "filename": "nirum-0.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e987955ee03e1c59f5a5d29102c7df4c", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 20656, "upload_time": "2017-12-09T06:59:17", "url": "https://files.pythonhosted.org/packages/06/b0/f44a350177c80b62d1f44fd4a5ba477b9d6dd225bd07a735e53acfa5474d/nirum-0.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9ab27e9d1389a550b347b2504d17189c", "sha256": "d47324b143d31157a28da43a1f0bc11e5cb7d3558ecb496a73c2bada67ef8f29" }, "downloads": -1, "filename": "nirum-0.6.1.tar.gz", "has_sig": false, "md5_digest": "9ab27e9d1389a550b347b2504d17189c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14434, "upload_time": "2017-12-09T06:59:13", "url": "https://files.pythonhosted.org/packages/87/7c/0b0ad57b8b242aff6f3ffa6cb1c4503dbba4c5d6ad4d06cdfc56de581116/nirum-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "a3e4e4ef443b8e2644bf67e818ff856d", "sha256": "df0542199dedb9f557ee1ccba3815d1ed4f302b34778381ab13422a38b7939e0" }, "downloads": -1, "filename": "nirum-0.6.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "a3e4e4ef443b8e2644bf67e818ff856d", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 20989, "upload_time": "2018-02-11T08:37:14", "url": "https://files.pythonhosted.org/packages/65/02/dd9f678922a86eafbe44bf24f52f71233b4534575a2847db2339b2ed6ae7/nirum-0.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f5f93ab2730f5961ff2e20762270c0b5", "sha256": "2c3dcac1c046aa7edfc3d56c2dbb3d43f36951c675a0403217a7d6dfea8ebc44" }, "downloads": -1, "filename": "nirum-0.6.2.tar.gz", "has_sig": true, "md5_digest": "f5f93ab2730f5961ff2e20762270c0b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14438, "upload_time": "2018-02-11T08:37:10", "url": "https://files.pythonhosted.org/packages/91/c7/c6811ed25afa61e7d4cabb053861cdefaa4526a768b59540c754925216bf/nirum-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "f2adc9fe41bb9b9bb8252ce893b3323a", "sha256": "62c20dff6c4c4b76781ea2685b1a78b1940c91b619b31aa53fdd7cb1d147d1ed" }, "downloads": -1, "filename": "nirum-0.6.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "f2adc9fe41bb9b9bb8252ce893b3323a", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 21404, "upload_time": "2018-04-05T11:21:07", "url": "https://files.pythonhosted.org/packages/c5/05/27c70397b3191bfe9cfbccab0021f12b38209f8b5283e45b8b8a468eab9c/nirum-0.6.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b088d5f143a7033be730d47bb927defc", "sha256": "9f9e6b0f018e5e71df566b074ddfb98ac690f68668d949daacf194625df871f4" }, "downloads": -1, "filename": "nirum-0.6.3.tar.gz", "has_sig": true, "md5_digest": "b088d5f143a7033be730d47bb927defc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14716, "upload_time": "2018-04-05T11:21:03", "url": "https://files.pythonhosted.org/packages/41/1b/d8bb1497b753430ad0350d65184e6b561fc10da1ae6320636924a4078a71/nirum-0.6.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f2adc9fe41bb9b9bb8252ce893b3323a", "sha256": "62c20dff6c4c4b76781ea2685b1a78b1940c91b619b31aa53fdd7cb1d147d1ed" }, "downloads": -1, "filename": "nirum-0.6.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "f2adc9fe41bb9b9bb8252ce893b3323a", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 21404, "upload_time": "2018-04-05T11:21:07", "url": "https://files.pythonhosted.org/packages/c5/05/27c70397b3191bfe9cfbccab0021f12b38209f8b5283e45b8b8a468eab9c/nirum-0.6.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b088d5f143a7033be730d47bb927defc", "sha256": "9f9e6b0f018e5e71df566b074ddfb98ac690f68668d949daacf194625df871f4" }, "downloads": -1, "filename": "nirum-0.6.3.tar.gz", "has_sig": true, "md5_digest": "b088d5f143a7033be730d47bb927defc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14716, "upload_time": "2018-04-05T11:21:03", "url": "https://files.pythonhosted.org/packages/41/1b/d8bb1497b753430ad0350d65184e6b561fc10da1ae6320636924a4078a71/nirum-0.6.3.tar.gz" } ] }