{ "info": { "author": "Graham Williams", "author_email": "mlhub@togaware.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3" ], "description": "The Machine Learning Hub\n========================\n\n**UNDER DEVELOPMENT**\n\n[![Downloads](https://pepy.tech/badge/mlhub)](https://pepy.tech/project/mlhub)\n[![Downloads](https://pepy.tech/badge/mlhub/month)](https://pepy.tech/project/mlhub)\n[![Downloads](https://pepy.tech/badge/mlhub/week)](https://pepy.tech/project/mlhub)\n\nIntroduction\n------------\n\nThe [machine learning hub](https://mlhub.ai) is an open source project\nhosted on [github](https://github.com/mlhubber/mlhub) aimed at easily\nsharing [pre-built machine learning\nmodels](https://github.com/mlhubber/mlmodels). The models are accessed\nand managed using the *ml* command from the *mlhub* package designed\nto install the model and run a demonstration within 5 minutes. Each\nmodel has been tested on Ubuntu (GNU/Linux).\n\nVisit the [repository index](https://mlhub.ai/Packages.html) on\n[mlhub.ai](https://mlhub.ai/) where the models themselves can be browsed.\n\nQuick Start\n-----------\n\nThe command line interface can be installed using\n[PyPi](https://pypi.org/project/mlhub/):\n\n $ pip3 install mlhub\n\nOnce installed you will be able to run the sample \\'rain\\' model\nassuming that you have the free and open source [R statistical software\npackage](https://cran.r-project.org) installed. The TL;DR version is\nbelow. Note that you type the command `ml ...` and that everything from\nthe `#` to the end of the line is ignored (it\\'s a comment):\n\n $ ml install rain # Install the model named 'rain'.\n $ ml demo rain # Run the demonstration of the model\n $ ml display rain # Graphical display of pre-built model.\n\nThe following commands are available and below is a brief description of\neach command:\n\n $ ml # Show a usage message.\n $ ml available # List of pre-buld models on the MLHub.\n $ ml installed # List of pre-built models installed locally\n $ ml install rain # Install the model named 'rain'.\n $ ml readme rain # View background information about the model.\n $ ml configure rain # Install required dependencies.\n $ ml commands rain # List of commands supported by the model.\n $ ml demo rain # Run the demonstration of the model\n $ ml print rain # Textual summary of the model.\n $ ml display rain # Graphical display of pre-built model.\n $ ml score rain # Run model on your own data.\n\nDifferent model packages will have different dependencies and these will\nbe installed by the *configure* command.\n\nQuick Start: Azure DSVM\n-----------------------\n\nA particularly attractive and simple way to get started with exploring\nthe mlhub functionality is to fire up a [Ubuntu Data Science Virtual\nMachine](https://aka.ms/dsvm) (DSVM) on Azure for as little as USD10 per\nmonth for quite a small server or USD90 for a reasonable one. You can\nget free credit (USD200) from Microsoft to [trial the\nDSVM](https://aka.ms/free).\n\nUsing this virtual machine will save a lot of time compared with setting\nup your own machine with the required dependencies, which of course you\ncan do if you wish as all the dependencies are open source.\n\nTo set up the virtual machine, with an Azure subscription log in to the\n[portal](https://portal.azure.com/) and add a new Data Science Virtual\nMachine for Linux (Ubuntu). You need to provide a name (for the virtual\nmachine), a user name and a password, and then create a new resource\ngroup and give it a name, and finally choose a location. Go with all the\ndefaults for everything else, except choose a size to suit the budget\n(B1s is cheap though a D2s is a better interactive experience). Note\nthat you are only charged whilst the machine is fired up so USD90 per\nmonth is no where near what you will spend if you only fire up the\nserver when you need.\n\nOnce the DSVM is set up go to its Overview page and click on DNS name\nConfigure and provide a name by which to refer to the server publicly\n(e.g., myml.westus2.cloudapp.azure.com).\n\nWe now have a server ready to showcase the pre-built Machine Learning\nmodels. There are several options to connect to the server but a\nrecommended one is to use [X2Go](https://x2go.org/) which supports\nLinux, Windows, and Mac. Install it and point it to your server (e.g.,\nmyml.westus2.cloudapp.azure.com) in the setup.\n\nConnect to the DSVM. Close the Firefox window that pops up. Click on the\nterminal icon down the bottom, and you are ready to go:\n\n $ pip install mlhub\n $ ml\n $ ml available\n\netc.\n\nPre-Built Model Archives\n------------------------\n\nA model is a zip file archived as .mlm files and hosted in a repository.\nThe public repository is [mlhub.ai](https://mlhub.ai/). The *ml* command\ncan install the pre-built model locally, ready to run a demo, to print\nand display the model, and to score new data using the model. Some\nmodels provide ability to retrain the model with user provided data.\n\nContributing Models to ML Hub\n-----------------------------\n\nAnyone is welcome to contribute a pre-built model package to ML Hub.\nPlease submit a pull request through\n[github](https://github.com/mlhubber).\n\nInstalling Pip3\n---------------\n\nOn Ubuntu this is as simple as:\n\n $ sudo apt install python3-pip\n\nAlternative pip Install\n-----------------------\n\nDepending on your setup of pip, you may need to use:\n\n $ pip3 install mlhub\n\nThe executable may be placed into `~/.local/bin` which will need to be\non your path. Edit your shell startup which is either `.profile` or\n`.bashrc`, etc:\n\n PATH=\"$HOME/.local/bin:$PATH\"\n\nAlternative Install\n-------------------\n\nA tar.gz containing the mlhub package and the command line interface\nis available as\n[mlhub_1.6.7.tar.gz](https://mlhub.ai/dist/mlhub_1.6.7.tar.gz) within\nthe [distribution folder](https://mlhub.ai/dist/) of the MLHub.\n\nTo install from the tar.gz file:\n\n $ wget https://mlhub.ai/dist/mlhub_1.6.7.tar.gz\n $ pip install mlhub_1.6.7.tar.gz\n $ ml\n\nOr extract the above downloaded .tar.gz and install:\n\n $ wget https://mlhub.ai/dist/mlhub_1.6.7.tar.gz\n $ tar xvf mlhub_1.6.7.tar.gz\n $ cd mlhub\n $ python3 setup.py install --user\n\nContributions\n-------------\n\nThe open source mlhub command line tool (ml) and sample models are being\nhosted on [github](https://github.com/mlhubber) and contributions to\nboth the command line tool and contributions of new open source\npre-built machine learning models are most welcome. Feel free to submit\npull requests.\n\nMetrics\n-------\n\nMLHub PyPI download statistics: https://pepy.tech/project/mlhub\n\n[![Downloads](https://pepy.tech/badge/mlhub)](https://pepy.tech/project/mlhub)\n[![Downloads](https://pepy.tech/badge/mlhub/month)](https://pepy.tech/project/mlhub)\n[![Downloads](https://pepy.tech/badge/mlhub/week)](https://pepy.tech/project/mlhub)\n\nMLHub Dev PyPI download statistics: https://pepy.tech/project/mlhubdev\n\n[![Downloads](https://pepy.tech/badge/mlhubdev)](https://pepy.tech/project/mlhubdev)\n[![Downloads](https://pepy.tech/badge/mlhubdev/month)](https://pepy.tech/project/mlhubdev)\n[![Downloads](https://pepy.tech/badge/mlhubdev/week)](https://pepy.tech/project/mlhubdev)", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://mlhub.ai", "keywords": "machine learning models repository", "license": "", "maintainer": "", "maintainer_email": "", "name": "mlhubdev", "package_url": "https://pypi.org/project/mlhubdev/", "platform": "", "project_url": "https://pypi.org/project/mlhubdev/", "project_urls": { "Homepage": "https://mlhub.ai" }, "release_url": "https://pypi.org/project/mlhubdev/3.4.0/", "requires_dist": null, "requires_python": "", "summary": "Machine learning model repository manager", "version": "3.4.0" }, "last_serial": 5140226, "releases": { "3.1.0": [ { "comment_text": "", "digests": { "md5": "31676d91e18da8566229b9575df82e68", "sha256": "b74257c6b845e81c39f1666568788868ff77fa5d74dd3826f471083f42155824" }, "downloads": -1, "filename": "mlhubdev-3.1.0.tar.gz", "has_sig": false, "md5_digest": "31676d91e18da8566229b9575df82e68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35917, "upload_time": "2019-01-10T00:17:29", "url": "https://files.pythonhosted.org/packages/5e/64/c09f8dc32ac6fd8dd7621f6484b6a09c6c2f0793e828660a739eb72a0056/mlhubdev-3.1.0.tar.gz" } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "4224ff8fcc558b8a1f551ca9d81ed6b1", "sha256": "681456b11d3b6114fac2b61e891a565c178fbfb745818d3c43404bab5495749c" }, "downloads": -1, "filename": "mlhubdev-3.1.1.tar.gz", "has_sig": false, "md5_digest": "4224ff8fcc558b8a1f551ca9d81ed6b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36063, "upload_time": "2019-01-10T03:59:56", "url": "https://files.pythonhosted.org/packages/d4/52/235c77fc1ab8a3678386a1c7b973037b478e829648febc5119f8ca869009/mlhubdev-3.1.1.tar.gz" } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "455bfa562cd51b0a5febbc06c9132bc7", "sha256": "2c47a0c68ef4dea30cef96258f1413076cdc3996c0e5d1163d2130b92a6fb4d0" }, "downloads": -1, "filename": "mlhubdev-3.1.2.tar.gz", "has_sig": false, "md5_digest": "455bfa562cd51b0a5febbc06c9132bc7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36199, "upload_time": "2019-01-11T02:18:57", "url": "https://files.pythonhosted.org/packages/ad/24/0d61b70024c6bc9a468a153ff5e4c132a0f807f619a70af537255ab347d6/mlhubdev-3.1.2.tar.gz" } ], "3.1.3": [ { "comment_text": "", "digests": { "md5": "2e3c5e70668b63ecf18dcb9b23074f50", "sha256": "8902149ea3cf6bdb9a48eb3f246a82708933d256d687f5b9628e084ea16b12db" }, "downloads": -1, "filename": "mlhubdev-3.1.3.tar.gz", "has_sig": false, "md5_digest": "2e3c5e70668b63ecf18dcb9b23074f50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37457, "upload_time": "2019-01-16T00:28:50", "url": "https://files.pythonhosted.org/packages/46/16/23ef2a37e78389bb408a3a71948a82a227605954dad48b1d93c379b9e125/mlhubdev-3.1.3.tar.gz" } ], "3.1.4": [ { "comment_text": "", "digests": { "md5": "3a9435301655edec0df3d15b4fa1c822", "sha256": "97f044e3d56f717cbfa0e53c4e391e6987bebe955504aa095367fe4ed2f85126" }, "downloads": -1, "filename": "mlhubdev-3.1.4.tar.gz", "has_sig": false, "md5_digest": "3a9435301655edec0df3d15b4fa1c822", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37436, "upload_time": "2019-01-16T08:59:23", "url": "https://files.pythonhosted.org/packages/9d/96/284c80d2ec3813a8919e821ceedb656d8e5a56a30f5baee7b1a6fbb682d3/mlhubdev-3.1.4.tar.gz" } ], "3.1.5": [ { "comment_text": "", "digests": { "md5": "3352d74a76cd9de7638cda53ead70a46", "sha256": "aae7db6e40f6445647008f68d4a3ad76a985fe95380f9a7eb5f8965e3ce7f1bc" }, "downloads": -1, "filename": "mlhubdev-3.1.5.tar.gz", "has_sig": false, "md5_digest": "3352d74a76cd9de7638cda53ead70a46", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40590, "upload_time": "2019-01-22T08:35:35", "url": "https://files.pythonhosted.org/packages/2e/13/bc85baffd6860c6d4e6d44bdfb3a8f0d0407a085c25b801bfb439cc82374/mlhubdev-3.1.5.tar.gz" } ], "3.1.6": [ { "comment_text": "", "digests": { "md5": "11c60f2ae69dbe1da2ee12dc60240026", "sha256": "d572f7a8394500002281146f0f8fb9fddc325c000a1acc6c5d1b991e72fd83e5" }, "downloads": -1, "filename": "mlhubdev-3.1.6.tar.gz", "has_sig": false, "md5_digest": "11c60f2ae69dbe1da2ee12dc60240026", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40685, "upload_time": "2019-01-22T09:24:43", "url": "https://files.pythonhosted.org/packages/69/8c/53bcec9f9650c88a175f74c7a068ee90d3b6030bfc90d8dae816a14a2ed6/mlhubdev-3.1.6.tar.gz" } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "417cc4740bd9855cb8ff34aaa660ae37", "sha256": "fa8bab30edddf6e02dcb6614104043fa0d1150231f41000c4e8a10974d0392e6" }, "downloads": -1, "filename": "mlhubdev-3.2.0.tar.gz", "has_sig": false, "md5_digest": "417cc4740bd9855cb8ff34aaa660ae37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42358, "upload_time": "2019-03-19T07:28:09", "url": "https://files.pythonhosted.org/packages/02/33/f296b233f6cf9ccd7b20e54479ba36408ce212b67f2e84a42afa8e701205/mlhubdev-3.2.0.tar.gz" } ], "3.2.1": [ { "comment_text": "", "digests": { "md5": "e9872edd13d7f03bd0a513fdd97ae19e", "sha256": "379ed03dd281303d04449c8d8733a049cc7b13ef93bee36ac49bcc3d77929941" }, "downloads": -1, "filename": "mlhubdev-3.2.1.tar.gz", "has_sig": false, "md5_digest": "e9872edd13d7f03bd0a513fdd97ae19e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42364, "upload_time": "2019-03-19T08:12:32", "url": "https://files.pythonhosted.org/packages/e0/66/6e9f18691db111d06c7ca1696e0acc1a1f259650a34a17bb83f15ba09648/mlhubdev-3.2.1.tar.gz" } ], "3.2.2": [ { "comment_text": "", "digests": { "md5": "006201bac38f5445945510d0210939d3", "sha256": "b57eb04a79d32560beedec3a479db0c8d08cb7881a93722086a41cf14ed44889" }, "downloads": -1, "filename": "mlhubdev-3.2.2.tar.gz", "has_sig": false, "md5_digest": "006201bac38f5445945510d0210939d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42706, "upload_time": "2019-03-19T09:35:23", "url": "https://files.pythonhosted.org/packages/8e/16/1fb21a7434ddf8a954cfa409cda58e063fe6c7b7a82471165ab1a968f1ee/mlhubdev-3.2.2.tar.gz" } ], "3.2.3": [ { "comment_text": "", "digests": { "md5": "015e16290e55d8d9503b8a249e4154c5", "sha256": "1391c9247d892fa3833195d030fc55469ce388e9037ac3600c6764b652640fd7" }, "downloads": -1, "filename": "mlhubdev-3.2.3.tar.gz", "has_sig": false, "md5_digest": "015e16290e55d8d9503b8a249e4154c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42723, "upload_time": "2019-03-21T02:32:17", "url": "https://files.pythonhosted.org/packages/5e/28/d37cbe93c997166968212ab665736544c76e5f62caab2141a24ef0aca44c/mlhubdev-3.2.3.tar.gz" } ], "3.2.4": [ { "comment_text": "", "digests": { "md5": "2886224d99f643f8ab4e2febc9bd8ff3", "sha256": "86a807dcacf79894bc2c02c11a9135ad08c4c2da3e78ca03f47026eedf34e88f" }, "downloads": -1, "filename": "mlhubdev-3.2.4.tar.gz", "has_sig": false, "md5_digest": "2886224d99f643f8ab4e2febc9bd8ff3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42751, "upload_time": "2019-03-21T03:34:50", "url": "https://files.pythonhosted.org/packages/bd/c0/d7a5e43900a531779ad19e630a54a9af0d7ee9d81629243d8247eb7e025e/mlhubdev-3.2.4.tar.gz" } ], "3.2.5": [ { "comment_text": "", "digests": { "md5": "4e018cc6152d1a089a8393c1a4cb5918", "sha256": "990743d146cbf0a97fa5e5293970eb9de8b7080d06796afd4b0df3d0dbc94c3b" }, "downloads": -1, "filename": "mlhubdev-3.2.5.tar.gz", "has_sig": false, "md5_digest": "4e018cc6152d1a089a8393c1a4cb5918", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42867, "upload_time": "2019-03-21T04:51:20", "url": "https://files.pythonhosted.org/packages/72/19/cfd1b5977101a88b63049a1b7c9b885fbf655efaac5771701d72b0939f57/mlhubdev-3.2.5.tar.gz" } ], "3.2.6": [ { "comment_text": "", "digests": { "md5": "c365f2cb2278c890f3bf65b6f949126e", "sha256": "500be8aabfde52cf8d9e7835c65a6f45f7f095aaa58d116f0b6dbd7ce45b1ebb" }, "downloads": -1, "filename": "mlhubdev-3.2.6.tar.gz", "has_sig": false, "md5_digest": "c365f2cb2278c890f3bf65b6f949126e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42890, "upload_time": "2019-03-21T06:22:54", "url": "https://files.pythonhosted.org/packages/04/6f/125cdbb7a10b5e18a26a3ef23d96e83a3775b99c22fa7978b41dfabdedf6/mlhubdev-3.2.6.tar.gz" } ], "3.2.7": [ { "comment_text": "", "digests": { "md5": "2463cdde4901d0b2d9f52bf98b8dc05d", "sha256": "3ac00dfa54a70bbbc0c62f90deb2adaf44546e0421cb7131af4d39d75ad127fb" }, "downloads": -1, "filename": "mlhubdev-3.2.7.tar.gz", "has_sig": false, "md5_digest": "2463cdde4901d0b2d9f52bf98b8dc05d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42939, "upload_time": "2019-03-22T05:50:13", "url": "https://files.pythonhosted.org/packages/4e/07/3339a8f3819980b707060e19657322d37fbba3c41558634322b9e003be7d/mlhubdev-3.2.7.tar.gz" } ], "3.3.0": [ { "comment_text": "", "digests": { "md5": "feb144153618f18f4505fc968ec558e9", "sha256": "beb4cd56825b078bbd671716da89d451f82abd83f0a6d6441301fa346c5869bb" }, "downloads": -1, "filename": "mlhubdev-3.3.0.tar.gz", "has_sig": false, "md5_digest": "feb144153618f18f4505fc968ec558e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42916, "upload_time": "2019-03-23T08:33:24", "url": "https://files.pythonhosted.org/packages/ae/21/308b576beb5cacb39dbfb43b447baa0dc27f46569b57f8744d9b254478c6/mlhubdev-3.3.0.tar.gz" } ], "3.3.1": [ { "comment_text": "", "digests": { "md5": "55ad489c45e140d872e9769c86f4bd3c", "sha256": "5e11a210f62da831d70a53a3ba0e3b6569a079c90c4b2044c9b93bdb44ca0b20" }, "downloads": -1, "filename": "mlhubdev-3.3.1.tar.gz", "has_sig": false, "md5_digest": "55ad489c45e140d872e9769c86f4bd3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43433, "upload_time": "2019-03-26T04:38:21", "url": "https://files.pythonhosted.org/packages/6c/c8/429d71d181cda5735b3bbff01ab5bcfdbe4ee57c7b8c833226f41bfd4ced/mlhubdev-3.3.1.tar.gz" } ], "3.3.2": [ { "comment_text": "", "digests": { "md5": "d21e87a5e212ec95ed3fc42429b1a0fd", "sha256": "3da5c009d8f26962e4dbbaa7c932c0ac8be1463e9c99dbcef71d555f41bf0530" }, "downloads": -1, "filename": "mlhubdev-3.3.2.tar.gz", "has_sig": false, "md5_digest": "d21e87a5e212ec95ed3fc42429b1a0fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43658, "upload_time": "2019-03-26T07:58:50", "url": "https://files.pythonhosted.org/packages/b3/88/41a0331231856b7c5e50dc230b72469c31c4afe246898034dad9163717cb/mlhubdev-3.3.2.tar.gz" } ], "3.3.3": [ { "comment_text": "", "digests": { "md5": "dceb237f1523d9110198075c9f0f75c8", "sha256": "db2ee659ec9f3f422ae2a1459781e3985fbaad3c98986cb315354d4b4b68b161" }, "downloads": -1, "filename": "mlhubdev-3.3.3.tar.gz", "has_sig": false, "md5_digest": "dceb237f1523d9110198075c9f0f75c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43702, "upload_time": "2019-03-26T10:12:25", "url": "https://files.pythonhosted.org/packages/d5/65/18c0b0a933104f157d284de2f9b0dd64d93622d7b2db07274dcb3374192f/mlhubdev-3.3.3.tar.gz" } ], "3.3.4": [ { "comment_text": "", "digests": { "md5": "41a50766ac7e2b6d94663afc905eaf1d", "sha256": "c2fddcd9a3c25f672e653cb7d355b51d1a42ddea6d08b19122d81973d49915f8" }, "downloads": -1, "filename": "mlhubdev-3.3.4.tar.gz", "has_sig": false, "md5_digest": "41a50766ac7e2b6d94663afc905eaf1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43930, "upload_time": "2019-03-27T02:13:14", "url": "https://files.pythonhosted.org/packages/b0/ee/41df741ec9aea233a67ca5c9f669312fde077b8bdf3ef1712041a7346b1e/mlhubdev-3.3.4.tar.gz" } ], "3.3.5": [ { "comment_text": "", "digests": { "md5": "01ea8724d1b73f62e9cf93cd5ff1e69f", "sha256": "f2cefeb957369d590d300fe76ca90b2a107dee7e68ef2e1a4dc8bcf70e2279a0" }, "downloads": -1, "filename": "mlhubdev-3.3.5.tar.gz", "has_sig": false, "md5_digest": "01ea8724d1b73f62e9cf93cd5ff1e69f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45760, "upload_time": "2019-03-29T12:39:27", "url": "https://files.pythonhosted.org/packages/13/33/48c2f35a2c8aa2c16ff1b21a56b19cb56896276f6afe501f8a63c19a2102/mlhubdev-3.3.5.tar.gz" } ], "3.3.6": [ { "comment_text": "", "digests": { "md5": "76f92b58c6086cff5777805ded112332", "sha256": "7f381a931919c649d51ac9048102f2851257c302b24487126dcca2e7a208f30e" }, "downloads": -1, "filename": "mlhubdev-3.3.6.tar.gz", "has_sig": false, "md5_digest": "76f92b58c6086cff5777805ded112332", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45784, "upload_time": "2019-04-04T01:57:23", "url": "https://files.pythonhosted.org/packages/bf/3a/92bfeee798ed472d279899500e386f3a44f18c986d1b7e3a4c94be366a85/mlhubdev-3.3.6.tar.gz" } ], "3.4.0": [ { "comment_text": "", "digests": { "md5": "c2a98afa8451c77bc0da5938e58cc548", "sha256": "f8716f1adcf5f02c7ad2880d0fb5039b9b37e339115d5765cd761cd302c63c49" }, "downloads": -1, "filename": "mlhubdev-3.4.0.tar.gz", "has_sig": false, "md5_digest": "c2a98afa8451c77bc0da5938e58cc548", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47503, "upload_time": "2019-04-14T08:46:06", "url": "https://files.pythonhosted.org/packages/72/1f/878ecf041446d6f862ad233d94fbeabe33f42c5341f6c771175a379d8b8b/mlhubdev-3.4.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c2a98afa8451c77bc0da5938e58cc548", "sha256": "f8716f1adcf5f02c7ad2880d0fb5039b9b37e339115d5765cd761cd302c63c49" }, "downloads": -1, "filename": "mlhubdev-3.4.0.tar.gz", "has_sig": false, "md5_digest": "c2a98afa8451c77bc0da5938e58cc548", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47503, "upload_time": "2019-04-14T08:46:06", "url": "https://files.pythonhosted.org/packages/72/1f/878ecf041446d6f862ad233d94fbeabe33f42c5341f6c771175a379d8b8b/mlhubdev-3.4.0.tar.gz" } ] }