{ "info": { "author": "George Punter", "author_email": "puntersg@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy" ], "description": "locust-nest\n===========\n|license| |versions| |pypi| |contributors|\n\n.. |license| image:: https://img.shields.io/github/license/ps-george/locust-nest.svg\n :alt: license\n :target: https://github.com/ps-george/locust-nest/blob/master/LICENSE\n\n.. |versions| image:: https://img.shields.io/pypi/v/locust-nest.svg \n :alt: PyPI\n :target: https://pypi.org/project/locust-nest/\n\n.. |pypi| image:: https://img.shields.io/pypi/pyversions/locust-nest.svg\n :alt: PyPI\n :target: https://pypi.org/project/locust-nest/\n\n.. |contributors| image:: https://img.shields.io/github/contributors/ps-george/locust-nest.svg\n :alt: GitHub contributors\n :target: https://github.com/locustio/locust/graphs/contributors\n\nLocust wrapper. Import Locust classes from a folder and run Locust using those classes with weights determined in a config file,\nwith an option to guide the generation of the config file.\n\n- `locust-nest docs`_\n- `locust-nest pip package`_\n- `locust-nest source code`_\n\n`Locust.io`_\n------------- \n\n- `Locust docs`_\n- `Locust source code`_\n\n.. _`locust-nest docs`: https://ps-george.github.io/locust-nest\n.. _`locust-nest pip package`: https://pypi.org/project/locust-nest/\n.. _`locust-nest source code`: https://github.com/ps-george/locust-nest\n\n.. _`Locust.io`: https://locust.io\n.. _`Locust docs`: https://docs.locust.io/en/stable/\n.. _`Locust source code`: https://github.com/locustio/locust\n\nWhat is locust-nest for?\n========================\n\nlocust-nest is a wrapper around Locust to simplify load testing.\n\nUse locust-nest for *load generation*.\n\nUnit tests or live user testing will tell you if your system works for 1 user, locust-nest will show you if it can scale to 100, 1000 or 100,000 simultaneous users.\n\nIt allows you to configure the weighting of each of your Locust classes so that you can run different load scenarios without changing any Python code.\n\n\nInstallation\n============\n\n.. code-block:: bash\n\n pip install locust-nest\n\nThe following will create an example file and script in the [example/] dir:\n\n.. code-block:: bash\n\n locust-nest install [example/]\n\nNote: At the moment locust-nest uses pslocust_ to provide more current Locust features than the current Locust release.\n\n.. _pslocust: https://pypi.org/project/pslocust/\n\nQuick start\n===========\n\nlocust-nest is designed to provide a framework for simulating a specified load on a system.\n\nBehaviour models are codified using Locust, an open-source load testing tool that allows abitrarily complex user behaviour modelling since all tasks are written in Python. \n\nThis wrapper searches all `.py` files in the :code:`--model_dir (-d)` directory and subdirectories for subclasses of `Locust` and runs Locust with all of those classes.\n\nTo run locust-nest, simply use locust-nest command with default Locust arguments:\n\n.. code-block:: bash\n\n locust-nest --model_dir=models/ --host=https://www.example.com ...\n\nTo be guided through the generation of a config file, use the :code:`--configure` flag: \n\n.. code-block:: bash\n\n locust-nest --configure --host=https://www.example.com ...\n\n\nAn example structure for one of these TaskSets is:\n\n.. code-block:: python\n\n from locust import TaskSet, task\n\n class ModelBehaviour(TaskSet):\n weight = 0\n def on_start(self):\n # Log in & save token\n\n # retrieve bulk information needed for other tasks\n\n # other to-dos on starting this group of tasks\n pass\n\n def on_stop(self):\n # unclaim resources e.g. username\n pass\n\n @task(5) # task decorator with relative weight of executing the task\n def model_action(self):\n # codified behaviour of a particular action this model may perform\n # e.g. registering a customer\n return\n\n\nIf the :code:`--include-tasksets (-T)` flag is used, it will also find all subclasses of `TaskSet` and add these to a `NestTaskset`,\nwhich packages all the tasks with their desired weights into a `HTTPLocust` class.\nof those classes, with weights specified in a :code:`--config_file`.\nNote: Python 2 does not have support for recursive subdirectories, so at the moment only searches 1 directory deep :code:`{model_dir}/*/`\n\nWorkflow\n--------\n\n1. locust-nest will import all TaskSets from `models/` into one NestLocust, weighting according to :code:`--config_file`.\n2. locust-nest will find all Locust's, weighting according to :code:`--config_file`.\n3. Display weightings that will be used with confirmation prompt (skippable with some commandline argument).\n4. Run Locust with weightings set from config for the Locusts and NestLocust classes\n5. locust-nest will have an option to automatically manage distributed resources for Locust master-slave mode. (NOT IMPLEMENTED)\n\nExample TaskSet\n---------------\n\n.. code-block:: python\n\n from locust import TaskSet, task\n\n class ExampleModel(TaskSet):\n weight = 0\n\n def on_start(self):\n \"\"\"Set up before running tasks.\n\n For example:\n * Log in & save token\n * Retrieve bulk information needed for other tasks\n\n \"\"\"\n return\n\n def on_stop(self):\n \"\"\"Teardown: unclaim resources e.g. claimed user.\n\n \"\"\"\n\n return\n\n # task decorator with relative weight of executing the task\n @task(5) \n def model_action(self):\n \"\"\"Codified behaviour of a particular action this model may perform\n e.g. registering a customer\n\n \"\"\"\n self.client.get(\"/\")\n return\n\n\nAims of locust-nest\n===================\n\n1. Users will be able to place any number of directories containing TaskSets \n and Locusts with each representing an encapsulated group of tasks.\n2. locust-nest will find all TaskSets contained in a specified directory\n and group them into one Locust class with corresponding weights specified\n in a config file, allowing easy modularity in adding or removing TaskSets\n without needing to change any code in the locust-nest repository. Locusts\n will also be found and configured with specific weights.\n3. There will be an interactive configure option which creates a config file\n that specifies the relative weights of each TaskSet, allowing users to easily\n adjust the different ratios of TaskSet types, but still allowing non-interactive \n use of the system when the config file has been created.\n4. locust-nest will be automatable, ideally callable with a git hook for load-testing\n continuous integration or in response to a Slack command. The results will be human readable,\n ideally some kind of index of scalability of the system, so that the evolution of the system\n under test's scalability can be tracked.\n5. locust-nest will be able to automatically deploy to AWS Lambda or equivalent and\n run load testing under the distributed master-slave variant in order to be able\n to easily scale arbitrarily.\n\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/ps-george/locust-nest", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "locust-nest", "package_url": "https://pypi.org/project/locust-nest/", "platform": "", "project_url": "https://pypi.org/project/locust-nest/", "project_urls": { "Homepage": "https://github.com/ps-george/locust-nest" }, "release_url": "https://pypi.org/project/locust-nest/0.39/", "requires_dist": [ "pslocust" ], "requires_python": ">=2.7.0", "summary": "Auto-import and compilation of locust TaskSets.", "version": "0.39" }, "last_serial": 4042933, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "23eb05556f2e50e7804e129ad4e909a8", "sha256": "b48e43c6440889953b52be54d6ebca22bb58011ccbf8d43415c333848143eea7" }, "downloads": -1, "filename": "locust_nest-0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "23eb05556f2e50e7804e129ad4e909a8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 7706, "upload_time": "2018-05-29T10:00:09", "url": "https://files.pythonhosted.org/packages/d1/37/ec28967dc0431803b45ee064896080fb3e017f29714831f72602feacd4f3/locust_nest-0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "59c698e22e08a06817f763817147eea5", "sha256": "9c0793039c5f32d8aef2afa54ccfbc6235ebb4a2ec45aae5bf5221c054d76745" }, "downloads": -1, "filename": "locust-nest-0.1.tar.gz", "has_sig": false, "md5_digest": "59c698e22e08a06817f763817147eea5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 8591, "upload_time": "2018-05-29T10:00:10", "url": "https://files.pythonhosted.org/packages/e6/f4/3b443f5b614c904ded6b8643ee23e00257ddee914321f614b9ae4f5fe804/locust-nest-0.1.tar.gz" } ], "0.11": [ { "comment_text": "", "digests": { "md5": "a84a4500bd2ab5597e4b7fdb77e6ea55", "sha256": "5f1ccba66e2d9a56f98deb31ccabaa7fe49cec81688845ce47cc2d74f81d5f1d" }, "downloads": -1, "filename": "locust_nest-0.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a84a4500bd2ab5597e4b7fdb77e6ea55", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 7721, "upload_time": "2018-05-29T10:03:17", "url": "https://files.pythonhosted.org/packages/45/3b/517a5d4c1c9f2b1a3227c0a555c73e5030005270d2896884d6d40f0fe01f/locust_nest-0.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2d8494326e66048bd4697f227ff5dea8", "sha256": "ad42edc584da25b15c0c2de01d50ace33a03c88b9061849fcc99d4413c5682bd" }, "downloads": -1, "filename": "locust-nest-0.11.tar.gz", "has_sig": false, "md5_digest": "2d8494326e66048bd4697f227ff5dea8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 8599, "upload_time": "2018-05-29T10:03:19", "url": "https://files.pythonhosted.org/packages/0f/65/0afa72b732470c790ba2136edb33008c62c5990c3fa059d7b814dc06bc2f/locust-nest-0.11.tar.gz" } ], "0.15": [ { "comment_text": "", "digests": { "md5": "4bf6e96d855291fc037d31deede37e97", "sha256": "0b5b8b81a55c51c99a3ed50a5104bcf37be54373da44b274e13c0c37f02b53b3" }, "downloads": -1, "filename": "locust_nest-0.15-py2-none-any.whl", "has_sig": false, "md5_digest": "4bf6e96d855291fc037d31deede37e97", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=3.6.0", "size": 7771, "upload_time": "2018-05-29T10:50:13", "url": "https://files.pythonhosted.org/packages/ae/fa/857a4b02f4d9d16f5387f812438c95ad64965ebdd1b0d8aebf51370d4f0c/locust_nest-0.15-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2d2ea6b0f9c4fe8723075837eb5c30c8", "sha256": "bd6614cdb6096d83cbc01e4cf60f5ca2db14d78379f85a4ce90b7262545a50b3" }, "downloads": -1, "filename": "locust_nest-0.15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2d2ea6b0f9c4fe8723075837eb5c30c8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 7776, "upload_time": "2018-05-29T10:50:15", "url": "https://files.pythonhosted.org/packages/f9/b0/f47881ff9af8fec0e2df2db08169c4ab5f08ddc2400b4800702963596d95/locust_nest-0.15-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fedb516d4af9229602fb449bbb4969af", "sha256": "6c68ba804ef23a2794950c60f8c3542b0b4b871a64e6e2d3cd88eb1dddb7c44a" }, "downloads": -1, "filename": "locust-nest-0.15.tar.gz", "has_sig": false, "md5_digest": "fedb516d4af9229602fb449bbb4969af", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 8548, "upload_time": "2018-05-29T10:50:16", "url": "https://files.pythonhosted.org/packages/26/4f/b39085ec1a7f8d4cf935d6b02ccdc3c8c8e0f12e0864ee461ca71d37d4ae/locust-nest-0.15.tar.gz" } ], "0.16": [ { "comment_text": "", "digests": { "md5": "210b956b3417728ac37ddbf7e2082d03", "sha256": "37f7d58bcda00746c76917a43ff457d6e4f1557e702bb0342283640aeaaf2ed4" }, "downloads": -1, "filename": "locust_nest-0.16-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "210b956b3417728ac37ddbf7e2082d03", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 8092, "upload_time": "2018-05-29T11:38:42", "url": "https://files.pythonhosted.org/packages/b3/bc/b86efa96cadbb354dc409b86b4cfc15f0966b844d53a718dc4de107f24aa/locust_nest-0.16-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "97b55b29589e8fd1f9f57a2d561b1429", "sha256": "2fef9a28ef485d29a4946f24de45d81e0215d6c343459a66e7786dcb6e1049cc" }, "downloads": -1, "filename": "locust-nest-0.16.tar.gz", "has_sig": false, "md5_digest": "97b55b29589e8fd1f9f57a2d561b1429", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 8593, "upload_time": "2018-05-29T11:38:43", "url": "https://files.pythonhosted.org/packages/81/c7/f9ab8858ff645132610e996017e2933a6089f2458df03a8c3e0750283976/locust-nest-0.16.tar.gz" } ], "0.17": [ { "comment_text": "", "digests": { "md5": "51b71ff5a5cc1f2d294a3ec1b3f06285", "sha256": "9323a3b2e415ffc92a202ba0ab029b83d6a84d1f02b57b898f0aebc2f9b98aa7" }, "downloads": -1, "filename": "locust_nest-0.17-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "51b71ff5a5cc1f2d294a3ec1b3f06285", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8082, "upload_time": "2018-05-29T11:43:12", "url": "https://files.pythonhosted.org/packages/65/96/5e5180295458ce4c13e049ec62ee9241feabefc895a34542583fec83d698/locust_nest-0.17-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bcaf727a52c00f44535542198a61799e", "sha256": "6911afe6ffc7b89412a22427274fb851a750b80d64a7fb58588a1680717f60ec" }, "downloads": -1, "filename": "locust-nest-0.17.tar.gz", "has_sig": false, "md5_digest": "bcaf727a52c00f44535542198a61799e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8591, "upload_time": "2018-05-29T11:43:13", "url": "https://files.pythonhosted.org/packages/03/66/f087e985fcbf40f54f40d047ef8465673af464a98ee8daf73481e68e99d8/locust-nest-0.17.tar.gz" } ], "0.18": [ { "comment_text": "", "digests": { "md5": "5468a3e0d4c84d4c725fb97c8fc598ce", "sha256": "1b3b10b4701ff808323ab7d8ef669c6c9e561a2f9c18187fd542aeeb87147044" }, "downloads": -1, "filename": "locust_nest-0.18-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5468a3e0d4c84d4c725fb97c8fc598ce", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8090, "upload_time": "2018-05-29T11:45:49", "url": "https://files.pythonhosted.org/packages/82/91/7f1a846aa823c37d67af32c052bc40575d46407bc71e6310e5401ed8f203/locust_nest-0.18-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f3ae68c36c942d27adec8434d43dbb97", "sha256": "d741a2b2e125a2e058feb73070e1b1531aaf3393ae5a53d538a84a551210fca4" }, "downloads": -1, "filename": "locust-nest-0.18.tar.gz", "has_sig": false, "md5_digest": "f3ae68c36c942d27adec8434d43dbb97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8595, "upload_time": "2018-05-29T11:45:50", "url": "https://files.pythonhosted.org/packages/80/5e/82a9e7dda32805f6984a5647a2e2ebd4dc1f9561e156863d93d8e1031d12/locust-nest-0.18.tar.gz" } ], "0.20": [ { "comment_text": "", "digests": { "md5": "f5350e7b7b4a067e4d11949a673863b5", "sha256": "199cb14730b75d67d8b29079a375d40c9e49fcdfe025b44350c71755415cb391" }, "downloads": -1, "filename": "locust_nest-0.20-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f5350e7b7b4a067e4d11949a673863b5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7711, "upload_time": "2018-05-29T13:01:46", "url": "https://files.pythonhosted.org/packages/f6/a3/34172301e3706737e41a38ec6dd975e77f0d01d73917ef1f5cbc6582dbfe/locust_nest-0.20-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bc9a954cc6c6bb42e9f9e0b86625d45d", "sha256": "1a617f61238dfe29bbf79a3f10c4c3fe76879dab2899912d19e23d26878d6353" }, "downloads": -1, "filename": "locust-nest-0.20.tar.gz", "has_sig": false, "md5_digest": "bc9a954cc6c6bb42e9f9e0b86625d45d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8248, "upload_time": "2018-05-29T13:01:47", "url": "https://files.pythonhosted.org/packages/85/e6/61660e834bdbbd24401963dcadcdae16606a2c8f3dc42a9013a930b35001/locust-nest-0.20.tar.gz" } ], "0.21": [ { "comment_text": "", "digests": { "md5": "1140add04f3e93703d7e1b143e816e4c", "sha256": "abfbad6a33dbaacc2960712d4c4865114b4ed00af37e85a8c785afae63adb0ad" }, "downloads": -1, "filename": "locust_nest-0.21-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1140add04f3e93703d7e1b143e816e4c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7710, "upload_time": "2018-05-29T13:07:01", "url": "https://files.pythonhosted.org/packages/5c/e4/66dfff1886249aa5264be5aa10d34ed81b39bec7c4b308d9e0f2dee228e3/locust_nest-0.21-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ba65d5a460af91ddeca41f157dbbd27c", "sha256": "f6412cc90522ea7f64fef35d2b212b491203df42527dcaff3dac968213cdeca6" }, "downloads": -1, "filename": "locust-nest-0.21.tar.gz", "has_sig": false, "md5_digest": "ba65d5a460af91ddeca41f157dbbd27c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8247, "upload_time": "2018-05-29T13:07:03", "url": "https://files.pythonhosted.org/packages/9f/d9/217ea7d9ee4b215a6088f78cc7c879170167dae6126d9e1bc094c3117665/locust-nest-0.21.tar.gz" } ], "0.22": [ { "comment_text": "", "digests": { "md5": "1b0f931324ea62e14ac10e0bc2ebc3b1", "sha256": "6c0069094299df40af097b443e2d5b5c0cb171ab18f2ac0797228d94d5146f6e" }, "downloads": -1, "filename": "locust_nest-0.22-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1b0f931324ea62e14ac10e0bc2ebc3b1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9771, "upload_time": "2018-05-30T15:37:26", "url": "https://files.pythonhosted.org/packages/82/c3/908b23326355bb4962da988f3d4e0be139cef95a37fa30a4ecd82e403749/locust_nest-0.22-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b89bf7602e3de32fc34a100efb31e8fa", "sha256": "dcd2b4b922061c105686fead701f84f318e7613c8f1a622a6fe92d191e26d7f0" }, "downloads": -1, "filename": "locust-nest-0.22.tar.gz", "has_sig": false, "md5_digest": "b89bf7602e3de32fc34a100efb31e8fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10700, "upload_time": "2018-05-30T15:37:28", "url": "https://files.pythonhosted.org/packages/09/99/82a450e414ccdd7aaebedcfbfca015ca829f661a6484af0dc15360c91f0d/locust-nest-0.22.tar.gz" } ], "0.23": [ { "comment_text": "", "digests": { "md5": "bfa38ba9f749ddba7a78b219b96be1a1", "sha256": "a1d263f928a5208a6911329ce920a8e31e2991b86f8f7addc269b29a529901d2" }, "downloads": -1, "filename": "locust_nest-0.23-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bfa38ba9f749ddba7a78b219b96be1a1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9794, "upload_time": "2018-06-01T09:14:35", "url": "https://files.pythonhosted.org/packages/f8/34/e2c874cce635caa0918b0289d9df5e936265de6a7e376afb2f7715a9e493/locust_nest-0.23-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "65233626b885bcd56d45a36e739324b6", "sha256": "979386b45543b4358d2940c8ccaefdfda5b82d7c58a0a56ac394f076ab06dfed" }, "downloads": -1, "filename": "locust-nest-0.23.tar.gz", "has_sig": false, "md5_digest": "65233626b885bcd56d45a36e739324b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10732, "upload_time": "2018-06-01T09:14:37", "url": "https://files.pythonhosted.org/packages/00/b2/253a66a3f1bfde3933cb2937882c2a3b9e6a8a264e47acb9ed750c68d633/locust-nest-0.23.tar.gz" } ], "0.24": [ { "comment_text": "", "digests": { "md5": "90359354fa80bb30d2136fa5a848d381", "sha256": "767626a1a794d08b3d1d8ba1c5d74b97be129e3276701fd3a97bdb9e11c7e2a6" }, "downloads": -1, "filename": "locust_nest-0.24-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "90359354fa80bb30d2136fa5a848d381", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10056, "upload_time": "2018-06-01T13:50:40", "url": "https://files.pythonhosted.org/packages/64/cf/c02317f4597ac9d71a667e8927218299278459c81218a3cf46a1b9ffc6cd/locust_nest-0.24-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d72349a8d3a318ddf7b7906907ff826a", "sha256": "79b93dd49a424d5e80ecdf8bcbc3f932dc08efc8ac159a48c621c3c37c0587f3" }, "downloads": -1, "filename": "locust-nest-0.24.tar.gz", "has_sig": false, "md5_digest": "d72349a8d3a318ddf7b7906907ff826a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10860, "upload_time": "2018-06-01T13:50:42", "url": "https://files.pythonhosted.org/packages/86/56/4ade0a6cb8a07ea5c622a03fff3d31e7aa158bd72de88e077eaac1dc044a/locust-nest-0.24.tar.gz" } ], "0.25": [ { "comment_text": "", "digests": { "md5": "6ed7d13c4ad4755bf1f30ce85151d02f", "sha256": "d2168126c30858ab4dd71ef6da48a70376de863b0a2ff70c211f97d0146bedbf" }, "downloads": -1, "filename": "locust_nest-0.25-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6ed7d13c4ad4755bf1f30ce85151d02f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10059, "upload_time": "2018-06-04T09:50:30", "url": "https://files.pythonhosted.org/packages/30/f9/f3264a8fdccc0f3a875bfe1c444f2be40fac0b9cd71fa4af7a4395f0edae/locust_nest-0.25-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bec89621f6ef4902de92429d023fe670", "sha256": "e8187bb22846989dc3968e7f59a60d4a6f0b193cbe5b816310b8f5eac1039974" }, "downloads": -1, "filename": "locust-nest-0.25.tar.gz", "has_sig": false, "md5_digest": "bec89621f6ef4902de92429d023fe670", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10891, "upload_time": "2018-06-04T09:50:32", "url": "https://files.pythonhosted.org/packages/c6/99/e80cd0eca0582ba40c2bbc91b942e1c1f3f53ee05df2431c26a122e6d489/locust-nest-0.25.tar.gz" } ], "0.26": [ { "comment_text": "", "digests": { "md5": "c3420d3585032b8a34e59d6c5f0073e3", "sha256": "195ec78dc15f85892f3d0d4711762f848cb20f0a26c93a3514b2217edccbd435" }, "downloads": -1, "filename": "locust_nest-0.26-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c3420d3585032b8a34e59d6c5f0073e3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8740, "upload_time": "2018-06-04T11:51:19", "url": "https://files.pythonhosted.org/packages/99/93/03e422a9bbb38daef76dfe2469573dbe6d48a9c745f4c4ccf33cfda4aa2f/locust_nest-0.26-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "24146ca799da951d76707e2ce5f0e807", "sha256": "3aa67502455111cd2d909b01d93d618377d47bd3db509197318bf0e7b32c2d4c" }, "downloads": -1, "filename": "locust-nest-0.26.tar.gz", "has_sig": false, "md5_digest": "24146ca799da951d76707e2ce5f0e807", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9360, "upload_time": "2018-06-04T11:51:20", "url": "https://files.pythonhosted.org/packages/37/65/dc6fc1a40b9783b15b2a35b9f9adef12ca2f667fa81d262e10521625798c/locust-nest-0.26.tar.gz" } ], "0.27": [ { "comment_text": "", "digests": { "md5": "065090524b748900ed1d159332834915", "sha256": "8e1fde71f0e1eada149fb4ce29897f809e4592a2b7816430efcb0ad30276f5ad" }, "downloads": -1, "filename": "locust_nest-0.27-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "065090524b748900ed1d159332834915", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8610, "upload_time": "2018-06-05T10:27:53", "url": "https://files.pythonhosted.org/packages/7a/02/02027c47fa9d67b5648ef1eccb6ae45309dfa364636001c704bc2280d6f3/locust_nest-0.27-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5ad4710434f9234ac738a2ac7ba72ac5", "sha256": "731a263b0053feb7d47b0e89b217886c9d0e43e2f3c4501fe665ca9d2aa1e9bf" }, "downloads": -1, "filename": "locust-nest-0.27.tar.gz", "has_sig": false, "md5_digest": "5ad4710434f9234ac738a2ac7ba72ac5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9181, "upload_time": "2018-06-05T10:28:00", "url": "https://files.pythonhosted.org/packages/64/be/2fe67be307e6420185344b14f77ef9ae83fd267acc9664f354776cd8545f/locust-nest-0.27.tar.gz" } ], "0.29": [ { "comment_text": "", "digests": { "md5": "c43209e827381a9a4671a95861be5b62", "sha256": "e616bc13f5e387711147206893af0bb61d4f6f8f4373da8af0da794a11b07754" }, "downloads": -1, "filename": "locust_nest-0.29-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c43209e827381a9a4671a95861be5b62", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8784, "upload_time": "2018-06-05T10:57:15", "url": "https://files.pythonhosted.org/packages/f8/57/82519f0a28550f906129c238ed13f35b4c36c4762f91038667bc31e3e700/locust_nest-0.29-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0f07d506faf6ebeb89a9a7e1019a8a0e", "sha256": "17eba861928d37e6f3df4249dae44495e7eee74a9eeabb9651c1ac0d87ada4d0" }, "downloads": -1, "filename": "locust-nest-0.29.tar.gz", "has_sig": false, "md5_digest": "0f07d506faf6ebeb89a9a7e1019a8a0e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9224, "upload_time": "2018-06-05T10:57:17", "url": "https://files.pythonhosted.org/packages/45/25/fb042d26c8d79c37a6d8cff5f22eaab7184a010ec74db7beff027dd75946/locust-nest-0.29.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "f1448eabf2e926380f39cce5c3a8e6a5", "sha256": "87f74d91f7846f4c1bf1b385f1599b329dab628b3c7fb6bcd57fcf3377028341" }, "downloads": -1, "filename": "locust_nest-0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f1448eabf2e926380f39cce5c3a8e6a5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8782, "upload_time": "2018-06-05T11:01:19", "url": "https://files.pythonhosted.org/packages/d3/b8/e55a697fbff27cfba874123465f5dfb9ebd2ac0c37d1065f9f5a52efe357/locust_nest-0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "12e12e7c280c03957db552d5130931a5", "sha256": "0bf0cc4be890b964726d877b76f74e396fe1d30270db2203186efa1cf332c195" }, "downloads": -1, "filename": "locust-nest-0.3.tar.gz", "has_sig": false, "md5_digest": "12e12e7c280c03957db552d5130931a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9267, "upload_time": "2018-06-05T11:01:20", "url": "https://files.pythonhosted.org/packages/d2/a9/cf12d40548e2a8c5db626b5b25b741f11f1a931aba3bac99cf5c855bcd52/locust-nest-0.3.tar.gz" } ], "0.31": [ { "comment_text": "", "digests": { "md5": "4d546abed802a653d3c6a1e995180744", "sha256": "4d2eaed7c31ab5e99690927e257cb31000da6980cfc39519e8e899bc95e5d449" }, "downloads": -1, "filename": "locust_nest-0.31-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4d546abed802a653d3c6a1e995180744", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8525, "upload_time": "2018-06-05T11:31:20", "url": "https://files.pythonhosted.org/packages/c8/b5/d65677b9ed3f7048d2a729a972a6f3b98ef030d8afea559cc252bc179c39/locust_nest-0.31-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "71dc86841cb26bfe4e1cb65264c678af", "sha256": "e73d9e07bcdb46ca0ddf59b8b68fff69f66413b6bf17763ca9fa5730a04fc02d" }, "downloads": -1, "filename": "locust-nest-0.31.tar.gz", "has_sig": false, "md5_digest": "71dc86841cb26bfe4e1cb65264c678af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9246, "upload_time": "2018-06-05T11:31:23", "url": "https://files.pythonhosted.org/packages/4d/40/5eedc22ba6b529044fd7d658023d2e938b18dc794a9210e890fce56633ff/locust-nest-0.31.tar.gz" } ], "0.32": [ { "comment_text": "", "digests": { "md5": "ef01b81e79b69ddbdcde61ec1d675edb", "sha256": "04058c09edc13e708160e708c1233c4d1ba17d0fd591767ee8d16b381a59473b" }, "downloads": -1, "filename": "locust_nest-0.32-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ef01b81e79b69ddbdcde61ec1d675edb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8604, "upload_time": "2018-06-05T13:43:24", "url": "https://files.pythonhosted.org/packages/f4/c1/97d3db718062045bf45bd307ee8398b91b1e5fa5721121868d1dac26f7db/locust_nest-0.32-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5eed38ba16d0d8516771124e12b8e865", "sha256": "77ac585d9a2a22120fd3f887e8deca84c15c9fee2ed08dfeebec1033bd163795" }, "downloads": -1, "filename": "locust-nest-0.32.tar.gz", "has_sig": false, "md5_digest": "5eed38ba16d0d8516771124e12b8e865", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9340, "upload_time": "2018-06-05T13:43:25", "url": "https://files.pythonhosted.org/packages/75/16/801cc233dbc4b337c6e85966d8b422ed7733332f959fda66d29f210d9088/locust-nest-0.32.tar.gz" } ], "0.33": [ { "comment_text": "", "digests": { "md5": "f901122223bd8b39a204c3d1c9e00b75", "sha256": "4ecf7d0368db51f23226202d67c5995115bef8bea158c0c31492d02fc3a12173" }, "downloads": -1, "filename": "locust_nest-0.33-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f901122223bd8b39a204c3d1c9e00b75", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11556, "upload_time": "2018-06-06T10:01:22", "url": "https://files.pythonhosted.org/packages/f2/18/bc2edf3f6b06c6bd56928d661ec2c5e47d668666432bd6531314509e28e9/locust_nest-0.33-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7dbdd491324f4a4855ed0dbd990dcea9", "sha256": "925d6a7ee50d9f6410f14434de009c54ebdf9002b4eb99057b7397bcaf97b75b" }, "downloads": -1, "filename": "locust-nest-0.33.tar.gz", "has_sig": false, "md5_digest": "7dbdd491324f4a4855ed0dbd990dcea9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9354, "upload_time": "2018-06-06T10:01:23", "url": "https://files.pythonhosted.org/packages/53/f4/f01bc45df7b7c4afe4fefa42dc6c86e904a6227a2d74531f1ad5a4a04f8c/locust-nest-0.33.tar.gz" } ], "0.34": [ { "comment_text": "", "digests": { "md5": "f95fdf594622d1c76cf07e202f5290a2", "sha256": "110301db77351c21d171ec5aac410ccf164191b83742222fbc15c64a8e731e41" }, "downloads": -1, "filename": "locust_nest-0.34-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f95fdf594622d1c76cf07e202f5290a2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11733, "upload_time": "2018-06-06T10:19:34", "url": "https://files.pythonhosted.org/packages/93/0a/68617ffdf5e6063cd24646ae2fd0da71746a7c1b47c5d6e2834b5f48e81e/locust_nest-0.34-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a7e47c3eb95140ff4ed0224e1b493887", "sha256": "9afd628c1748f2f18016ec600b3d869f1eb2e47bca683696cc961162d9d9883d" }, "downloads": -1, "filename": "locust-nest-0.34.tar.gz", "has_sig": false, "md5_digest": "a7e47c3eb95140ff4ed0224e1b493887", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9462, "upload_time": "2018-06-06T10:19:35", "url": "https://files.pythonhosted.org/packages/d1/0d/df50920c1821353e152188a6ef951bcbb02f04a36df1b3d558f6c3303aac/locust-nest-0.34.tar.gz" } ], "0.35": [ { "comment_text": "", "digests": { "md5": "dc97dee9f79d105898799aecb62e11b8", "sha256": "3e481a68513ad6f07a4395d0705011d5a599ddcadb38f609412add343fc4fc19" }, "downloads": -1, "filename": "locust_nest-0.35-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dc97dee9f79d105898799aecb62e11b8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8790, "upload_time": "2018-06-06T12:04:54", "url": "https://files.pythonhosted.org/packages/b4/85/b134dcd5fcdd77988d2eec24636b79d77b75add390cb6f33037c6cd12254/locust_nest-0.35-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "27269c39abb1f5984568d3fae5702dce", "sha256": "38040234c04b2f1f7c599c546fe83bf831477b4acb40fd213012c6479fdaf666" }, "downloads": -1, "filename": "locust-nest-0.35.tar.gz", "has_sig": false, "md5_digest": "27269c39abb1f5984568d3fae5702dce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9515, "upload_time": "2018-06-06T12:04:56", "url": "https://files.pythonhosted.org/packages/ab/d5/1384f35190300a0bcc3d81a9ca4fb389f17bab84d026d9a2f381f364f46a/locust-nest-0.35.tar.gz" } ], "0.36": [ { "comment_text": "", "digests": { "md5": "77a3c9e3b8d8eb363a29691d4e91896d", "sha256": "fa1b157dcefbf2eb9e0458a917b3f7c7b2f119843b1904ea5e74e61c16cfe791" }, "downloads": -1, "filename": "locust_nest-0.36-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "77a3c9e3b8d8eb363a29691d4e91896d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13363, "upload_time": "2018-06-11T11:06:54", "url": "https://files.pythonhosted.org/packages/94/cc/2c63c6c0707bad805f3c1026373dabf93b57e13d5fe9aa39d043121ae154/locust_nest-0.36-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ebbbc60a21de21130b4f1b2622e6f9a8", "sha256": "98a492933dae5fe8711c30708573b9348be335b22723420bcaceb863764a6b6b" }, "downloads": -1, "filename": "locust-nest-0.36.tar.gz", "has_sig": false, "md5_digest": "ebbbc60a21de21130b4f1b2622e6f9a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10214, "upload_time": "2018-06-11T11:06:55", "url": "https://files.pythonhosted.org/packages/7c/5d/451f6530c15a2fd7b678c06d3e2fbb8bc51886de7aa8e48ea0e8573a812d/locust-nest-0.36.tar.gz" } ], "0.37": [ { "comment_text": "", "digests": { "md5": "5e83209da4f1bd2e1b961e21930f2748", "sha256": "cf8ebea39c0e415ca844c96ac1c18d0df34ba3ecfb107026265e876627bf1279" }, "downloads": -1, "filename": "locust_nest-0.37-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5e83209da4f1bd2e1b961e21930f2748", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13420, "upload_time": "2018-06-12T10:04:48", "url": "https://files.pythonhosted.org/packages/8c/05/c5f1ce20d725346c09f135351c84c71db79930b8f2a388649b547746100f/locust_nest-0.37-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bfe36bd117b593b19098e1bd799efd02", "sha256": "ce93f7d04ce5937e4af21d308f02fdd2e07ec48b78acc5d4725f61ca3753119c" }, "downloads": -1, "filename": "locust-nest-0.37.tar.gz", "has_sig": false, "md5_digest": "bfe36bd117b593b19098e1bd799efd02", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10317, "upload_time": "2018-06-12T10:04:49", "url": "https://files.pythonhosted.org/packages/5c/06/8e1039e7bdc2a8789e1ade8e098fc91cde5baa092c8b16ed1d51e4ada639/locust-nest-0.37.tar.gz" } ], "0.38": [ { "comment_text": "", "digests": { "md5": "383d310cdeea5887070f08d814c6ed3b", "sha256": "6390b1aa64c4b1e8956a79a8f14232f254cea2a0d6e1df3c7ff77211c4dff4bd" }, "downloads": -1, "filename": "locust_nest-0.38-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "383d310cdeea5887070f08d814c6ed3b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13652, "upload_time": "2018-06-12T10:24:03", "url": "https://files.pythonhosted.org/packages/c6/ca/7a72206f23fccf4542261204711763e3183e8b32c6cab66b65e17c5d0477/locust_nest-0.38-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "958567b130e5682fd4a1de833330a152", "sha256": "076271e8db8379d80e7d463da20c6ff1d0b10d282c86d7dc9a75940019241ac5" }, "downloads": -1, "filename": "locust-nest-0.38.tar.gz", "has_sig": false, "md5_digest": "958567b130e5682fd4a1de833330a152", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10582, "upload_time": "2018-06-12T10:24:04", "url": "https://files.pythonhosted.org/packages/b8/ef/121114ce0286f08343cc4d209ef7b3dbc520a2a20e3bcc5ad019adc2b2b8/locust-nest-0.38.tar.gz" } ], "0.39": [ { "comment_text": "", "digests": { "md5": "1427d0e8af865ef2f06ffa50613e76da", "sha256": "3200ffab9bc16f8428a7ced8c41659f737c7b7a7f798d9e33ceefaf06d343dc4" }, "downloads": -1, "filename": "locust_nest-0.39-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1427d0e8af865ef2f06ffa50613e76da", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.0", "size": 13672, "upload_time": "2018-06-13T09:05:24", "url": "https://files.pythonhosted.org/packages/9d/92/7bfa8a3974255e1024761d92e94d874a5943bc61a338d5d27508b57eb8dc/locust_nest-0.39-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "50a66321ad393db8a839a06194de41f6", "sha256": "f8694da3f78c005cbb2f8cfc874915cced9db912db49ccb9f52098310c15b743" }, "downloads": -1, "filename": "locust-nest-0.39.tar.gz", "has_sig": false, "md5_digest": "50a66321ad393db8a839a06194de41f6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.0", "size": 10630, "upload_time": "2018-06-13T09:05:25", "url": "https://files.pythonhosted.org/packages/2a/d5/487482267602119185b9b258755917b18ae8bd0ff54287fc30492be074f9/locust-nest-0.39.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "b7fd35ec1e43c5ae369c1dd464e22a28", "sha256": "af0d012ecf21ccf7256cbbeaa801d1e249c1157c102d6da0be4591cbffeff9fb" }, "downloads": -1, "filename": "locust_nest-0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b7fd35ec1e43c5ae369c1dd464e22a28", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15741, "upload_time": "2018-06-26T09:35:16", "url": "https://files.pythonhosted.org/packages/8e/5f/17c7ec033f6189e66f4f024e7610515b3eb46973ca7133beb52126f7383e/locust_nest-0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2aa6b633606b02bb5e9a44a99db4b862", "sha256": "6bcaf4c4dfdc9aab7aa979f15acb42a97646b67cb9cdb299ea150b9af1e9c116" }, "downloads": -1, "filename": "locust-nest-0.4.tar.gz", "has_sig": false, "md5_digest": "2aa6b633606b02bb5e9a44a99db4b862", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10565, "upload_time": "2018-06-26T09:35:17", "url": "https://files.pythonhosted.org/packages/b3/0a/d92e659aad3256f00f6df3b7b52c32274b9676423d8e53838ae3ed8853e6/locust-nest-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "fc1ed01c06d4e38a9e31085bbcbf7135", "sha256": "14c57538f11a226fc7f0aceacc96c12eaaebf2fd8141d56ca9db8f19ab701fa4" }, "downloads": -1, "filename": "locust_nest-0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fc1ed01c06d4e38a9e31085bbcbf7135", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19309, "upload_time": "2018-07-09T09:02:55", "url": "https://files.pythonhosted.org/packages/88/91/1938118e06def3cd345de96ff6f699e21a307d314acb7b5489527bc03cd9/locust_nest-0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3b3a67001a514926777d0d1a943dbca4", "sha256": "f44875fd27133c9d43aa19daacf2fee97695694e767d68be547618447a56463c" }, "downloads": -1, "filename": "locust-nest-0.5.tar.gz", "has_sig": false, "md5_digest": "3b3a67001a514926777d0d1a943dbca4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11599, "upload_time": "2018-07-09T09:02:57", "url": "https://files.pythonhosted.org/packages/49/a7/00c040f6e1f63221fdc58b07ac18dc315d5c10086fb1ace4005eec49e746/locust-nest-0.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "1427d0e8af865ef2f06ffa50613e76da", "sha256": "3200ffab9bc16f8428a7ced8c41659f737c7b7a7f798d9e33ceefaf06d343dc4" }, "downloads": -1, "filename": "locust_nest-0.39-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1427d0e8af865ef2f06ffa50613e76da", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.0", "size": 13672, "upload_time": "2018-06-13T09:05:24", "url": "https://files.pythonhosted.org/packages/9d/92/7bfa8a3974255e1024761d92e94d874a5943bc61a338d5d27508b57eb8dc/locust_nest-0.39-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "50a66321ad393db8a839a06194de41f6", "sha256": "f8694da3f78c005cbb2f8cfc874915cced9db912db49ccb9f52098310c15b743" }, "downloads": -1, "filename": "locust-nest-0.39.tar.gz", "has_sig": false, "md5_digest": "50a66321ad393db8a839a06194de41f6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.0", "size": 10630, "upload_time": "2018-06-13T09:05:25", "url": "https://files.pythonhosted.org/packages/2a/d5/487482267602119185b9b258755917b18ae8bd0ff54287fc30492be074f9/locust-nest-0.39.tar.gz" } ] }