{ "info": { "author": "MIT Data To AI Lab", "author_email": "dailabmit@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9" ], "description": "

\n \n \"DAI-Lab\"\n \n An Open Source Project from the Data to AI Lab, at MIT\n

\n\n[![Development Status](https://img.shields.io/badge/Development%20Status-2%20--%20Pre--Alpha-yellow)](https://pypi.org/search/?c=Development+Status+%3A%3A+2+-+Pre-Alpha)\n[![PyPi Shield](https://img.shields.io/pypi/v/ml-stars.svg)](https://pypi.python.org/pypi/ml-stars)\n[![Tests](https://github.com/sintel-dev/ml-stars/workflows/Run%20Tests/badge.svg)](https://github.com/sintel-dev/ml-stars/actions?query=workflow%3A%22Run+Tests%22+branch%3Amaster)\n[![Downloads](https://pepy.tech/badge/ml-stars)](https://pepy.tech/project/ml-stars)\n[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/MLBazaar/MLBlocks/master?filepath=examples/tutorials)\n\n# ml-stars\n\nPrimitives for machine learning and time series.\n\n* Github: https://github.com/sintel-dev/ml-stars\n* License: [MIT](https://github.com/sintel-dev/ml-stars/blob/master/LICENSE)\n* Development Status: [Pre-Alpha](https://pypi.org/search/?c=Development+Status+%3A%3A+2+-+Pre-Alpha)\n\n# Overview\n\nThis repository contains primitive annotations to be used by the MLBlocks library, as well as\nthe necessary Python code to make some of them fully compatible with the MLBlocks API requirements.\n\nThere is also a collection of custom primitives contributed directly to this library, which either\ncombine third party tools or implement new functionalities from scratch.\n\n# Installation\n\n## Requirements\n\n**ml-stars** has been developed and tested on [Python 3.8, 3.9, 3.10, and 3.11](https://www.python.org/downloads/)\n\nAlso, although it is not strictly required, the usage of a\n[virtualenv](https://virtualenv.pypa.io/en/latest/) is highly recommended in order to avoid\ninterfering with other software installed in the system where **ml-stars** is run.\n\n## Install with pip\n\nThe easiest and recommended way to install **ml-stars** is using [pip](https://pip.pypa.io/en/stable/):\n\n```bash\npip install ml-stars\n```\n\nThis will pull and install the latest stable release from [PyPi](https://pypi.org/).\n\nIf you want to install from source or contribute to the project please read the\n[Contributing Guide](https://github.com/sintel-dev/ml-stars/blob/master/CONTRIBUTING.rst).\n\n# Quickstart\n\nThis section is a short series of tutorials to help you getting started with ml-stars.\n\nWe will be executing a single primitive for data transformation.\n\n### 1. Load a Primitive\n\nThe first step in order to run a primitive is to load it.\n\nThis will be done using the `mlstars.load_primitive` function, which will\nload the indicated primitive as an [MLBlock Object from MLBlocks](https://MLBazaar.github.io/MLBlocks/api/mlblocks.html#mlblocks.MLBlock)\n\nIn this case, we will load the `sklearn.preprocessing.MinMaxScaler` primitive.\n\n```python3\nfrom mlstars import load_primitive\n\nprimitive = load_primitive('sklearn.preprocessing.MinMaxScaler')\n```\n\n### 2. Load some data\n\nThe StandardScaler is a transformation primitive which scales your data into a given range.\n\nTo use this primtives, we generate a synthetic data with some numeric values.\n```python3\nimport numpy as np\n\ndata = np.array([10, 1, 3, -1, 5, 6, 0, 4, 13, 4]).reshape(-1, 1)\n```\n\nThe `data` is a list of integers where their original range is between [-1, 13].\n\n\n### 3. Fit the primitive\n\nIn order to run our primitive, we first need to fit it.\n\nThis is the process where it analyzes the data to detect what is the original range of the data.\n\nThis is done by calling its `fit` method and passing the `data` as `X`.\n\n```python3\nprimitive.fit(X=data)\n```\n\n### 4. Produce results\n\nOnce the pipeline is fit, we can process the data by calling the `produce` method of the\nprimitive instance and passing agin the `data` as `X`.\n\n```python3\ntransformed = primitive.produce(X=data)\ntransformed\n```\n\nAfter this is done, we can see how the transformed data contains the transformed values:\n\n```\narray([[0.78571429],\n [0.14285714],\n [0.28571429],\n [0. ],\n [0.42857143],\n [0.5 ],\n [0.07142857],\n [0.35714286],\n [1. ],\n [0.35714286]])\n```\n\nThe data is now in [0, 1] range.\n\n## What's Next?\n\nDocumentation\n\n\n# History\n\n## 0.2.0 \u2013 2023-10-24\n\n* Upgrade python tests & remove python 3.7 [Issue #11](https://github.com/sintel-dev/ml-stars/issues/11) - by @sarahmish\n* Add deprecation warning for old ARIMA primitive [Issue #10](https://github.com/sintel-dev/ml-stars/issues/10) - by @sarahmish\n* Remove python 3.6 [Issue #9](https://github.com/sintel-dev/ml-stars/issues/9) - by @sarahmish\n* Add support for python 3.10 & 3.11 [Issue #8](https://github.com/sintel-dev/ml-stars/issues/8) - by @sarahmish\n\n\n## 0.1.3 \u2013 2023-09-25\n\n* Update ``keras`` adapter [Issue #7](https://github.com/sintel-dev/ml-stars/issues/7) - by @sarahmish\n\n\n## 0.1.2 \u2013 2023-08-04\n\n* Add python 3.9 [Issue #6](https://github.com/sintel-dev/ml-stars/issues/6) - by @sarahmish\n\n\n## 0.1.1 - 2023-05-17\n\n* Fix ARIMA adapter [Issue #5](https://github.com/sintel-dev/ml-stars/issues/5) - by @sarahmish\n* Add Documentation [Issue #4](https://github.com/sintel-dev/ml-stars/issues/4) - by @sarahmish\n\n\n## 0.1.0 - 2023-04-18\n\nFirst official ml-stars release to PyPI: https://pypi.org/project/ml-stars/\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "dynamic": null, "home_page": "https://github.com/sintel-dev/ml-stars", "keywords": "mlstars", "license": "MIT license", "maintainer": "", "maintainer_email": "", "name": "ml-stars", "package_url": "https://pypi.org/project/ml-stars/", "platform": null, "project_url": "https://pypi.org/project/ml-stars/", "project_urls": { "Homepage": "https://github.com/sintel-dev/ml-stars" }, "provides_extra": null, "release_url": "https://pypi.org/project/ml-stars/0.2.0/", "requires_dist": [ "Keras (<2.15,>=2.4)", "mlblocks (>=0.6.1)", "numpy (<2,>=1.17.4)", "pandas (<3,>=1)", "scikit-learn (<1.2,>=0.22)", "scipy (<2,>=1.4.1)", "statsmodels (<0.15,>=0.12.0)", "tensorflow (<2.15,>=2.2)", "xgboost (<2,>=0.72.1)", "protobuf (<4)", "bumpversion (<0.6,>=0.5.3) ; extra == 'dev'", "pip (>=9.0.1) ; extra == 'dev'", "watchdog (<0.11,>=0.8.3) ; extra == 'dev'", "docutils (<0.18,>=0.12) ; extra == 'dev'", "m2r2 (<0.3,>=0.2.5) ; extra == 'dev'", "nbsphinx (<0.7,>=0.5.0) ; extra == 'dev'", "Sphinx (<3.3,>=3) ; extra == 'dev'", "pydata-sphinx-theme (<0.5) ; extra == 'dev'", "markupsafe (<2.1.0) ; extra == 'dev'", "ipython (<9,>=6.5) ; extra == 'dev'", "Jinja2 (<3,>=2) ; extra == 'dev'", "flake8 (<4,>=3.7.7) ; extra == 'dev'", "isort (<5,>=4.3.4) ; extra == 'dev'", "autoflake (>=1.2) ; extra == 'dev'", "autopep8 (>=1.4.3) ; extra == 'dev'", "importlib-metadata (<5) ; extra == 'dev'", "twine (>=1.10.0) ; extra == 'dev'", "wheel (>=0.30.0) ; extra == 'dev'", "coverage (>=4.5.1) ; extra == 'dev'", "tox (>=2.9.1) ; extra == 'dev'", "invoke ; extra == 'dev'", "pytest (>=3.4.2) ; extra == 'dev'", "pytest-cov (>=2.6.0) ; extra == 'dev'", "rundoc (<0.5,>=0.4.3) ; extra == 'dev'", "pytest (>=3.4.2) ; extra == 'test'", "pytest-cov (>=2.6.0) ; extra == 'test'", "rundoc (<0.5,>=0.4.3) ; extra == 'test'" ], "requires_python": ">=3.8,<3.12", "summary": "Primitives and Pipelines for Time Series Data.", "version": "0.2.0", "yanked": false, "yanked_reason": null }, "last_serial": 22341934, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "blake2b_256": "e9f29c6c7cd526e147ff3f8263094f89361ee01a6caa323e9e67de067dda8b8e", "md5": "87dca1b41c2bb92a1a94e1cf7b0fabc6", "sha256": "7f3fc626448c787447d3408b4cebd10ad403059f7bb95875be290466b3085d44" }, "downloads": -1, "filename": "ml_stars-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "87dca1b41c2bb92a1a94e1cf7b0fabc6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6,<3.9", "size": 60576, "upload_time": "2023-04-18T19:20:50", "upload_time_iso_8601": "2023-04-18T19:20:50.647353Z", "url": "https://files.pythonhosted.org/packages/e9/f2/9c6c7cd526e147ff3f8263094f89361ee01a6caa323e9e67de067dda8b8e/ml_stars-0.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "be82859750841a906ec28a66bb276fbc06787635d8023549db4ce6d1fb4f3171", "md5": "0be86ec196769cfdf1b511a6ca4f2817", "sha256": "47683d555ab6b2e985b8660732567e64845f3991cfe4ecea9c8700e684331615" }, "downloads": -1, "filename": "ml-stars-0.1.0.tar.gz", "has_sig": false, "md5_digest": "0be86ec196769cfdf1b511a6ca4f2817", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<3.9", "size": 78910, "upload_time": "2023-04-18T19:20:53", "upload_time_iso_8601": "2023-04-18T19:20:53.001624Z", "url": "https://files.pythonhosted.org/packages/be/82/859750841a906ec28a66bb276fbc06787635d8023549db4ce6d1fb4f3171/ml-stars-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.0.dev0": [ { "comment_text": "", "digests": { "blake2b_256": "1a5f77ee0410dd0f89fe5495aacb6fbe4dc17ae839fb3de25a01c03ff7079e5d", "md5": "bb98d19e82def9dc5eaa75a66110ab8b", "sha256": "6e87c2e852066e77f091c5d8ce1e558c808db1672ab31938f2d834b96437476c" }, "downloads": -1, "filename": "ml_stars-0.1.0.dev0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bb98d19e82def9dc5eaa75a66110ab8b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6", "size": 17466, "upload_time": "2023-02-06T18:44:22", "upload_time_iso_8601": "2023-02-06T18:44:22.668989Z", "url": "https://files.pythonhosted.org/packages/1a/5f/77ee0410dd0f89fe5495aacb6fbe4dc17ae839fb3de25a01c03ff7079e5d/ml_stars-0.1.0.dev0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "26b9d6e174e1cded1b877eac822f04f13fa417d758e65305ae53e69cb195cc2d", "md5": "8672ad73b8f4c7da12605bfcfb1c2b55", "sha256": "cad22877d62ddb68a6d3eb59b3e88f1831bd4b654af7c4adca680fb5208bdd16" }, "downloads": -1, "filename": "ml_stars-0.1.0.dev0-py3-none-any.whl", "has_sig": false, "md5_digest": "8672ad73b8f4c7da12605bfcfb1c2b55", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 2560, "upload_time": "2021-10-29T20:04:18", "upload_time_iso_8601": "2021-10-29T20:04:18.128442Z", "url": "https://files.pythonhosted.org/packages/26/b9/d6e174e1cded1b877eac822f04f13fa417d758e65305ae53e69cb195cc2d/ml_stars-0.1.0.dev0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "fba4be10923230c1440a26304b4c643d444a7f7b3fb033018c1f6f1c06577134", "md5": "6ce5afddf23261c5b70c19e6df0b7960", "sha256": "9d4fe3bc0f6d03d5d1551047455daf49290969cf382ccbeff7f028ae9db5b3a8" }, "downloads": -1, "filename": "ml-stars-0.1.0.dev0.tar.gz", "has_sig": false, "md5_digest": "6ce5afddf23261c5b70c19e6df0b7960", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 3168, "upload_time": "2021-10-29T20:04:19", "upload_time_iso_8601": "2021-10-29T20:04:19.805173Z", "url": "https://files.pythonhosted.org/packages/fb/a4/be10923230c1440a26304b4c643d444a7f7b3fb033018c1f6f1c06577134/ml-stars-0.1.0.dev0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.0.dev1": [ { "comment_text": "", "digests": { "blake2b_256": "89e77db0f624e22af1caafd3a3cd5a46ad8990a052829a251417f6ef96939fc5", "md5": "b1be7851213255783c952bfae077fba7", "sha256": "f02d00e71719339406aea18c1049cea4896b05715d9bfa5f9e790281975618b2" }, "downloads": -1, "filename": "ml_stars-0.1.0.dev1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b1be7851213255783c952bfae077fba7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6,<3.9", "size": 60023, "upload_time": "2023-02-27T16:27:48", "upload_time_iso_8601": "2023-02-27T16:27:48.477284Z", "url": "https://files.pythonhosted.org/packages/89/e7/7db0f624e22af1caafd3a3cd5a46ad8990a052829a251417f6ef96939fc5/ml_stars-0.1.0.dev1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0c00f0a949f261b2df0cd1068545ac6e35077457e71ca5cd818f4928ffe873cf", "md5": "b4131445bfe6a772bcbba39e806c1d64", "sha256": "40aa61901666ef50b3af496146e1027cf6a6d0b3425e60513937183a968250a6" }, "downloads": -1, "filename": "ml-stars-0.1.0.dev1.tar.gz", "has_sig": false, "md5_digest": "b4131445bfe6a772bcbba39e806c1d64", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<3.9", "size": 79481, "upload_time": "2023-02-27T16:27:53", "upload_time_iso_8601": "2023-02-27T16:27:53.329705Z", "url": "https://files.pythonhosted.org/packages/0c/00/f0a949f261b2df0cd1068545ac6e35077457e71ca5cd818f4928ffe873cf/ml-stars-0.1.0.dev1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "blake2b_256": "e452222c8008ed8836f5dd6fa915f82f392aa1a9311e679359c5ff8b9455dc66", "md5": "2976de587fd78fb5ea24d0e314861248", "sha256": "f156efac80ec2ebc12b9a8c4225d5a18cb5d48387b7ec4b51759e85678f19b2f" }, "downloads": -1, "filename": "ml_stars-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2976de587fd78fb5ea24d0e314861248", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6,<3.9", "size": 60631, "upload_time": "2023-05-17T17:16:57", "upload_time_iso_8601": "2023-05-17T17:16:57.151943Z", "url": "https://files.pythonhosted.org/packages/e4/52/222c8008ed8836f5dd6fa915f82f392aa1a9311e679359c5ff8b9455dc66/ml_stars-0.1.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "7d75fe68ee7188852bec57eb5dee7f0ccdd4a7ff0e0dcfd0c3c44237db95c8e0", "md5": "32a75ac353917251125a2c32ccd9cc0b", "sha256": "5ae705fd213418e6ff0c7ddef079dd7a44117d94f85721e96e6a12998f49f7ad" }, "downloads": -1, "filename": "ml-stars-0.1.1.tar.gz", "has_sig": false, "md5_digest": "32a75ac353917251125a2c32ccd9cc0b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<3.9", "size": 89563, "upload_time": "2023-05-17T17:16:59", "upload_time_iso_8601": "2023-05-17T17:16:59.554169Z", "url": "https://files.pythonhosted.org/packages/7d/75/fe68ee7188852bec57eb5dee7f0ccdd4a7ff0e0dcfd0c3c44237db95c8e0/ml-stars-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1.dev0": [ { "comment_text": "", "digests": { "blake2b_256": "39ef439b8e26ad6e4484cd007ea25db25a76694a036fab01ccefe18f14f8a643", "md5": "fd7f6f4532c9d8e4b2aba640ef390a2c", "sha256": "1c606aca152e16cac0057bf4acd09b782ddce05132d3bb7ea6ca48da2d5f454f" }, "downloads": -1, "filename": "ml_stars-0.1.1.dev0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fd7f6f4532c9d8e4b2aba640ef390a2c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6,<3.9", "size": 17463, "upload_time": "2023-02-06T18:59:47", "upload_time_iso_8601": "2023-02-06T18:59:47.046457Z", "url": "https://files.pythonhosted.org/packages/39/ef/439b8e26ad6e4484cd007ea25db25a76694a036fab01ccefe18f14f8a643/ml_stars-0.1.1.dev0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6230ad44cb054a59b9a6b008c5ab98824f6aabf39222990f8019a5a97e6c44a4", "md5": "65284d4c148ec4dab3ec1e05c9c29b27", "sha256": "a8076a8c2b94fbb45b23a831381d2d152e3adb8d4fc902191d4742120201555a" }, "downloads": -1, "filename": "ml-stars-0.1.1.dev0.tar.gz", "has_sig": false, "md5_digest": "65284d4c148ec4dab3ec1e05c9c29b27", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<3.9", "size": 65036, "upload_time": "2023-02-06T18:59:49", "upload_time_iso_8601": "2023-02-06T18:59:49.308031Z", "url": "https://files.pythonhosted.org/packages/62/30/ad44cb054a59b9a6b008c5ab98824f6aabf39222990f8019a5a97e6c44a4/ml-stars-0.1.1.dev0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1.dev1": [ { "comment_text": "", "digests": { "blake2b_256": "308d823599da706045a9263dc822360e32844860089cc4c60c53519c148e1438", "md5": "468a076533c7bd414b4b462aeec13f54", "sha256": "0f20edcebd606fcb7127a808c9f9ae3fa729ad54b8a6a23192bdd6222e971f3d" }, "downloads": -1, "filename": "ml_stars-0.1.1.dev1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "468a076533c7bd414b4b462aeec13f54", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6,<3.9", "size": 60643, "upload_time": "2023-05-16T21:59:07", "upload_time_iso_8601": "2023-05-16T21:59:07.154970Z", "url": "https://files.pythonhosted.org/packages/30/8d/823599da706045a9263dc822360e32844860089cc4c60c53519c148e1438/ml_stars-0.1.1.dev1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "41c8cf3e37c4cc7d6219c615c82ed03188519281798b47faa1cbd7a8f1690e59", "md5": "2d53e324b6dd5a68117602ea329d265e", "sha256": "25cf022203fda610f5f2d5efd28da406778a866be874d9990b8483579871d264" }, "downloads": -1, "filename": "ml-stars-0.1.1.dev1.tar.gz", "has_sig": false, "md5_digest": "2d53e324b6dd5a68117602ea329d265e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<3.9", "size": 89502, "upload_time": "2023-05-16T21:59:09", "upload_time_iso_8601": "2023-05-16T21:59:09.166085Z", "url": "https://files.pythonhosted.org/packages/41/c8/cf3e37c4cc7d6219c615c82ed03188519281798b47faa1cbd7a8f1690e59/ml-stars-0.1.1.dev1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.2": [ { "comment_text": "", "digests": { "blake2b_256": "3906c97e2375fe65742303fd57c81c4fc4ff4942efc9724f4ba0c2298612d50f", "md5": "904a3760d7f0139ec303b5532c474828", "sha256": "292b2bd80b26721fd9bb07a971b5d1656c0ca61fed22e6661a63886913ef8707" }, "downloads": -1, "filename": "ml_stars-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "904a3760d7f0139ec303b5532c474828", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6,<3.10", "size": 60645, "upload_time": "2023-08-04T22:41:55", "upload_time_iso_8601": "2023-08-04T22:41:55.061234Z", "url": "https://files.pythonhosted.org/packages/39/06/c97e2375fe65742303fd57c81c4fc4ff4942efc9724f4ba0c2298612d50f/ml_stars-0.1.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6b569ff0ff422e12cd5643efd283bbc97f2937235bf912c2540f2808ec9651a5", "md5": "25eb38b2f5af470b404938120ab04ff9", "sha256": "31bdb0b6e53f3d60831372fd48e80e99b6011424d90e4397deabc0066ddb6e64" }, "downloads": -1, "filename": "ml-stars-0.1.2.tar.gz", "has_sig": false, "md5_digest": "25eb38b2f5af470b404938120ab04ff9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<3.10", "size": 89550, "upload_time": "2023-08-04T22:41:57", "upload_time_iso_8601": "2023-08-04T22:41:57.411783Z", "url": "https://files.pythonhosted.org/packages/6b/56/9ff0ff422e12cd5643efd283bbc97f2937235bf912c2540f2808ec9651a5/ml-stars-0.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.3": [ { "comment_text": "", "digests": { "blake2b_256": "fc7579c9b3f1bb5e5891c3a4541c14ae380a8fdce59245b2185bcda262d47ae0", "md5": "67ac2b2582c9a70489fbe2095f87c21c", "sha256": "36558b3881ed1a9c36da7fd3557a9ff5886c4567a629894c3a152ee3e2d15050" }, "downloads": -1, "filename": "ml_stars-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "67ac2b2582c9a70489fbe2095f87c21c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6,<3.10", "size": 60755, "upload_time": "2023-09-25T14:04:52", "upload_time_iso_8601": "2023-09-25T14:04:52.096571Z", "url": "https://files.pythonhosted.org/packages/fc/75/79c9b3f1bb5e5891c3a4541c14ae380a8fdce59245b2185bcda262d47ae0/ml_stars-0.1.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "4a4f0240d3806f9e3334b8314c138f293574bddd31934b9c24a6510425f8530b", "md5": "19dd6ab326ad97745ffbce80aebb18a7", "sha256": "c7c29a29345fcc2b92214b2ed6a67d268208821637f422ed3c5319667a6f217d" }, "downloads": -1, "filename": "ml-stars-0.1.3.tar.gz", "has_sig": false, "md5_digest": "19dd6ab326ad97745ffbce80aebb18a7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<3.10", "size": 89985, "upload_time": "2023-09-25T14:04:54", "upload_time_iso_8601": "2023-09-25T14:04:54.579698Z", "url": "https://files.pythonhosted.org/packages/4a/4f/0240d3806f9e3334b8314c138f293574bddd31934b9c24a6510425f8530b/ml-stars-0.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.3.dev0": [ { "comment_text": "", "digests": { "blake2b_256": "f3da8b7a7a7752cb62a12445d85f2ee28b36ffaea3447c38f732cc3e9d0b5172", "md5": "a1f9bc87fbdfd97277e6e55d339a2605", "sha256": "df05be69f3f507fc88084f51a351574398ed58a3cd5cbf28f5241538d90f1a51" }, "downloads": -1, "filename": "ml_stars-0.1.3.dev0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a1f9bc87fbdfd97277e6e55d339a2605", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6,<3.10", "size": 60800, "upload_time": "2023-09-20T15:33:37", "upload_time_iso_8601": "2023-09-20T15:33:37.998301Z", "url": "https://files.pythonhosted.org/packages/f3/da/8b7a7a7752cb62a12445d85f2ee28b36ffaea3447c38f732cc3e9d0b5172/ml_stars-0.1.3.dev0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b815c30c0004c6ce673b550107c858172ea8080021bde7987dcb35addd2b6b24", "md5": "f99812aa62ff0ca012f06c76ffe77ba4", "sha256": "4e086412b05526caae7c783dc0652ff47d29314343dfce7931dc6a298a3b1575" }, "downloads": -1, "filename": "ml-stars-0.1.3.dev0.tar.gz", "has_sig": false, "md5_digest": "f99812aa62ff0ca012f06c76ffe77ba4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<3.10", "size": 89767, "upload_time": "2023-09-20T15:33:40", "upload_time_iso_8601": "2023-09-20T15:33:40.042600Z", "url": "https://files.pythonhosted.org/packages/b8/15/c30c0004c6ce673b550107c858172ea8080021bde7987dcb35addd2b6b24/ml-stars-0.1.3.dev0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.4.dev0": [ { "comment_text": "", "digests": { "blake2b_256": "4979ee2ee80c4f0fe68f98ed87037072f3362991e0dc842c621c746d15e2f877", "md5": "0426438c997e4e1072606e6a2e766a2c", "sha256": "e86d9df3ab509f6c940c34052f0d4e7e25512e4cb43272be7f4ce9e8201219ed" }, "downloads": -1, "filename": "ml_stars-0.1.4.dev0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0426438c997e4e1072606e6a2e766a2c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.7,<3.12", "size": 60754, "upload_time": "2023-09-29T16:53:48", "upload_time_iso_8601": "2023-09-29T16:53:48.760420Z", "url": "https://files.pythonhosted.org/packages/49/79/ee2ee80c4f0fe68f98ed87037072f3362991e0dc842c621c746d15e2f877/ml_stars-0.1.4.dev0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "42ec55c4b29cc0302483bfa324a3c5fc884c028ab9a7ef070c86b8cb809999a0", "md5": "7088def5fefb64d4313dc12adf5e2020", "sha256": "8992310a9ea19e48df5573eabb1b0c4f0f9e7b109d841faf155443cbbae5cb51" }, "downloads": -1, "filename": "ml-stars-0.1.4.dev0.tar.gz", "has_sig": false, "md5_digest": "7088def5fefb64d4313dc12adf5e2020", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<3.12", "size": 90852, "upload_time": "2023-09-29T16:53:50", "upload_time_iso_8601": "2023-09-29T16:53:50.924494Z", "url": "https://files.pythonhosted.org/packages/42/ec/55c4b29cc0302483bfa324a3c5fc884c028ab9a7ef070c86b8cb809999a0/ml-stars-0.1.4.dev0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.4.dev1": [ { "comment_text": "", "digests": { "blake2b_256": "185585709329564af3a5a22710a2f60e21f2f0c611d024454317db01f0cdf456", "md5": "ee6981c3ebc5b3a548e453f02dd3b76e", "sha256": "222d6c9043fa3211d2d449d7b17d18e058729c40538942a6b73f7b45a15e9ce6" }, "downloads": -1, "filename": "ml_stars-0.1.4.dev1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ee6981c3ebc5b3a548e453f02dd3b76e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.8,<3.12", "size": 61584, "upload_time": "2023-10-24T17:36:54", "upload_time_iso_8601": "2023-10-24T17:36:54.567560Z", "url": "https://files.pythonhosted.org/packages/18/55/85709329564af3a5a22710a2f60e21f2f0c611d024454317db01f0cdf456/ml_stars-0.1.4.dev1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d2ba845037494cb32c85102cc2fae807a0511c5dd7a725fad875e29d3693328f", "md5": "dfffae58114b22260f31ad99e73b5b03", "sha256": "7103b09d4add813e177a1ec364ee543582f7d86a42bd94e8f942d2b1b770196e" }, "downloads": -1, "filename": "ml-stars-0.1.4.dev1.tar.gz", "has_sig": false, "md5_digest": "dfffae58114b22260f31ad99e73b5b03", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8,<3.12", "size": 90968, "upload_time": "2023-10-24T17:36:56", "upload_time_iso_8601": "2023-10-24T17:36:56.871558Z", "url": "https://files.pythonhosted.org/packages/d2/ba/845037494cb32c85102cc2fae807a0511c5dd7a725fad875e29d3693328f/ml-stars-0.1.4.dev1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.4.dev2": [ { "comment_text": "", "digests": { "blake2b_256": "7d45fa8f398f8d21ccd80e48d01f9d629db69032cfb447e1d6bdb9b31b7208c7", "md5": "baa87bf0b244b64aec4044053b8c19eb", "sha256": "e42c7f3feb97a33fe57b654d37941e1316599ba93d2cd209f16b3cda65496ac9" }, "downloads": -1, "filename": "ml_stars-0.1.4.dev2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "baa87bf0b244b64aec4044053b8c19eb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.8,<3.12", "size": 61581, "upload_time": "2023-10-24T21:35:14", "upload_time_iso_8601": "2023-10-24T21:35:14.766825Z", "url": "https://files.pythonhosted.org/packages/7d/45/fa8f398f8d21ccd80e48d01f9d629db69032cfb447e1d6bdb9b31b7208c7/ml_stars-0.1.4.dev2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "7091803b8dd6f348a9df3a8b9e6a4201067641d785b8825611a7960c6c0f0405", "md5": "9a94e02fe5269d468c78324c36fb3169", "sha256": "95ea68cabd2206fb6db8c10e158d684aafb02708ba264a6c676d86fbb2340ce2" }, "downloads": -1, "filename": "ml-stars-0.1.4.dev2.tar.gz", "has_sig": false, "md5_digest": "9a94e02fe5269d468c78324c36fb3169", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8,<3.12", "size": 90966, "upload_time": "2023-10-24T21:35:16", "upload_time_iso_8601": "2023-10-24T21:35:16.852502Z", "url": "https://files.pythonhosted.org/packages/70/91/803b8dd6f348a9df3a8b9e6a4201067641d785b8825611a7960c6c0f0405/ml-stars-0.1.4.dev2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "blake2b_256": "075edd578294f40535657faa79fd83a9b548af3cb3b5f42e13d0cf00617afb16", "md5": "136031c3b6fc9e0a25d5e4d812bcf4d1", "sha256": "d24c8ee3e5ec926b5383b9b566f139c28794ef1d97601c7c589883c8b8073920" }, "downloads": -1, "filename": "ml_stars-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "136031c3b6fc9e0a25d5e4d812bcf4d1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.8,<3.12", "size": 61602, "upload_time": "2023-10-24T22:02:03", "upload_time_iso_8601": "2023-10-24T22:02:03.446642Z", "url": "https://files.pythonhosted.org/packages/07/5e/dd578294f40535657faa79fd83a9b548af3cb3b5f42e13d0cf00617afb16/ml_stars-0.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f832913e767492079d0158d04b9500a1fc0d013451bfe18cdd7e8ee721263bf7", "md5": "da6d4248933e69306202f1fd02c130bc", "sha256": "f3ea8b6d9856b32d252ba84fbf7239127af63841ca588a891f1361364d79a789" }, "downloads": -1, "filename": "ml-stars-0.2.0.tar.gz", "has_sig": false, "md5_digest": "da6d4248933e69306202f1fd02c130bc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8,<3.12", "size": 91113, "upload_time": "2023-10-24T22:02:05", "upload_time_iso_8601": "2023-10-24T22:02:05.222200Z", "url": "https://files.pythonhosted.org/packages/f8/32/913e767492079d0158d04b9500a1fc0d013451bfe18cdd7e8ee721263bf7/ml-stars-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "blake2b_256": "075edd578294f40535657faa79fd83a9b548af3cb3b5f42e13d0cf00617afb16", "md5": "136031c3b6fc9e0a25d5e4d812bcf4d1", "sha256": "d24c8ee3e5ec926b5383b9b566f139c28794ef1d97601c7c589883c8b8073920" }, "downloads": -1, "filename": "ml_stars-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "136031c3b6fc9e0a25d5e4d812bcf4d1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.8,<3.12", "size": 61602, "upload_time": "2023-10-24T22:02:03", "upload_time_iso_8601": "2023-10-24T22:02:03.446642Z", "url": "https://files.pythonhosted.org/packages/07/5e/dd578294f40535657faa79fd83a9b548af3cb3b5f42e13d0cf00617afb16/ml_stars-0.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f832913e767492079d0158d04b9500a1fc0d013451bfe18cdd7e8ee721263bf7", "md5": "da6d4248933e69306202f1fd02c130bc", "sha256": "f3ea8b6d9856b32d252ba84fbf7239127af63841ca588a891f1361364d79a789" }, "downloads": -1, "filename": "ml-stars-0.2.0.tar.gz", "has_sig": false, "md5_digest": "da6d4248933e69306202f1fd02c130bc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8,<3.12", "size": 91113, "upload_time": "2023-10-24T22:02:05", "upload_time_iso_8601": "2023-10-24T22:02:05.222200Z", "url": "https://files.pythonhosted.org/packages/f8/32/913e767492079d0158d04b9500a1fc0d013451bfe18cdd7e8ee721263bf7/ml-stars-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }