{ "info": { "author": "Giorgos Logiotatidis", "author_email": "giorgos@sealabs.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Natural Language :: English", "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 :: 3.5" ], "description": "NewRelic Synthetics (unofficial) CLI (NeReS)\n============================================\n\n|image0| |image1|\n\nNeReS is a cli tool to manage `NewRelic Synthetics\n`__ monitors with a Synthetics Lite account\n(Pro should work too). The tool emulates the actions of a user in the browser\nand doesn't use the Synthetics API since that's only available to the Pro\naccounts.\n\nWith this tool you can:\n\n- List all your monitors, including their success rate, locations,\n notifications etc.\n- Create, update and delete monitors\n- List available locations for monitor installation and\n- everything else available though the Web console.\n\n|image3|\n\n\nInstallation\n------------\n\n.. code:: shell\n\n $ pip install neres\n\n\n\nConfiguration\n-------------\n\n1. You will need a newrelic account\n2. Start by using the `login` command\n3. Read the docs or run `--help`\n\n\nUse\n---\n\nLogin to NewRelic\n~~~~~~~~~~~~~~~~~~\n\nLogin to NewRelic with the `login` command:\n\n.. code:: shell\n\n $ neres login\n\nIf you have multiple NewRelic accounts you can have different environments:\n\n.. code:: shell\n\n $ neres --environment work login\n\n.. note::\n\n Default environment is named `newrelic`. Remember to always pass `--environment`\n to all neres commands to execute them in the correct environment. Alternatively\n you can add `NERES_ENVIRONMENT` to your environment variables list.\n\n\nList Accounts\n~~~~~~~~~~~~~\n\nYou can list all the accounts connected to the email you used to connect using:\n\n.. code:: shell\n\n $ neres list-accounts\n\nBy default neres will act on the first account listed. This command will help\nyou select a different account by using the `ID` of the account in combination\nwith the `--account` option or by setting `NERES_ACCOUNT` in your environment.\n\nList Locations\n~~~~~~~~~~~~~~\n\nLists available monitor locations:\n\n.. code:: shell\n\n $ neres list-locations\n\nList Monitors\n~~~~~~~~~~~~~\n\nLists available monitors:\n\n.. code:: shell\n\n $ neres list-monitors\n\nYou can only list IDs of the monitors:\n\n.. code:: shell\n\n $ neres list-monitors --ids-only\n\nOr get the raw JSON output from NewRelic:\n\n.. code:: shell\n\n $ neres list-monitors --raw\n\nAdd Monitor\n~~~~~~~~~~~\n\nAdds a Synthetics monitor:\n\n.. code:: shell\n\n $ neres add-monitor monitorName http://example.com\n\nUse `--help` to get a full list of supported options for the command. All\noptions are optional.\n\n\nGet Monitor\n~~~~~~~~~~~\n\nGet details on a monitor\n\n.. code:: shell\n\n $ neres get-monitor de310b69-3195-435e-b1ef-3a0af67499de\n\n\n.. note::\n\n You can use `list-monitors` to get a list of available monitors.\n\nUpdate Monitor\n~~~~~~~~~~~~~~\n\nUpdate an existing monitor\n\n.. code:: shell\n\n $ neres update-monitor de310b69-3195-435e-b1ef-3a0af67499de --name \"Foobar\"\n\nUse `--help` to get a full list of supported options for the command. All\noptions are optional.\n\n\nOpen Monitor\n~~~~~~~~~~~~\n\nOpen monitor in the browser\n\n.. code:: shell\n\n $ neres open de310b69-3195-435e-b1ef-3a0af67499de\n\n\nGet state of all monitors of account\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nExport the state of all monitors of account in YAML format with\n\n.. code:: shell\n\n $ neres get-state\n\n\nSave the output into a file, edit and use in combination with the\n`update-from-statefile` command to update multiple monitors at once.\n\n.. code:: shell\n\n $ neres get-state > state.yaml\n\n\nUpdate monitors from statefile\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nUpdate monitors from statefile with\n\n.. code:: shell\n\n $ neres update-from-statefile state.yaml\n\n\n.. note::\n\n This command will only update existing monitors. It will not create new or\n delete existing ones.\n\n\nCredits\n-------\n\nThis package was created with\n`Cookiecutter `__ and the\n`audreyr/cookiecutter-pypackage `__\nproject template.\n\n.. |image0| image:: https://img.shields.io/pypi/v/neres.svg\n.. |image1| image:: https://travis-ci.org/glogiotatidis/neres.svg?branch=master\n.. |image3| image:: https://asciinema.org/a/145685.png\n :target: https://asciinema.org/a/145685\n\n\nHistory\n-------\n\n0.4.0 (2017-06-02)\n~~~~~~~~~~~~~~~~~~\n\n* Use NewRelic's \"stoplight\" to determine monitor health.\n\n0.3.0 (2017-05-25)\n~~~~~~~~~~~~~~~~~~\n\n* Multiple monitors management with get-state and update-from-statefile\n* Bug fixes\n\n\n0.2.0 (2017-05-11)\n``````````````````\n\n* Python 3 fixes\n* Bugfixes\n* Tests!\n\n0.1.1 (2017-04-27)\n~~~~~~~~~~~~~~~~~~\n\n* First release on PyPI.\n\n0.1.0 (2017-04-12)\n~~~~~~~~~~~~~~~~~~\n\n* Cookiecutter import\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/glogiotatidis/neres", "keywords": "neres", "license": "GNU General Public License v3", "maintainer": "", "maintainer_email": "", "name": "neres", "package_url": "https://pypi.org/project/neres/", "platform": "", "project_url": "https://pypi.org/project/neres/", "project_urls": { "Homepage": "https://github.com/glogiotatidis/neres" }, "release_url": "https://pypi.org/project/neres/0.5.1/", "requires_dist": [ "python-decouple (==3.0)", "requests (==2.22.0)", "click (==7.0)", "humanize (==0.5.1)", "terminaltables (==3.1.0)", "enum34 (==1.1.6)", "PyYAML (==5.1.1)", "yamlordereddictloader (==0.3.0)", "certifi (==2018.10.15)", "chardet (==3.0.4)", "urllib3 (==1.25.3)", "idna (==2.7)", "entrypoints (==0.3)" ], "requires_python": "", "summary": "(unofficial) NewRelic Synthetics CLI", "version": "0.5.1" }, "last_serial": 5607281, "releases": { "0.1.0": [], "0.1.1": [ { "comment_text": "", "digests": { "md5": "7c536e1c22e7a8a8a5c9bd4621f1b951", "sha256": "8f2bf43e52b18a0e874473cc3141b8aa3c355b174165336b25670b769da2c3b2" }, "downloads": -1, "filename": "neres-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7c536e1c22e7a8a8a5c9bd4621f1b951", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12060, "upload_time": "2017-04-27T12:48:32", "url": "https://files.pythonhosted.org/packages/c1/59/915f5243e0a66dce2cf642cb26a49be7674223ae5474929e455b1b9855a0/neres-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2e832fe7e730c33cdee5ada25e456003", "sha256": "659106d9b97dbb2fc52ac9f888b12f735073ab5f03241601ad1b32bc4d92b08e" }, "downloads": -1, "filename": "neres-0.1.1.tar.gz", "has_sig": false, "md5_digest": "2e832fe7e730c33cdee5ada25e456003", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19980, "upload_time": "2017-04-27T12:48:33", "url": "https://files.pythonhosted.org/packages/99/b6/51c9b76e8d6889f5400ca856f2802a94b9c8b3f27ca2b185f5f8cceb15d0/neres-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "55f0185fc2bd714ce41157f6a3862154", "sha256": "ba1152b4c65e0ad964fa30f46682fde80307dedec89e5c55f4462c4a9e0dd938" }, "downloads": -1, "filename": "neres-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "55f0185fc2bd714ce41157f6a3862154", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12937, "upload_time": "2017-05-11T13:37:12", "url": "https://files.pythonhosted.org/packages/39/a0/16673eb6b509a4bb498b0b593769d87190f73866b8aebda5cb84811bacd5/neres-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8de609bf856615854aed375a27afec36", "sha256": "5f49b932dc1cc80ff453d5a48bdb45eefee590a4a0d42ec2be6c4b5e8b272487" }, "downloads": -1, "filename": "neres-0.1.2.tar.gz", "has_sig": false, "md5_digest": "8de609bf856615854aed375a27afec36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20957, "upload_time": "2017-05-11T13:37:14", "url": "https://files.pythonhosted.org/packages/1c/be/fe949d22b1a5e9c8d4ec2f8d62a2510e4925da035dc787d7a093f296caa4/neres-0.1.2.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "8d31a3a12d82416aca9adea7192adef0", "sha256": "aac8a8948d8b8be49dced8f093e3773cbf27fb931559214c0d6072c6a4d147da" }, "downloads": -1, "filename": "neres-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8d31a3a12d82416aca9adea7192adef0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12974, "upload_time": "2017-05-12T08:49:47", "url": "https://files.pythonhosted.org/packages/51/58/ac1824618e9fb0bdc27695872a033cd47d2f1c4101cb4523326b5f42c39b/neres-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "927570701dd7016b8963adc62eb625e6", "sha256": "5bd777c192abc999bb45e65cf9173c17925254f2aeb6427c8612b6094fdf92c9" }, "downloads": -1, "filename": "neres-0.2.0.tar.gz", "has_sig": false, "md5_digest": "927570701dd7016b8963adc62eb625e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20997, "upload_time": "2017-05-12T08:49:49", "url": "https://files.pythonhosted.org/packages/a0/d5/7f802b11700285360a5ae7ed27c388891e204cedce226b1533ea18e65e1d/neres-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "0afa7a0b590f26a6b02fed85fcd8e283", "sha256": "d7f6fe6c5ccda3acbddb2dafb9594c61f3e1e5b4bc952cee9904c77830effb37" }, "downloads": -1, "filename": "neres-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0afa7a0b590f26a6b02fed85fcd8e283", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14343, "upload_time": "2017-05-25T12:33:45", "url": "https://files.pythonhosted.org/packages/6f/bd/c08e83758b38b97df3751dadbcb7af7edadd2ebd8c281a802f5b835449e7/neres-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "64d69f81e00d2c8626ef453077f08c91", "sha256": "8b6a6391e0b92ce5d22fa88f8846ea49b977f4d5d89757390afca19961f0ba29" }, "downloads": -1, "filename": "neres-0.3.0.tar.gz", "has_sig": false, "md5_digest": "64d69f81e00d2c8626ef453077f08c91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23264, "upload_time": "2017-05-25T12:33:46", "url": "https://files.pythonhosted.org/packages/84/ea/b19e6cdf2de0fe35f5c84be09cfd9cf5aa55dc3cefd7c761b5401122d3bc/neres-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "e9fab25faba2c1630ab48c68a0807017", "sha256": "15e55642109ba1459d20e073ec35d898cab95fa9d9fbc722d1897a464bcc37c7" }, "downloads": -1, "filename": "neres-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e9fab25faba2c1630ab48c68a0807017", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14373, "upload_time": "2017-05-26T08:20:23", "url": "https://files.pythonhosted.org/packages/91/cf/8568214a17a1c77d287ace8961ac66464fb83d72bf384d87d54d9b90a9d6/neres-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "33a9d2bef1e083e8505030f996e2eeb8", "sha256": "8e4cdcc0f1751567213bbaff7849ec3f20e17f4fe4ab3eb5322c0cc20a8e2aa2" }, "downloads": -1, "filename": "neres-0.3.1.tar.gz", "has_sig": false, "md5_digest": "33a9d2bef1e083e8505030f996e2eeb8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23266, "upload_time": "2017-05-26T08:20:25", "url": "https://files.pythonhosted.org/packages/98/7c/1acbbb4cf18ce2ef35dd08ea6540d74d312c8e551790820896f38cd2843e/neres-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "226f7b51bb1dd043e0377cd18f7fd16b", "sha256": "2c3d58fcff6429b8c12badc6fa466b3998416dbe97f648c281811639a653cc89" }, "downloads": -1, "filename": "neres-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "226f7b51bb1dd043e0377cd18f7fd16b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15370, "upload_time": "2017-05-29T11:32:07", "url": "https://files.pythonhosted.org/packages/81/3a/fc59d5e89d806e3f8b445c5871766cea0c55080b5180123747dbf5fb6498/neres-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3f5763756e09fe7be69a9bd1a579ebc3", "sha256": "292dccca3cadebefed2ea5f83467ffc1df256bd284354a77ace600acf314546f" }, "downloads": -1, "filename": "neres-0.3.2.tar.gz", "has_sig": false, "md5_digest": "3f5763756e09fe7be69a9bd1a579ebc3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23827, "upload_time": "2017-05-29T11:32:09", "url": "https://files.pythonhosted.org/packages/4c/d3/dae8925faca1946ddef2b8fd4976721d6db9295f4b2bde5e89c282f7229d/neres-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "766ef4f26f0c6883104feca3f3def946", "sha256": "ac22d7823089dcd9b9e8ee247591cf3985bd99463dc7a8ff13bf2155efa3bca1" }, "downloads": -1, "filename": "neres-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "766ef4f26f0c6883104feca3f3def946", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14381, "upload_time": "2017-05-29T20:40:34", "url": "https://files.pythonhosted.org/packages/9b/ee/b487b3ffe4da18eabb6442303adaae04cf3c26be52646f9297039640e2c5/neres-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c9b2866a43114ed125ab42527d8665b8", "sha256": "9e4d9d9a396467b45cbadb5e3911747ce0633d2f9eeffe4aa46cb362436e4284" }, "downloads": -1, "filename": "neres-0.3.3.tar.gz", "has_sig": false, "md5_digest": "c9b2866a43114ed125ab42527d8665b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23212, "upload_time": "2017-05-29T20:40:36", "url": "https://files.pythonhosted.org/packages/87/a6/d04e6ff9d0893a0920f5c83e39c806984e1713410030e10615efecef5900/neres-0.3.3.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "1ab5fdf77907116514c04e9c9a6d6706", "sha256": "f74553c1c93ad49218a4ee11a2faa865b033046ba982c19cf356464909384554" }, "downloads": -1, "filename": "neres-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1ab5fdf77907116514c04e9c9a6d6706", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14633, "upload_time": "2017-06-02T12:18:42", "url": "https://files.pythonhosted.org/packages/4b/5c/7d024d4940ba2a282c8af1d9a1bf3bf627143a69ee068a6049be47b3a19b/neres-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4778bbac81ad129ed36457e45cfd74e5", "sha256": "a9f1381e3b51662ffacd94f8dbd5366553ff005823f4a0bf6cb0618a22d70d06" }, "downloads": -1, "filename": "neres-0.4.0.tar.gz", "has_sig": false, "md5_digest": "4778bbac81ad129ed36457e45cfd74e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23509, "upload_time": "2017-06-02T12:18:43", "url": "https://files.pythonhosted.org/packages/35/21/c0064449e0042540785437f2ff850f89a08f4fba586aaf64c2d5bf6f90d4/neres-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "00d338857b82fea35c65e894bd00dbb1", "sha256": "8e50b5908e7203b56e3c42ad14a036dc9afb4024263f0a2007a4a457eb19bab6" }, "downloads": -1, "filename": "neres-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "00d338857b82fea35c65e894bd00dbb1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14796, "upload_time": "2017-11-09T12:11:11", "url": "https://files.pythonhosted.org/packages/b2/28/c373f4e69df6c83273cf496d29cfa902d840a9e34baf43c8e0e42684415c/neres-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "005be96dfdf63300104c3c139126158b", "sha256": "ec63a98ad3052366770eb8bb30cc938ba85d98d4007ed14e0346d2ed66c5969d" }, "downloads": -1, "filename": "neres-0.4.1.tar.gz", "has_sig": false, "md5_digest": "005be96dfdf63300104c3c139126158b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23640, "upload_time": "2017-11-09T12:11:13", "url": "https://files.pythonhosted.org/packages/22/95/4cb0e3c01ce16a2180a75a572699f3f4047a8dab1554e4958bafbe9371eb/neres-0.4.1.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "fb92aef3ec595f8ad9a70338bda54892", "sha256": "70d85fbd8097721df7cd360005276f5e6a94a245278e102855dcfd1df928a08e" }, "downloads": -1, "filename": "neres-0.4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fb92aef3ec595f8ad9a70338bda54892", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14868, "upload_time": "2018-02-06T12:40:47", "url": "https://files.pythonhosted.org/packages/1e/8f/0fb0ace0d5bc57c3e5eceb873d076ea7aebf3f36ddd6cdb5601fde9aa1c5/neres-0.4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "152bd823ca4642678e5f3c6012c01c71", "sha256": "cfa5c9f69854a4e6b2ae16c29a173788408820da8f0e0ebeb1788a762ed1418c" }, "downloads": -1, "filename": "neres-0.4.3.tar.gz", "has_sig": false, "md5_digest": "152bd823ca4642678e5f3c6012c01c71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23712, "upload_time": "2018-02-06T12:40:47", "url": "https://files.pythonhosted.org/packages/a7/50/407c1fb3a77530379bf611ffb4397ec86fe38e7d9598da1c1f4f77545184/neres-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "da003311427f6378f0d62c70ee66f78c", "sha256": "048c3d0dca0005d5ae9a5314aed237f9928e0d44acb897b7935adb2eb105fa35" }, "downloads": -1, "filename": "neres-0.4.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "da003311427f6378f0d62c70ee66f78c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12050, "upload_time": "2018-04-18T09:13:43", "url": "https://files.pythonhosted.org/packages/cc/45/020a5aa85d11c5f0f784a73d2180c28778332156e1e3314447081313c965/neres-0.4.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "06fa8b03e0749d2ba64cc5a4161e7422", "sha256": "e5788b020bdf6381572dd8b508a389df2acf538b2464955c0d5c11ac311879cc" }, "downloads": -1, "filename": "neres-0.4.4.tar.gz", "has_sig": false, "md5_digest": "06fa8b03e0749d2ba64cc5a4161e7422", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23723, "upload_time": "2018-04-18T09:13:45", "url": "https://files.pythonhosted.org/packages/be/77/0fe70a9bdc14d9861b31b13986a13b344ae0a64b1cee720f606c7629d661/neres-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "24105e1cdb2f3114a0ae34806e9835c7", "sha256": "0768ee3dbe43a9cef0be6759db4a44dc290807685f6f923f3865d39e4513aea6" }, "downloads": -1, "filename": "neres-0.4.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "24105e1cdb2f3114a0ae34806e9835c7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13070, "upload_time": "2018-10-19T08:41:09", "url": "https://files.pythonhosted.org/packages/a2/e9/17d54f8633dc72fe1464bd5f7951f9e6f386f7c32075ebef60bfea92b963/neres-0.4.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f5f496c95efd3bfb685dc34e75d224f9", "sha256": "2b956f117376567e55dac7e86cff1189a520a4a23384b9b0fc10365adf79c27f" }, "downloads": -1, "filename": "neres-0.4.5.tar.gz", "has_sig": false, "md5_digest": "f5f496c95efd3bfb685dc34e75d224f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23247, "upload_time": "2018-10-19T08:41:10", "url": "https://files.pythonhosted.org/packages/f0/dd/2c87f1fa87a659fd1696e982fef6a20519bfc1cdfb02ea68ed7b8ed788bb/neres-0.4.5.tar.gz" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "2b0200b821b408671d2629b1b43be8ca", "sha256": "ae40fa42329e5ab1ec033ce4019f6bc936b338f733ae1fd862ca06c4e29d336c" }, "downloads": -1, "filename": "neres-0.4.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2b0200b821b408671d2629b1b43be8ca", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13076, "upload_time": "2019-06-14T08:44:08", "url": "https://files.pythonhosted.org/packages/3a/e1/30a9ef80a7c04ac97f523543e46c6e4b05f02d7eef2724df95a881dd341a/neres-0.4.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f85f12fcd3be39c13a69c00acd5b3436", "sha256": "72bd2d7083083ac569bdc0abee597fb7181523fd7db4bae50ee5e8ac1e6ddce1" }, "downloads": -1, "filename": "neres-0.4.7.tar.gz", "has_sig": false, "md5_digest": "f85f12fcd3be39c13a69c00acd5b3436", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23247, "upload_time": "2019-06-14T08:44:10", "url": "https://files.pythonhosted.org/packages/a7/a1/0f14d8b4860d5142b0979a44e4098f5537939eb9aaa329f220f59278abd4/neres-0.4.7.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "0ef7b69892571b605a1410ac5e9f21e7", "sha256": "fd0bbffb557d62e18906dabf25315f20da59b74e558597967ec9543242fd2080" }, "downloads": -1, "filename": "neres-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0ef7b69892571b605a1410ac5e9f21e7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13079, "upload_time": "2019-07-30T11:52:44", "url": "https://files.pythonhosted.org/packages/a5/5f/bd38bf3e86d1d592d8be206daf559c1fa70df2e622bbe0edbc655ea78053/neres-0.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "efba66a38a8e5bbf066de44575adf444", "sha256": "f1e40ec1218e98249f7e240979ad98241ea545161dec76d7a7ff620a4bd2bcb2" }, "downloads": -1, "filename": "neres-0.5.1.tar.gz", "has_sig": false, "md5_digest": "efba66a38a8e5bbf066de44575adf444", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25012, "upload_time": "2019-07-30T11:52:45", "url": "https://files.pythonhosted.org/packages/85/b4/d368d3a9c7b432b1d5e8a103917fb546132107ad8937e3cea93a0d2a0891/neres-0.5.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0ef7b69892571b605a1410ac5e9f21e7", "sha256": "fd0bbffb557d62e18906dabf25315f20da59b74e558597967ec9543242fd2080" }, "downloads": -1, "filename": "neres-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0ef7b69892571b605a1410ac5e9f21e7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13079, "upload_time": "2019-07-30T11:52:44", "url": "https://files.pythonhosted.org/packages/a5/5f/bd38bf3e86d1d592d8be206daf559c1fa70df2e622bbe0edbc655ea78053/neres-0.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "efba66a38a8e5bbf066de44575adf444", "sha256": "f1e40ec1218e98249f7e240979ad98241ea545161dec76d7a7ff620a4bd2bcb2" }, "downloads": -1, "filename": "neres-0.5.1.tar.gz", "has_sig": false, "md5_digest": "efba66a38a8e5bbf066de44575adf444", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25012, "upload_time": "2019-07-30T11:52:45", "url": "https://files.pythonhosted.org/packages/85/b4/d368d3a9c7b432b1d5e8a103917fb546132107ad8937e3cea93a0d2a0891/neres-0.5.1.tar.gz" } ] }