{ "info": { "author": "Erik G\u00e4rtner", "author_email": "erik@gartner.io", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved", "Natural Language :: English", "Operating System :: OS Independent", "Operating System :: Unix", "Programming Language :: Python :: 3.6" ], "description": "# Hyperdock\n![Hyperdock logo](extra/banner.png)\n\n[![PyPI](https://img.shields.io/pypi/v/hyperdock.svg?style=for-the-badge)](https://pypi.org/project/hyperdock/)\n[![Docker Pulls](https://img.shields.io/docker/pulls/erikgartner/hyperdock-supervisor.svg?style=for-the-badge)](https://hub.docker.com/r/erikgartner/hyperdock-supervisor/)\n[![Travis](https://img.shields.io/travis/ErikGartner/hyperdock.svg?style=for-the-badge)](https://travis-ci.org/ErikGartner/hyperdock)\n[![Codecov](https://img.shields.io/codecov/c/github/ErikGartner/hyperdock.svg?style=for-the-badge)](https://codecov.io/gh/ErikGartner/hyperdock)\n[![Code Climate maintainability](https://img.shields.io/codeclimate/maintainability/ErikGartner/hyperdock.svg?style=for-the-badge)](https://codeclimate.com/github/ErikGartner/hyperdock/)\n\n*A simple framework for distributed hyperparameter optimization in Docker.*\n\n## What is Hyperdock?\n\nHyperdock is a framework for hyperparameter search that can be used to optimized any target as long as that target can be run in a Docker container. That means that the target can be written in any language, use any framework or run on any operating system as long as it can be made into a Docker image.\n\nThe figure below shows the Hyperdock system and its main components.\n![Hyperdock diagram](extra/diagram.png)\n\nThe *Hyperdock Web UI* is the main interface for the end-users from where they can specify *trials* (a *target Docker image* and the hyperparameter space to search over). All trials, their status and results are stored in a *Mongo database*.\n\nThe *Hyperdock Supervisor* is a background process that monitors all trials. It determines what *jobs* (a specific hyperparameter combination) need to scheduled, which jobs have failed and should be restarted, and notifies users of results.\n\nThe *Hyperdock Workers* dequeues jobs from the *work queue* and then evaluates the *target image* with these parameters. They continually send status updates to the database to notify the user of progress.\n\nThe entire Hyperdock system can be distributed, i.e. Supervisor, Workers and WebUI need not run on the same host. They only need to be able to access the same Mongo database and the workers need to have access to any data required by the target image.\n\nEach program that should be optimized needs to have its own Docker image, the *target image*, that is setup to load the parameters and write progress reports. Parameters are available in the json file `/hyperdock/params.json`. Once the target image has evaluated the parameters it simply writes the loss to the file `/hyperdock/loss.json` with the option of storing important files to `/hyperdock/out`. Logs from the target image are periodically tailed from the workers to the WebUI. More about how to write a target image can found below.\n\n### How does Hyperdock work?\n\nHyperdock supports grid search of parameters from lists and distributions. See the [wiki](https://github.com/ErikGartner/hyperdock/wiki/The-Parameter-Space) for details on how to define the parameters space.\n\n## Setting up Hyperdock\n\nYou can either use the pre-built Docker images for Hyperdock or run the sub-systems directly on the host(s). Finally you can also use the [Docker compose](#docker-compose) file to setup a single host Hyperdock environment useful for testing - this method is very quick way to get started.\n\n### Supervisor\nTo start the Hyperdock Supervisor using the Docker image run the following command:\n```bash\ndocker run -it \\\n --rm \\\n --name hyperdock-supervisor \\\n --link hyperdock-mongo \\\n erikgartner/hyperdock-supervisor:latest \\\n --mongodb mongodb://hyperdock-mongo:27017/hyperdock\n```\n\nOr run it on your host with Python >= 3.6 and install with pip:\n```bash\npip install hyperdock\nhyperdock-supervisor --mongodb mongodb://localhost:27017/hyperdock\n```\n\n#### Options\n- `--mongo mongodb://localhost:27017/hyperdock` URL to the Mongo database\n\nFor full arguments to the supervisor run: `hyperdock-supervisor --help`.\n\n### Worker\nTo start the Hyperdock Worker using the Docker image run the following command:\n```bash\ndocker run -it \\\n --rm \\\n -v /var/run/docker.sock:/var/run/docker.sock \\\n --link hyperdock-mongo \\\n -v $(pwd):$(pwd) \\\n erikgartner/hyperdock-worker:latest \\\n --mongodb mongodb://hyperdock-mongo:27017/hyperdock\n```\n\nOr run it on your host with Python >= 3.6 and install with pip:\n```bash\npip install hyperdock\nhyperdock-worker --mongodb mongodb://localhost:27017/hyperdock\n```\n\n#### Options\n\n- `-v $(pwd):$(pwd)` mirrors the path structure from the host in to the Docker container. This is needed since the paths must be the the same when the worker starts the Target Image and mounts the data and results folders.\n- `-v /var/run/docker.sock:/var/run/docker.sock` gives the Docker image access to control the outer Docker daemon. This is crucial for worker to start new containers\n\nOr run it on your host with Python 3.6 and install with pip:\n```bash\npip install hyperdock\nhyperdock-worker --mongodb mongodb://localhost:27017/hyperdock\n```\n\nFor full arguments to the worker run: `hyperdock-worker --help`.\n\n**Note:** That since the Hyperdock Worker needs to control Docker and access files on the host computer.\n\n### WebUI\nTo start the Hyperdock WebUI using the Docker image run the following command:\n```bash\ndocker run -it \\\n --rm \\\n --name hyperdock-webui \\\n --link hyperdock-mongo \\\n -e ROOT_URL=http://localhost:3000/ \\\n -e MONGO_URL=mongodb://hyperdock-mongo:27017/hyperdock \\\n -p 3000:3000 \\\n erikgartner/hyperdock-webui:latest\n```\n\n#### Options\n\n- `-e MONGO_URL=mongodb://hyperdock-mongo:27017/hyperdock` sets the Mongo database\n- `-p 3000:3000` publish the Web UI's http port\n\nOr run it on your host with Meteor:\n```bash\n# Install Meteor\ncurl https://install.meteor.com/ | sh\n\n# Go into the Web UI source folder\ncd web/\nmeteor npm install\n\n# Set Mongo Database URL\nexport MONGO_URL=mongodb://localhost:27017/hyperdock\n\n# Start WebUI\nmeteor run\n```\n\n### Target Image\n\nEach optimization target needs a *target image*. This image can be dynamic (i.e. checkout the latest source from Github) but preferably should be reproducible, for example by always checking out a specific commit.\n\nWhen running the container the target should:\n\n1. Read the parameters\n2. Evaluate the target program\n3. Write the loss / results and then exit (with error code 0).\n\nCommunication between Hyperdock and the target program is handle through a few special files and folders that are mounted and populated by Hyperdock.\n\n- `/hyperdock/`\n - `loss.json` write the loss here; format described [here](https://github.com/ErikGartner/hyperdock/wiki/Loss)\n - `params.json` parameters for the run; format described [here](https://github.com/ErikGartner/hyperdock/wiki/The-Parameter-Space)\n - `graphs.json` optional file, contains graphs for Web UI plots; format described [here](https://github.com/ErikGartner/hyperdock/wiki/Graphs)\n - `out/` persistent folder, use this to write any other files to the result folder\n- `/data` a read only folder that contains any external data needed\n\nSee the [Dockfile template](docker/Dockerfile.template) for an example. It is available as a Docker image named\n`erikgartner/hyperdock-demo:latest`. By default it outputs `0` as its loss but by setting the environment\nvariable `FUNCTION` to a python expression (for example `a + b`) you can compute an arbitrary loss based on the Hyperdock parameters.\n\n### Mongo Database\nTo start a Mongo database you can use this simple Docker command or use any normal Mongo instance.\n```bash\n# Starts mongo db, add --bind_ip_all to listen on all interfaces.\ndocker run --name hyperdock-mongo -p 27017:27017 -d mongo\n```\n\n### Docker Compose\nTo setup Hyperdock on a single host the Docker compose file is a very easy way to get started. Just set the marked line in `docker-compose.yml` to a host directory that should contain data and results. Then simply run:\n\n```bash\ndocker-compose up\n```\n\n## Developing\n\nHyperdock welcomes new contributors and pull-requests, but please start by reading the contribution [guidelines](CONTRIBUTING.md). If you don't know where to start, sending a message to contributors is a good start!\n\nHyperdock uses [Pipenv](https://docs.pipenv.org/) to manage the Python version and the package dependencies. The WebUI is built using [Meteor](https://www.meteor.com/) which needs to be installed prior to development.\n\nHyperdock uses [Travis](https://travis-ci.com/) for test monitoring, continuous integration and continuous deployment.\n\n### Testing\n\nHyperdock uses [nose](https://nose.readthedocs.io) as the test runner for the Python package. *Note* that the test machine needs a working Docker installation that doesn't require sudo. Always run the tests locally before pushing.\n\n```bash\n# Install packages and development packages with the correct Python version\npipenv install -d\n\n# Run tests with nose\nnosetests -sv\n```\n\nFor the WebUI run:\n```bash\nexport MONGO_URL=mongodb://localhost:27017/hyperdock\n\nmeteor npm install\nmeteor run\n```\n\n## License\nCopyright 2018-2019 Erik G\u00e4rtner\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\n## Citing\nIf you use Hyperdock in your research please cite it as:\n\n @misc{hyperdock,\n author = {G{\\\"a}rtner, Erik},\n title = {Hyperdock},\n year = {2019},\n publisher = {GitHub},\n journal = {GitHub repository},\n howpublished = {\\url{https://github.com/ErikGartner/Hyperdock}},\n }", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/ErikGartner/hyperdock", "keywords": "hyperparameter,optimization,docker", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "hyperdock", "package_url": "https://pypi.org/project/hyperdock/", "platform": "", "project_url": "https://pypi.org/project/hyperdock/", "project_urls": { "Homepage": "http://github.com/ErikGartner/hyperdock" }, "release_url": "https://pypi.org/project/hyperdock/0.19.2/", "requires_dist": null, "requires_python": "", "summary": "A distributed hyperparameter optimizer for machine learning that lives in Docker", "version": "0.19.2" }, "last_serial": 5550534, "releases": { "0.10.1": [ { "comment_text": "", "digests": { "md5": "10b96af5bd1a13a79d6a22652f3c06a7", "sha256": "626aa663e73179c550263eb992a2e0ab58f61fc3affbb9d44228f4eb9ee76b37" }, "downloads": -1, "filename": "hyperdock-0.10.1.tar.gz", "has_sig": false, "md5_digest": "10b96af5bd1a13a79d6a22652f3c06a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18299, "upload_time": "2018-09-10T15:26:06", "url": "https://files.pythonhosted.org/packages/7f/31/f4d50661bfc8b24dadc30bd390abd4acae2134a7fff3b8117c9f09610c16/hyperdock-0.10.1.tar.gz" } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "f8e789bdded1857daaa6eb65a289ad2e", "sha256": "fa99d2a9ad676f2d2d013ea27cd902e336b411b4306fc4c4a936bec1024ad880" }, "downloads": -1, "filename": "hyperdock-0.10.2.tar.gz", "has_sig": false, "md5_digest": "f8e789bdded1857daaa6eb65a289ad2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18300, "upload_time": "2018-09-11T09:22:41", "url": "https://files.pythonhosted.org/packages/80/25/72bd4a7eb84b2091d958d97d8d655c82dc022f74650dfc7d03520419ecc2/hyperdock-0.10.2.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "b39188e5bba1347c57d411de5a4cb6d8", "sha256": "3ab24943d21736d5a4cd680a112da2e023034017f0ab2ebf2cf43bdd1a5be81e" }, "downloads": -1, "filename": "hyperdock-0.11.0.tar.gz", "has_sig": false, "md5_digest": "b39188e5bba1347c57d411de5a4cb6d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18448, "upload_time": "2018-10-03T12:32:14", "url": "https://files.pythonhosted.org/packages/7c/84/c34fec729b6f736fc4a837e0a66c01560a29ce4a22dd4a0f425ea98aa561/hyperdock-0.11.0.tar.gz" } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "8686a69c59994e9630ae95b0e5bb01b5", "sha256": "73bf92721499bd20f836fad9df4acf5d83551b07cd67b074e68ae0ac323cb5db" }, "downloads": -1, "filename": "hyperdock-0.11.1.tar.gz", "has_sig": false, "md5_digest": "8686a69c59994e9630ae95b0e5bb01b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18452, "upload_time": "2018-10-08T13:31:15", "url": "https://files.pythonhosted.org/packages/40/0d/e093c6f70886057e780c46a41fceb4344a2382c33c85bbe155f15a408ac7/hyperdock-0.11.1.tar.gz" } ], "0.11.2": [ { "comment_text": "", "digests": { "md5": "6ba746484387f070cb2b08a7d9c42240", "sha256": "81eb61f6fc0643369b2fdb1edd8dcbe82ff23d112c03f75c706652f601632e40" }, "downloads": -1, "filename": "hyperdock-0.11.2.tar.gz", "has_sig": false, "md5_digest": "6ba746484387f070cb2b08a7d9c42240", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18183, "upload_time": "2018-10-13T08:40:32", "url": "https://files.pythonhosted.org/packages/45/6d/57ac86d3402bc0ff73c677bc2c3610ea5266bf792d120f3900928b340d56/hyperdock-0.11.2.tar.gz" } ], "0.11.3": [ { "comment_text": "", "digests": { "md5": "8a536c3cc8681408bb651c3d8a741975", "sha256": "01c4877b2fca679a57b696e059edfe402c504d5f68ff9fe88367d4be9edd0dca" }, "downloads": -1, "filename": "hyperdock-0.11.3.tar.gz", "has_sig": false, "md5_digest": "8a536c3cc8681408bb651c3d8a741975", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18184, "upload_time": "2018-10-13T08:49:27", "url": "https://files.pythonhosted.org/packages/a2/58/bf822906611033392a594d7fe6010fd2539375db2423045e8bec49c3b72f/hyperdock-0.11.3.tar.gz" } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "17301738ec9b1ecd7684dbb3461a81cf", "sha256": "9347a2279239e7ad45b4f9605cf1248412758e4feb0ecf9dfa8671fe38a7d83c" }, "downloads": -1, "filename": "hyperdock-0.12.0.tar.gz", "has_sig": false, "md5_digest": "17301738ec9b1ecd7684dbb3461a81cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19408, "upload_time": "2018-10-26T11:27:56", "url": "https://files.pythonhosted.org/packages/9d/de/e06394dcb1110533c8bc2e58a82949fd52a3ad5bb9087779d2d19f6108de/hyperdock-0.12.0.tar.gz" } ], "0.12.1": [ { "comment_text": "", "digests": { "md5": "67bc3f1b09b74b5840701f011176e8b4", "sha256": "d52f6cf6b426113d68a08819f546965978280f0c00d81e6d5d614d4ad7aac718" }, "downloads": -1, "filename": "hyperdock-0.12.1.tar.gz", "has_sig": false, "md5_digest": "67bc3f1b09b74b5840701f011176e8b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19435, "upload_time": "2018-10-26T13:23:33", "url": "https://files.pythonhosted.org/packages/f4/67/ec19b92a271861dcdfbc1263e43a79a8003d1deaa90e5158d5c717620c9e/hyperdock-0.12.1.tar.gz" } ], "0.12.2": [ { "comment_text": "", "digests": { "md5": "3545d68f65c90fd7a47eb70143907ccd", "sha256": "759d07db4bf57d9cb4aa2c921bd64b59e24fdc4d616840f5130888b8b98bed0f" }, "downloads": -1, "filename": "hyperdock-0.12.2.tar.gz", "has_sig": false, "md5_digest": "3545d68f65c90fd7a47eb70143907ccd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19421, "upload_time": "2018-10-26T13:38:27", "url": "https://files.pythonhosted.org/packages/fd/c8/bfc067b7b4a53e2f3df83a20837b8797b28beb11add00117c9422af4591e/hyperdock-0.12.2.tar.gz" } ], "0.12.3": [ { "comment_text": "", "digests": { "md5": "7487577197dcfe45597f7e58fe27271f", "sha256": "c5cd47585bfd45fc128916bbb7d83c79e483c844dd9c2a5d1a86e6a3ae5f004a" }, "downloads": -1, "filename": "hyperdock-0.12.3.tar.gz", "has_sig": false, "md5_digest": "7487577197dcfe45597f7e58fe27271f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19426, "upload_time": "2018-10-26T13:53:51", "url": "https://files.pythonhosted.org/packages/6d/8d/63460589faf7f836d8d5aef5ec8b4f43bf0794eb093f49b8c3f3c4edea78/hyperdock-0.12.3.tar.gz" } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "370be2198db3ac3f3e9002952626ab92", "sha256": "e71233e9849810d0a5671c478fec915347d322b8bbf0bdff200e891e2eebd908" }, "downloads": -1, "filename": "hyperdock-0.13.0.tar.gz", "has_sig": false, "md5_digest": "370be2198db3ac3f3e9002952626ab92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20638, "upload_time": "2018-11-05T12:05:59", "url": "https://files.pythonhosted.org/packages/d6/0a/b0f0cd573d57dea94747d5429a7827f447771bd960f1ea37f4322391fa3e/hyperdock-0.13.0.tar.gz" } ], "0.13.1": [ { "comment_text": "", "digests": { "md5": "55ef31621fb89a75231477c16dfc88b6", "sha256": "a860fe7a8b14544ffed5f9c0f90b27659ca781c4759bcc8cd7d994336db4cb16" }, "downloads": -1, "filename": "hyperdock-0.13.1.tar.gz", "has_sig": false, "md5_digest": "55ef31621fb89a75231477c16dfc88b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20638, "upload_time": "2018-11-05T12:12:54", "url": "https://files.pythonhosted.org/packages/03/18/4f1ae8716d1996013f09800d15d52588c19abec9f632ab0f1fe74cbb6bcb/hyperdock-0.13.1.tar.gz" } ], "0.13.4": [ { "comment_text": "", "digests": { "md5": "da76025ea850959029f905377fe34c3c", "sha256": "a8105a8d1cc1a911815479d75a0b6b80415416045eafad19c611ee8d4f8b52b1" }, "downloads": -1, "filename": "hyperdock-0.13.4.tar.gz", "has_sig": false, "md5_digest": "da76025ea850959029f905377fe34c3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20630, "upload_time": "2018-11-05T12:37:19", "url": "https://files.pythonhosted.org/packages/20/13/ce9e552b234347168a0d1c83fe9483024e0533b26ea90866ed85e343dd92/hyperdock-0.13.4.tar.gz" } ], "0.13.5": [ { "comment_text": "", "digests": { "md5": "c46e7c68f682c21dc9204c235ab2d570", "sha256": "ac8d1c46610cf8e122846146f58426094e70114ab58e3d2222c3868182249af1" }, "downloads": -1, "filename": "hyperdock-0.13.5.tar.gz", "has_sig": false, "md5_digest": "c46e7c68f682c21dc9204c235ab2d570", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20638, "upload_time": "2018-11-05T12:50:18", "url": "https://files.pythonhosted.org/packages/db/1f/a8455adc7fb4d300b4a5d08551c8f2b55ca8d3937bdafe1d75b357a80faf/hyperdock-0.13.5.tar.gz" } ], "0.13.6": [ { "comment_text": "", "digests": { "md5": "949a7d2a7c25c44d8748e3d4db19fbeb", "sha256": "67c71b792ffff348c4eb14ec67097c9a4848f68e35388f6acb1913c51f3bf8a7" }, "downloads": -1, "filename": "hyperdock-0.13.6.tar.gz", "has_sig": false, "md5_digest": "949a7d2a7c25c44d8748e3d4db19fbeb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20621, "upload_time": "2018-11-05T13:52:42", "url": "https://files.pythonhosted.org/packages/fa/84/1f83139f254cde863ba6e38b538f2ef0c499fa57c02b8354717cb23088ff/hyperdock-0.13.6.tar.gz" } ], "0.13.7": [ { "comment_text": "", "digests": { "md5": "faa4d4e74b241c36c6f10915a918f9dc", "sha256": "e4a8348ee723171ea44bde5e411570be773c5e219e4d8ceed6c6c1e3cf248abd" }, "downloads": -1, "filename": "hyperdock-0.13.7.tar.gz", "has_sig": false, "md5_digest": "faa4d4e74b241c36c6f10915a918f9dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20628, "upload_time": "2018-11-05T14:02:18", "url": "https://files.pythonhosted.org/packages/33/90/03eb48b6ef57539dab436424ffaeeac3d2401e328c73be7508a9abfda9a3/hyperdock-0.13.7.tar.gz" } ], "0.13.8": [ { "comment_text": "", "digests": { "md5": "1f8296a87f3586e6b1a8c83dac34b23f", "sha256": "6c000a79a883f38a59a310a0c5b6bc963a2d023bf8f1297dd9c923e5b5ab45f6" }, "downloads": -1, "filename": "hyperdock-0.13.8.tar.gz", "has_sig": false, "md5_digest": "1f8296a87f3586e6b1a8c83dac34b23f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20800, "upload_time": "2018-11-06T13:55:35", "url": "https://files.pythonhosted.org/packages/76/9b/3589f5721e9310c947c3c13d646d5c878cc487b3eb336faa1802351806b7/hyperdock-0.13.8.tar.gz" } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "89176f8cf7c8cdca170015d9932b3d54", "sha256": "8abc5039fc945f5e739e6a2c562c67f0b5a3db64a29ac4b4d5c9d50d9ec13572" }, "downloads": -1, "filename": "hyperdock-0.14.0.tar.gz", "has_sig": false, "md5_digest": "89176f8cf7c8cdca170015d9932b3d54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20965, "upload_time": "2018-12-18T16:21:25", "url": "https://files.pythonhosted.org/packages/02/48/b7512db9314f79f8d61dd92f9b10260fbf316a7a80a4b31e87e85e1f9d1f/hyperdock-0.14.0.tar.gz" } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "b3249714e9f4184fdf83fc18ab1a9b05", "sha256": "8bf51be555a99f4ed849ec9f0b6197255619a167015f53c7d6caf09f5ef104a1" }, "downloads": -1, "filename": "hyperdock-0.14.1.tar.gz", "has_sig": false, "md5_digest": "b3249714e9f4184fdf83fc18ab1a9b05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20974, "upload_time": "2018-12-18T16:51:43", "url": "https://files.pythonhosted.org/packages/79/5e/fe616c5f8053eebeba1ca598b70ecf44e86a9a45566f94282c64ea00530b/hyperdock-0.14.1.tar.gz" } ], "0.14.2": [ { "comment_text": "", "digests": { "md5": "752a503d8ce00f9adeaee1493a593f4e", "sha256": "12a29f4eb07bf17ae5692f66dc66f626f976cd9665435a8596d7fcdb8ffd0617" }, "downloads": -1, "filename": "hyperdock-0.14.2.tar.gz", "has_sig": false, "md5_digest": "752a503d8ce00f9adeaee1493a593f4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20987, "upload_time": "2019-01-31T10:56:14", "url": "https://files.pythonhosted.org/packages/66/a1/82f87ad03c6b93a6bbf5a763312df0579d0f4a64f6dcfab571dd3622607d/hyperdock-0.14.2.tar.gz" } ], "0.14.3": [ { "comment_text": "", "digests": { "md5": "b7d768a4efded6c976fc7b869a89cbe9", "sha256": "95d01138e5d8c7a0df0c8f13b1c1daa2d06fd2785cfebdb062aaf472e92b1b8d" }, "downloads": -1, "filename": "hyperdock-0.14.3.tar.gz", "has_sig": false, "md5_digest": "b7d768a4efded6c976fc7b869a89cbe9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18602, "upload_time": "2019-02-06T13:58:03", "url": "https://files.pythonhosted.org/packages/e1/cd/78da2d85b0f8c5d9759063552135b8b390416f334ec457e73272eba01bc1/hyperdock-0.14.3.tar.gz" } ], "0.14.4": [ { "comment_text": "", "digests": { "md5": "cd57c7ab10329fefaafe68a098ef172d", "sha256": "113106eff63202ef9309ea6a12c5520583232fe993afa819dc506763da219b47" }, "downloads": -1, "filename": "hyperdock-0.14.4.tar.gz", "has_sig": false, "md5_digest": "cd57c7ab10329fefaafe68a098ef172d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18600, "upload_time": "2019-02-06T14:15:55", "url": "https://files.pythonhosted.org/packages/44/cb/e24ce67638f3779d278fe0579ee6c4fd03bef2f8fc206c782f9f7477c2a7/hyperdock-0.14.4.tar.gz" } ], "0.14.5": [ { "comment_text": "", "digests": { "md5": "c40ea8601a3c3c630936eb8c1fe47b16", "sha256": "649ada9a13d09200a37df326efcfc3f65a8e2569b0cb033743401a54c1dee083" }, "downloads": -1, "filename": "hyperdock-0.14.5.tar.gz", "has_sig": false, "md5_digest": "c40ea8601a3c3c630936eb8c1fe47b16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18607, "upload_time": "2019-02-06T14:29:04", "url": "https://files.pythonhosted.org/packages/ed/5a/0794721c7ee19275fbd6af90d7ee5900a91e33e6601527232d33ea6a23ac/hyperdock-0.14.5.tar.gz" } ], "0.14.6": [ { "comment_text": "", "digests": { "md5": "20198020d3079eeda3cd3b4b21ea8dbd", "sha256": "90acb69169203766a9354ecb6f5491b574c39005068c7231983bdfd444b2fb33" }, "downloads": -1, "filename": "hyperdock-0.14.6.tar.gz", "has_sig": false, "md5_digest": "20198020d3079eeda3cd3b4b21ea8dbd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21369, "upload_time": "2019-02-08T07:51:30", "url": "https://files.pythonhosted.org/packages/f0/4b/2b404b1c9655d3b3099e02d132a012f8c2a7225224b0f1d1df7eda1ff0cc/hyperdock-0.14.6.tar.gz" } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "6d96c5b07d6e3f07855e5ef53cca4143", "sha256": "41098e8e6a874ce4b99160a50ef802ac50544f99b50052d3a707b8a281e0ef57" }, "downloads": -1, "filename": "hyperdock-0.15.0.tar.gz", "has_sig": false, "md5_digest": "6d96c5b07d6e3f07855e5ef53cca4143", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21345, "upload_time": "2019-02-08T15:42:02", "url": "https://files.pythonhosted.org/packages/cf/8f/6dbeb8fda0a4e57f617da51b0b38c96bbe2d256d99eb8685577f090ea73e/hyperdock-0.15.0.tar.gz" } ], "0.15.1": [ { "comment_text": "", "digests": { "md5": "9bbd53292ab2cf149ec14dcf1f3bdaaa", "sha256": "095593c885926df51d2ad0cc98086f303016edf1b3d3683b38f04c2c741850bc" }, "downloads": -1, "filename": "hyperdock-0.15.1.tar.gz", "has_sig": false, "md5_digest": "9bbd53292ab2cf149ec14dcf1f3bdaaa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21347, "upload_time": "2019-02-11T09:56:18", "url": "https://files.pythonhosted.org/packages/60/21/bb2baf743f05c9ebf5d63e900daaa70a9607ebb9b852e8f6673aa3a45928/hyperdock-0.15.1.tar.gz" } ], "0.16.0": [ { "comment_text": "", "digests": { "md5": "5625b31534483bc5ad677f818c532339", "sha256": "535a0b426c2abc2c2fecb66abf07f5100ae5447ff9f75603d6a110f8c56636fd" }, "downloads": -1, "filename": "hyperdock-0.16.0.tar.gz", "has_sig": false, "md5_digest": "5625b31534483bc5ad677f818c532339", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23958, "upload_time": "2019-02-24T13:00:03", "url": "https://files.pythonhosted.org/packages/dd/00/c44a0f3365e875929ef249f662eb690636c03fe7586cb2371b47c05ea027/hyperdock-0.16.0.tar.gz" } ], "0.17.3": [ { "comment_text": "", "digests": { "md5": "7322d7c5e2db62ae1091254f0b845eb0", "sha256": "4358f74fb752a151c7f3db8a509d261a135710c5fee1f66eb5be477769525bbd" }, "downloads": -1, "filename": "hyperdock-0.17.3.tar.gz", "has_sig": false, "md5_digest": "7322d7c5e2db62ae1091254f0b845eb0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24771, "upload_time": "2019-02-25T09:56:40", "url": "https://files.pythonhosted.org/packages/c5/ea/36cf4856ebc78ee008bf0489685abe5b66eb1b28a1458a361ae0c66e6944/hyperdock-0.17.3.tar.gz" } ], "0.17.4": [ { "comment_text": "", "digests": { "md5": "9576d119127b57e152ec0a4072868be8", "sha256": "6c20b16743e953b66ab0b898fd25d7aecdf17cc8150bb40d57298cb2161024a5" }, "downloads": -1, "filename": "hyperdock-0.17.4.tar.gz", "has_sig": false, "md5_digest": "9576d119127b57e152ec0a4072868be8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24790, "upload_time": "2019-03-06T10:15:06", "url": "https://files.pythonhosted.org/packages/5b/0a/1a1fa8c4d8f19eddeed58d4d7a3cd3d0116f7f39ccbe2f4bd6b995abb355/hyperdock-0.17.4.tar.gz" } ], "0.17.5": [ { "comment_text": "", "digests": { "md5": "2d89b875aa6765c9a80dfa4d79388b96", "sha256": "3bf8841d69ca424d733903cb5bce128341deb23db254deb38a6ef1b1a1c44e16" }, "downloads": -1, "filename": "hyperdock-0.17.5.tar.gz", "has_sig": false, "md5_digest": "2d89b875aa6765c9a80dfa4d79388b96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25156, "upload_time": "2019-03-07T20:03:54", "url": "https://files.pythonhosted.org/packages/ac/58/727f4194fbac794d1deea0e955261f4d95b3eb916e40c5c92d2553cbf170/hyperdock-0.17.5.tar.gz" } ], "0.18.0": [ { "comment_text": "", "digests": { "md5": "4494e75b102c6ba42c4f4f18c4ebb26c", "sha256": "097a0678e90c1409947024dd20eeb4274567fde5f77e0d67f5a56546dce09a33" }, "downloads": -1, "filename": "hyperdock-0.18.0.tar.gz", "has_sig": false, "md5_digest": "4494e75b102c6ba42c4f4f18c4ebb26c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25719, "upload_time": "2019-04-05T12:08:09", "url": "https://files.pythonhosted.org/packages/38/6c/43fe7f91e1213571c207dfa685d792702bea4160bbb3c4a528a9d54c71b8/hyperdock-0.18.0.tar.gz" } ], "0.18.1": [ { "comment_text": "", "digests": { "md5": "94ff1d8e1956339ce832facce586ca74", "sha256": "a65af7716e2ef05b3d02dc3386dbd84b1cbcf153f13eb302d4be1b833acb73b8" }, "downloads": -1, "filename": "hyperdock-0.18.1.tar.gz", "has_sig": false, "md5_digest": "94ff1d8e1956339ce832facce586ca74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25720, "upload_time": "2019-04-05T12:49:59", "url": "https://files.pythonhosted.org/packages/42/ca/fe7089b8286f75ab53529650b7562c69ad25f7cd1c547f8d83a14a3632b0/hyperdock-0.18.1.tar.gz" } ], "0.18.2": [ { "comment_text": "", "digests": { "md5": "70ddadfea129611b4c4ccb5662d50099", "sha256": "65ec970becfd4039f0273a70d9424acad7c188733d9401d11a0c91ce07bcfc9e" }, "downloads": -1, "filename": "hyperdock-0.18.2.tar.gz", "has_sig": false, "md5_digest": "70ddadfea129611b4c4ccb5662d50099", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25720, "upload_time": "2019-04-05T13:17:27", "url": "https://files.pythonhosted.org/packages/f6/0e/f61be1b9690502020352efae64a6221cc43b6e5945926f08ded5a126fb03/hyperdock-0.18.2.tar.gz" } ], "0.18.3": [ { "comment_text": "", "digests": { "md5": "71df307b410d77eed98a6aef50237484", "sha256": "4713ea9e22b5add51475df76877b93ed42d954cd00fc1b4b097d13149f47b69c" }, "downloads": -1, "filename": "hyperdock-0.18.3.tar.gz", "has_sig": false, "md5_digest": "71df307b410d77eed98a6aef50237484", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25834, "upload_time": "2019-04-15T13:26:46", "url": "https://files.pythonhosted.org/packages/95/58/6cb7abd10aac0c63baa7476b686149ce11926c13d68e9bd2f7b5b80e15bf/hyperdock-0.18.3.tar.gz" } ], "0.19.1": [ { "comment_text": "", "digests": { "md5": "56d43e315265d24b0891ffff1aeac743", "sha256": "b4680af2a915df7850dc8dd81d72cd90e505272e3dd7ab04ff6be2ace4e5c05d" }, "downloads": -1, "filename": "hyperdock-0.19.1.tar.gz", "has_sig": false, "md5_digest": "56d43e315265d24b0891ffff1aeac743", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26972, "upload_time": "2019-07-08T16:00:52", "url": "https://files.pythonhosted.org/packages/e4/9a/64e282f2dabd6efaf9a44ccf0d2dda813455f2e61a84dfa8d64a80d68212/hyperdock-0.19.1.tar.gz" } ], "0.19.2": [ { "comment_text": "", "digests": { "md5": "60ff102ccab0ba6707ea57b2532e26e8", "sha256": "3ebbd9cbe8b488addd04d04b26efad33a28fe36d0fcbe7cb412b96b51a05be00" }, "downloads": -1, "filename": "hyperdock-0.19.2.tar.gz", "has_sig": false, "md5_digest": "60ff102ccab0ba6707ea57b2532e26e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26969, "upload_time": "2019-07-18T11:13:20", "url": "https://files.pythonhosted.org/packages/71/3b/53c028bc82a5b369071087ddb99551f42f9925a0a53c1d8dbc7598f1ed49/hyperdock-0.19.2.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "87ac2cc56f2a5f5d7c42ba286a908074", "sha256": "b42a99d6c936aea75cc063d5bbf37d9f9c771a594878ddb0d17c5b0d4615d8e3" }, "downloads": -1, "filename": "hyperdock-0.4.0.tar.gz", "has_sig": false, "md5_digest": "87ac2cc56f2a5f5d7c42ba286a908074", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11169, "upload_time": "2018-06-11T09:58:43", "url": "https://files.pythonhosted.org/packages/55/82/6d443af4dde0eb6c58ae8d45e119d8648aa9ff071c2a954115bfaf977ca4/hyperdock-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "16d5367397c6b03e718ac742dcc6dadd", "sha256": "05baea7542bb557667ebf210a1eeeee5d1d3956f1b4e8143b2d0161b7ccce9ca" }, "downloads": -1, "filename": "hyperdock-0.4.1.tar.gz", "has_sig": false, "md5_digest": "16d5367397c6b03e718ac742dcc6dadd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14131, "upload_time": "2018-06-11T10:05:47", "url": "https://files.pythonhosted.org/packages/6c/35/3f87ce8a772d9983f9edfac6e6460a36523bcf35373138476fbe651295c3/hyperdock-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "7bc6b321a3cf7c7750307f5ba51d41c4", "sha256": "006c032ec3a352778eb282c06f8dbc0be85200ecdaf1f6eb3cc8473e9530af46" }, "downloads": -1, "filename": "hyperdock-0.4.2.tar.gz", "has_sig": false, "md5_digest": "7bc6b321a3cf7c7750307f5ba51d41c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14955, "upload_time": "2018-06-12T09:08:31", "url": "https://files.pythonhosted.org/packages/ea/4b/84397c6a12dc9a74a35a47df30af81a8ec52a37bc6b8ffd2b17671cd615a/hyperdock-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "d910d0a6b1cf4dfb6c806ffb04b177f6", "sha256": "5cf8961e7ea03cebd5f0ec31e289615d7d950b75d3d3008c382e218a37988b99" }, "downloads": -1, "filename": "hyperdock-0.4.3.tar.gz", "has_sig": false, "md5_digest": "d910d0a6b1cf4dfb6c806ffb04b177f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15090, "upload_time": "2018-06-12T09:11:43", "url": "https://files.pythonhosted.org/packages/6d/58/b7f86bc3a7b685eed6f061da2181766ec44284b0d0f719fdc1f98e0628ef/hyperdock-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "b7f2a2c90e9988d38701c01efe80d521", "sha256": "a9a85f0aab3ef1bb1ad0615d0b286727e2fa2daa8525668e1204ae0a9c9ca8dc" }, "downloads": -1, "filename": "hyperdock-0.4.4.tar.gz", "has_sig": false, "md5_digest": "b7f2a2c90e9988d38701c01efe80d521", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15303, "upload_time": "2018-06-12T09:58:01", "url": "https://files.pythonhosted.org/packages/09/5c/18a6e213465c023153b65dbed6e1ee13e4dc167b720eeaade094c2de1ca4/hyperdock-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "12f9a8c9a3611a1063a6ba1b3639b45b", "sha256": "be7a8f3a9d4648bbfddb28381ccf66d589abcdd6665c6b74e08b3862edd92831" }, "downloads": -1, "filename": "hyperdock-0.4.5.tar.gz", "has_sig": false, "md5_digest": "12f9a8c9a3611a1063a6ba1b3639b45b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15380, "upload_time": "2018-06-12T11:18:57", "url": "https://files.pythonhosted.org/packages/cc/07/a6bca02afe76cfe354d436a230b179eb8570b660c7fdf1334b1733e76a9c/hyperdock-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "314626932012adcdb7963ce573e92a3e", "sha256": "6be4ad5c957a8e7725f6550aa6ea09bda3c16baa53b0e62611317ed0d8b174f7" }, "downloads": -1, "filename": "hyperdock-0.4.6.tar.gz", "has_sig": false, "md5_digest": "314626932012adcdb7963ce573e92a3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15062, "upload_time": "2018-06-13T07:59:24", "url": "https://files.pythonhosted.org/packages/60/d5/48f6d89cc4b7ec5ef4bc4f66e93d676c22f26ad2c10681771079e71574f7/hyperdock-0.4.6.tar.gz" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "fdf41f8760f0513f38469f9f93575111", "sha256": "fab62becbc8a0eadec1a4fb7b6c9830960a2e9e4cd1abbd1d1e8ae5e065c7ac9" }, "downloads": -1, "filename": "hyperdock-0.4.7.tar.gz", "has_sig": false, "md5_digest": "fdf41f8760f0513f38469f9f93575111", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15071, "upload_time": "2018-06-13T09:59:02", "url": "https://files.pythonhosted.org/packages/23/85/fb47d2e8fb95551f3e641fac094af15a2dbcfd0b00a927806df6e1364a55/hyperdock-0.4.7.tar.gz" } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "b97cafe715dae51b3b399b616ac7d70b", "sha256": "4b3cdca515abecdff938a83dd4015024a9bc7818c7e58a58bb8a3011dfa3d050" }, "downloads": -1, "filename": "hyperdock-0.4.8.tar.gz", "has_sig": false, "md5_digest": "b97cafe715dae51b3b399b616ac7d70b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15789, "upload_time": "2018-06-13T13:01:56", "url": "https://files.pythonhosted.org/packages/f0/0a/6b834a14a3981d4f30ff5f74f42685a35852123257c41886eb1749bbc96e/hyperdock-0.4.8.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "6bc8f045ad93c29c561d91f72b829d84", "sha256": "b6da20282f74001632549f58c365679116f67f23efd373d6c4c3ef1ad68fa069" }, "downloads": -1, "filename": "hyperdock-0.5.0.tar.gz", "has_sig": false, "md5_digest": "6bc8f045ad93c29c561d91f72b829d84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15794, "upload_time": "2018-06-13T13:41:03", "url": "https://files.pythonhosted.org/packages/bb/43/8400fd7534e7544595c3a73a00c8f3fb4d37da9369c4052fbb757a0e31e8/hyperdock-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "e6886650176b2ab04e66169d6b70078c", "sha256": "48d1346bb6aae244416ef996d713411447a68c4610c362198192a2d893193c34" }, "downloads": -1, "filename": "hyperdock-0.5.1.tar.gz", "has_sig": false, "md5_digest": "e6886650176b2ab04e66169d6b70078c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15804, "upload_time": "2018-06-13T14:01:05", "url": "https://files.pythonhosted.org/packages/f1/2a/629634ef921a83330e045abcbe84573e6c1ff3d42abd4ca699a0763062a4/hyperdock-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "bda04473aa2fef1a45dbc5d7a159ed1c", "sha256": "2f67d7563bde0d7a40efe7989c938b977d5cb7b45aef6d75814785b71e2487f8" }, "downloads": -1, "filename": "hyperdock-0.5.2.tar.gz", "has_sig": false, "md5_digest": "bda04473aa2fef1a45dbc5d7a159ed1c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15809, "upload_time": "2018-06-13T14:49:50", "url": "https://files.pythonhosted.org/packages/3e/ff/7c885e7ebc17c942592bc2a24c09395475bb4bdb584d09688f66886faaad/hyperdock-0.5.2.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "6a49d9427bfda34cef8e1147fd16a29b", "sha256": "779a6cf5cde321b4f27b4e398b2a1dd0cbe065bf7da63a9ff3bac9af8e1a28dd" }, "downloads": -1, "filename": "hyperdock-0.6.0.tar.gz", "has_sig": false, "md5_digest": "6a49d9427bfda34cef8e1147fd16a29b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15732, "upload_time": "2018-06-13T22:01:49", "url": "https://files.pythonhosted.org/packages/9d/fe/2e9dd263076da06cf0dc975221e62545d6ef8dde0616c904649c82d37492/hyperdock-0.6.0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "140ca3c4de5f1a15c13fbe3fda96ad77", "sha256": "95ca9739cadc2e9fadd191833155c67108c97c17087cff1b76d730df7f6eb39d" }, "downloads": -1, "filename": "hyperdock-0.7.0.tar.gz", "has_sig": false, "md5_digest": "140ca3c4de5f1a15c13fbe3fda96ad77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16862, "upload_time": "2018-07-02T08:54:41", "url": "https://files.pythonhosted.org/packages/21/2a/ae3b0c82338c70c0638398a1845f28542f97eb572120beb8e8c52d7cd300/hyperdock-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "a01f7ff05dd5988e1ea67bf19a16f374", "sha256": "69d4b1a4477ec6700c7d6260bf92398d9631080648e436afdce3146a83f6dfd6" }, "downloads": -1, "filename": "hyperdock-0.7.1.tar.gz", "has_sig": false, "md5_digest": "a01f7ff05dd5988e1ea67bf19a16f374", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16193, "upload_time": "2018-07-12T08:59:13", "url": "https://files.pythonhosted.org/packages/f7/61/48b13db2a23f5d2ea984e6960374431232752ab9eaa0d26140f2bbd61374/hyperdock-0.7.1.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "066be148f82ce408e2584c4ae5b53eaa", "sha256": "150ced8e69e7c2fb35fa2ac219a9d5e829d31a31d164270e0c96ed656d02e267" }, "downloads": -1, "filename": "hyperdock-0.8.0.tar.gz", "has_sig": false, "md5_digest": "066be148f82ce408e2584c4ae5b53eaa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16879, "upload_time": "2018-08-15T10:37:16", "url": "https://files.pythonhosted.org/packages/1a/7d/bac281106d680ab66583a6d74a1666a148784f5ab94c17e439a74b4d3cad/hyperdock-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "4e38554105387fe0039094013980b566", "sha256": "a610c96e9b0e0de6047ac1114b7a609b05809f946340cf99fde5623a5cc2a466" }, "downloads": -1, "filename": "hyperdock-0.8.1.tar.gz", "has_sig": false, "md5_digest": "4e38554105387fe0039094013980b566", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16881, "upload_time": "2018-08-15T11:33:53", "url": "https://files.pythonhosted.org/packages/a9/bb/549660dab09a0976cd6445efa06eaaaf1b578737658f7f81cac6f6f39eb5/hyperdock-0.8.1.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "b928c59c902201cccd94dee0e728524c", "sha256": "d1c70415f7047d6e79e5b14cd5ba80388b9456931acdc3e9f7d046570f55e758" }, "downloads": -1, "filename": "hyperdock-0.9.0.tar.gz", "has_sig": false, "md5_digest": "b928c59c902201cccd94dee0e728524c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17482, "upload_time": "2018-09-07T13:45:06", "url": "https://files.pythonhosted.org/packages/2c/64/a48729bdd6766ebe08e4cae77fda5652533fafe3167735df17c8dc635488/hyperdock-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "3c2c2858b928a5be447bfe70cafd53f8", "sha256": "57899cc6782a7f2436e131da7af5c277d7ef478fc4dc6fc7954c281a8d411e6b" }, "downloads": -1, "filename": "hyperdock-0.9.1.tar.gz", "has_sig": false, "md5_digest": "3c2c2858b928a5be447bfe70cafd53f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17501, "upload_time": "2018-09-07T14:02:12", "url": "https://files.pythonhosted.org/packages/7b/f0/a92f8d97c743d70af1bec8eceed87c3887d9e19aa2e88f43593cd351d327/hyperdock-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "e05d47e4a2726f5ff7610261e7638005", "sha256": "8c32dba2de68a90bc97ff074640c1f1961908f89a04057068e46597224937346" }, "downloads": -1, "filename": "hyperdock-0.9.2.tar.gz", "has_sig": false, "md5_digest": "e05d47e4a2726f5ff7610261e7638005", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17507, "upload_time": "2018-09-07T14:14:47", "url": "https://files.pythonhosted.org/packages/1b/54/d070997871692b008ee8d01e736b618d8108fb66fa040f3ec931fa627964/hyperdock-0.9.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "60ff102ccab0ba6707ea57b2532e26e8", "sha256": "3ebbd9cbe8b488addd04d04b26efad33a28fe36d0fcbe7cb412b96b51a05be00" }, "downloads": -1, "filename": "hyperdock-0.19.2.tar.gz", "has_sig": false, "md5_digest": "60ff102ccab0ba6707ea57b2532e26e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26969, "upload_time": "2019-07-18T11:13:20", "url": "https://files.pythonhosted.org/packages/71/3b/53c028bc82a5b369071087ddb99551f42f9925a0a53c1d8dbc7598f1ed49/hyperdock-0.19.2.tar.gz" } ] }