{ "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 :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "

\n\u201cBTB\u201d\nAn open source project from Data to AI Lab at MIT.\n

\n\n![](https://raw.githubusercontent.com/HDI-Project/BTB/master/docs/_static/BTB-Icon-small.png)\n\nA simple, extensible backend for developing auto-tuning systems.\n\n[![PyPi](https://img.shields.io/pypi/v/baytune.svg)](https://pypi.python.org/pypi/baytune)\n[![Travis](https://travis-ci.org/HDI-Project/BTB.svg?branch=master)](https://travis-ci.org/HDI-Project/BTB)\n[![CodeCov](https://codecov.io/gh/HDI-Project/BTB/branch/master/graph/badge.svg)](https://codecov.io/gh/HDI-Project/BTB)\n\n# Overview\n\nBayesian Tuning and Bandits is a simple, extensible backend for developing auto-tuning systems such as AutoML systems. It is currently being used in [ATM](https://github.com/HDI-Project/ATM) (an AutoML system that allows tuning of classifiers) and MIT's system for the DARPA [Data driven discovery of models program](https://www.darpa.mil/program/data-driven-discovery-of-models).\n\n* Free software: MIT license\n* Documentation: https://HDI-Project.github.io/BTB\n* Homepage: https://github.com/HDI-Project/BTB\n\n*BTB is under active development. If you come across any issues, please report them [here](https://github.com/HDI-Project/BTB/issues/new).*\n\n## Installation\n\n### Install with pip\n\nThe easiest way to install BTB is using `pip`.\n\n```\npip install baytune\n```\n\n### Build from source\n\nYou can also clone the repository and build it from source.\n\n```\ngit clone git@github.com:HDI-Project/BTB.git\ncd BTB\nmake install\n```\n\n## Basic Usage\n\n### Tuners\n\nIn order to use a tuner we will create a ``Tuner`` instance indicating which parameters\nwe want to tune, their types and the range of values that we want to try.\n\n``` python\n>>> from btb.tuning import GP\n>>> from btb import HyperParameter, ParamTypes\n>>> tunables = [\n... ('n_estimators', HyperParameter(ParamTypes.INT, [10, 500])),\n... ('max_depth', HyperParameter(ParamTypes.INT, [3, 20]))\n... ]\n>>> tuner = GP(tunables)\n```\n\nThen we perform the following three steps in a loop.\n\n1. Let the Tuner propose a new set of parameters\n\n ``` python\n >>> parameters = tuner.propose()\n >>> parameters\n {'n_estimators': 297, 'max_depth': 3}\n ```\n\n2. Fit and score a new model using these parameters\n\n ``` python\n >>> model = RandomForestClassifier(**parameters)\n >>> model.fit(X_train, y_train)\n RandomForestClassifier(bootstrap=True, class_weight=None, criterion='gini',\n max_depth=3, max_features='auto', max_leaf_nodes=None,\n min_impurity_decrease=0.0, min_impurity_split=None,\n min_samples_leaf=1, min_samples_split=2,\n min_weight_fraction_leaf=0.0, n_estimators=297, n_jobs=1,\n oob_score=False, random_state=None, verbose=0,\n warm_start=False)\n >>> score = model.score(X_test, y_test)\n >>> score\n 0.77\n ```\n\n3. Pass the used parameters and the score obtained back to the tuner\n\n ``` python\n tuner.add(parameters, score)\n ```\n\nAt each iteration, the `Tuner` will use the information about the previous tests\nto evaluate and propose the set of parameter values that have the highest probability\nof obtaining the highest score.\n\nFor more detailed examples, check scripts from the `examples` folder.\n\n### Selectors\n\nThe selectors are intended to be used in combination with tuners in order to find\nout and decide which model seems to get the best results once it is properly fine tuned.\n\nIn order to use the selector we will create a ``Tuner`` instance for each model that\nwe want to try out, as well as the ``Selector`` instance.\n\n```\n>>> from sklearn.ensemble import RandomForestClassifier\n>>> from sklearn.svm import SVC\n>>> models = {\n... 'RF': RandomForestClassifier,\n... 'SVC': SVC\n... }\n>>> from btb.selection import UCB1\n>>> selector = UCB1(['RF', 'SVC'])\n>>> tuners = {\n... 'RF': GP([\n... ('n_estimators', HyperParameter(ParamTypes.INT, [10, 500])),\n... ('max_depth', HyperParameter(ParamTypes.INT, [3, 20]))\n... ]),\n... 'SVC': GP([\n... ('c', HyperParameter(ParamTypes.FLOAT_EXP, [0.01, 10.0])),\n... ('gamma', HyperParameter(ParamTypes.FLOAT, [0.000000001, 0.0000001]))\n... ])\n... }\n```\n\nThen we perform the following steps in a loop.\n\n1. Pass all the obtained scores to the selector and let it decide which model to test.\n\n ``` python\n >>> next_choice = selector.select({'RF': tuners['RF'].y, 'SVC': tuners['SVC'].y})\n >>> next_choice\n 'RF'\n ```\n\n2. Obtain a new set of parameters from the indicated tuner and create a model instance.\n\n ``` python\n >>> parameters = tuners[next_choice].propose()\n >>> parameters\n {'n_estimators': 289, 'max_depth': 18}\n >>> model = models[next_choice](**parameters)\n ```\n\n3. Evaluate the score of the new model instance and pass it back to the tuner\n\n ``` python\n >>> model.fit(X_train, y_train)\n RandomForestClassifier(bootstrap=True, class_weight=None, criterion='gini',\n max_depth=18, max_features='auto', max_leaf_nodes=None,\n min_impurity_decrease=0.0, min_impurity_split=None,\n min_samples_leaf=1, min_samples_split=2,\n min_weight_fraction_leaf=0.0, n_estimators=289, n_jobs=1,\n oob_score=False, random_state=None, verbose=0,\n warm_start=False)\n >>> score = model.score(X_test, y_test)\n >>> score\n 0.89\n >>> tuners[next_choice].add(parameters, score)\n ```\n\n## References\n\nIf you use BTB, please consider citing the following work:\n\n- Laura Gustafson. Bayesian Tuning and Bandits: An Extensible, Open Source Library for AutoML. Masters thesis, MIT EECS, June 2018. [(pdf)](https://dai.lids.mit.edu/wp-content/uploads/2018/05/Laura_MEng_Final.pdf)\n\n ``` bibtex \n @MastersThesis{Laura:2018,\n title = \"Bayesian Tuning and Bandits: An Extensible, Open Source Library for AutoML\",\n author = \"Laura Gustafson\",\n month = \"May\",\n year = \"2018\",\n url = \"https://dai.lids.mit.edu/wp-content/uploads/2018/05/Laura_MEng_Final.pdf\",\n type = \"M. Eng Thesis\",\n address = \"Cambridge, MA\",\n school = \"Massachusetts Institute of Technology\",\n }\n```\n\n\n# History\n\n## 0.2.5\n\n### Bug Fixes\n\n* Issue #115: HyperParameter subclass instantiation not working properly\n\n## 0.2.4\n\n### Internal Improvements\n\n* Issue #62: Test for `None` in `HyperParameter.cast` instead of `HyperParameter.__init__`\n\n### Bug fixes\n\n* Issue #98: Categorical hyperparameters do not support `None` as input\n* Issue #89: Fix the computation of `avg_rewards` in `BestKReward`\n\n## 0.2.3\n\n### Bug Fixes\n\n* Issue #84: Error in GP tuning when only one parameter is present bug\n* Issue #96: Fix pickling of HyperParameters\n* Issue #98: Fix implementation of the GPEi tuner\n\n## 0.2.2\n\n### Internal Improvements\n\n* Updated documentation\n\n### Bug Fixes\n\n* Issue #94: Fix unicode `param_type` caused error on python 2.\n\n## 0.2.1\n\n### Bug fixes\n\n* Issue #74: `ParamTypes.STRING` tunables do not work\n\n## 0.2.0\n\n### New Features\n\n* New Recommendation module\n* New HyperParameter types\n* Improved documentation and examples\n* Fully tested Python 2.7, 3.4, 3.5 and 3.6 compatibility\n* HyperParameter copy and deepcopy support\n* Replace print statements with logging\n\n### Internal Improvements\n\n* Integrated with Travis-CI\n* Exhaustive unit testing\n* New implementation of HyperParameter\n* Tuner builds a grid of real values instead of indices\n* Resolve Issue #29: Make args explicit in `__init__` methods\n* Resolve Issue #34: make all imports explicit\n\n### Bug Fixes\n\n* Fix error from mixing string/numerical hyperparameters\n* Inverse transform for categorical hyperparameter returns single item\n\n## 0.1.2\n\n* Issue #47: Add missing requirements in v0.1.1 setup.py\n* Issue #46: Error on v0.1.1: 'GP' object has no attribute 'X'\n\n## 0.1.1\n\n* First release.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/HDI-Project/BTB", "keywords": "machine learning hyperparameters tuning classification", "license": "MIT license", "maintainer": "", "maintainer_email": "", "name": "baytune", "package_url": "https://pypi.org/project/baytune/", "platform": "", "project_url": "https://pypi.org/project/baytune/", "project_urls": { "Homepage": "https://github.com/HDI-Project/BTB" }, "release_url": "https://pypi.org/project/baytune/0.2.5/", "requires_dist": [ "numpy (>=1.14.2)", "scikit-learn (>=0.19.1)", "scipy (>=1.0.1)", "six (>=1.0)", "enum34 (>=1.1.6); python_version == \"2.7\"", "more-itertools (<6); python_version == \"2.7\"", "bumpversion (>=0.5.3); extra == 'dev'", "pip (>=9.0.1); extra == 'dev'", "watchdog (>=0.8.3); extra == 'dev'", "m2r (>=0.2.0); extra == 'dev'", "Sphinx (>=1.7.1); extra == 'dev'", "sphinx-rtd-theme (>=0.2.4); extra == 'dev'", "flake8 (>=3.5.0); extra == 'dev'", "isort (>=4.3.4); extra == 'dev'", "autoflake (>=1.2); extra == 'dev'", "autopep8 (>=1.3.5); extra == 'dev'", "twine (>=1.10.0); extra == 'dev'", "wheel (>=0.30.0); extra == 'dev'", "tox (>=2.9.1); extra == 'dev'", "coverage (>=4.5.1); extra == 'dev'", "mock (>=2.0.0); extra == 'dev'", "pytest (>=3.4.2); extra == 'dev'", "pytest-cov (>=2.6.0); extra == 'dev'", "mock (>=2.0.0); extra == 'test'", "pytest (>=3.4.2); extra == 'test'", "pytest-cov (>=2.6.0); extra == 'test'" ], "requires_python": "", "summary": "Bayesian Tuning and Bandits", "version": "0.2.5" }, "last_serial": 4945308, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "da6e1fedefe8e90f1670dd3587916d4e", "sha256": "cdac652e88998441647439f2e7d8f502cb1b54e04ea4fc3b702faae20861098d" }, "downloads": -1, "filename": "baytune-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "da6e1fedefe8e90f1670dd3587916d4e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18960, "upload_time": "2018-04-26T16:06:04", "url": "https://files.pythonhosted.org/packages/4d/ee/1af0048418f21d7ee5fd8541426e2689d9e328af2818dee7181ff1cc9dd1/baytune-0.1.0-py3-none-any.whl" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "636dad1ce45a7c09622bf3af87bc1408", "sha256": "7f68587b7f9845bcf989c83a5a9442b5f58196c73d5e11478f93b5c0c6e9bcee" }, "downloads": -1, "filename": "baytune-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "636dad1ce45a7c09622bf3af87bc1408", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18953, "upload_time": "2018-04-28T18:34:54", "url": "https://files.pythonhosted.org/packages/c1/c5/a5a6d7f27d73b2159c3fd0bee9623c19194e833a7bc17739cb3aedcd4a9d/baytune-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "565cbf474d9242e7eb0acf776fd7ea35", "sha256": "98e36ff4d07c60aaae4a4680a2a11ea7c089051e9e13b680b9bb0f0cb9190a3d" }, "downloads": -1, "filename": "baytune-0.1.1.tar.gz", "has_sig": false, "md5_digest": "565cbf474d9242e7eb0acf776fd7ea35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12049, "upload_time": "2018-04-28T18:34:57", "url": "https://files.pythonhosted.org/packages/a5/e6/b88b68b8372dca315a6336b87e23cc04d7ff07b1c5beac008a0acde7481f/baytune-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "9c7467ad687cc5b3392550e971815ca3", "sha256": "38a98fb7d910ea6482299094536efa6021357a38e23fa20ca440a15f81f631d1" }, "downloads": -1, "filename": "baytune-0.1.2-py2-none-any.whl", "has_sig": false, "md5_digest": "9c7467ad687cc5b3392550e971815ca3", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 19016, "upload_time": "2018-05-03T15:18:56", "url": "https://files.pythonhosted.org/packages/f1/5a/0fab73f1023127d75fddc751c862622741339b8593747eeb63ddf7928a34/baytune-0.1.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2692ca2d3de95b465c05a505c0701d76", "sha256": "a94499e558643046e33494b30ae6cdb840c3e9804e09b112ca28678842fe9587" }, "downloads": -1, "filename": "baytune-0.1.2.tar.gz", "has_sig": false, "md5_digest": "2692ca2d3de95b465c05a505c0701d76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12144, "upload_time": "2018-05-03T15:18:58", "url": "https://files.pythonhosted.org/packages/11/70/299743fe3691cff8f9a78910dd1b16c5434e7217dd58f887beff3a8969b5/baytune-0.1.2.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "b16ae7ad0ec8673833522bccc6ca62bd", "sha256": "607a60c52a30372a980e53ab5556fc57e28fdb3abbd4c3b6ec221b4f57190102" }, "downloads": -1, "filename": "baytune-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b16ae7ad0ec8673833522bccc6ca62bd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26765, "upload_time": "2018-06-04T19:46:29", "url": "https://files.pythonhosted.org/packages/56/d4/238459d1a7e71408405b1d0de0bedaad3a6dcb30b015344872e5f801aa12/baytune-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "84735d34e4a7e92354cc43c3028bd349", "sha256": "dc707d3e934c5ffabf85d5cc39486f1395dea453f32d5f1a74bb6ec21e4ecae1" }, "downloads": -1, "filename": "baytune-0.2.0.tar.gz", "has_sig": false, "md5_digest": "84735d34e4a7e92354cc43c3028bd349", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37690, "upload_time": "2018-06-04T19:46:31", "url": "https://files.pythonhosted.org/packages/e3/26/3cf60909c854bd56e844c525c5932e87c7b90a7fad8d45b716dafa6e93c7/baytune-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "adcdf6b4ab799b50c4569a9465ecbba9", "sha256": "9c840c72dc647de31fcef53ae02acf6c58bc111eb3cebc10525254ce6c12a7e9" }, "downloads": -1, "filename": "baytune-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "adcdf6b4ab799b50c4569a9465ecbba9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26994, "upload_time": "2018-06-05T20:00:34", "url": "https://files.pythonhosted.org/packages/db/67/67537ebf9d6406f66161578d02227f153422ad407ab23f0ecf7831ab4c22/baytune-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e248ac21bccbb2f9bc2614fdcabb6c20", "sha256": "2a3ae485e7c570349d1557d3d2cd80f7e70a765da17784ff7396b83a0598ad80" }, "downloads": -1, "filename": "baytune-0.2.1.tar.gz", "has_sig": false, "md5_digest": "e248ac21bccbb2f9bc2614fdcabb6c20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38009, "upload_time": "2018-06-05T20:00:35", "url": "https://files.pythonhosted.org/packages/87/25/3da9a3639a3e436cb65530949f180d6484dcebe3e141268cc39d8d243571/baytune-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "252d65dcd2f7b7110534c3e81fa2200c", "sha256": "04a79ce95cdb74166840fac267365b9ea0b6afebecbf96ecb224a81a54fb03a4" }, "downloads": -1, "filename": "baytune-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "252d65dcd2f7b7110534c3e81fa2200c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27332, "upload_time": "2018-10-11T19:27:23", "url": "https://files.pythonhosted.org/packages/b2/74/8a9047574f8460dedd74a542b26fc08ed6fb9f072ae6c90e561c70d15ffd/baytune-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d274c761d195d2201c00229961f1c345", "sha256": "1b67ec72a97d8506f78fdda96dfb485363089ef1f4677b9a5cb59477e4391af4" }, "downloads": -1, "filename": "baytune-0.2.2.tar.gz", "has_sig": false, "md5_digest": "d274c761d195d2201c00229961f1c345", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55555, "upload_time": "2018-10-11T19:27:24", "url": "https://files.pythonhosted.org/packages/b6/26/f61c1afff37a47e4793f0ec67faed8c08ac7c03be86f6206d414cd461f77/baytune-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "c78eaec35d80aee52877ba17ecff020d", "sha256": "3a93bf40d12df9083f6657bd72117f8591c2b930ecac2ba2b9dbbb5efe4ac7d1" }, "downloads": -1, "filename": "baytune-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c78eaec35d80aee52877ba17ecff020d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27471, "upload_time": "2018-11-14T03:45:19", "url": "https://files.pythonhosted.org/packages/7f/0c/4a9fc81d9d3c75232808bc23bc2fcde8eef30a53a39fd7b30f8dddee98a7/baytune-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e505ec4d8cd198fd69ab64a7ecaae371", "sha256": "e23fc362d029b069f9e8c60c3157788a27aea5b21faeb68120efda3b6018b2bd" }, "downloads": -1, "filename": "baytune-0.2.3.tar.gz", "has_sig": false, "md5_digest": "e505ec4d8cd198fd69ab64a7ecaae371", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55160, "upload_time": "2018-11-14T03:45:21", "url": "https://files.pythonhosted.org/packages/53/e1/578137f8c188547f1b5d2226526c54f5e13ce9af81a0c01ef8c6907c9f9d/baytune-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "3f8750b386b2b4b830d3db1a3ae54dea", "sha256": "e0e4dad42acdaf65b5d266d1949b8f69728902f98035df39afe29b682dd09e7f" }, "downloads": -1, "filename": "baytune-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3f8750b386b2b4b830d3db1a3ae54dea", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27876, "upload_time": "2019-01-21T19:22:06", "url": "https://files.pythonhosted.org/packages/45/7d/2f749e2f87449ea77b8ac37498030e31a2e0add41b69e70ac4e89d95a769/baytune-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e42793264bf6a7686fcb5ad46981e819", "sha256": "bd85d5868e246f546ab0a694afe548f9c7ec9bc136578020c0d57d1607b3cbb0" }, "downloads": -1, "filename": "baytune-0.2.4.tar.gz", "has_sig": false, "md5_digest": "e42793264bf6a7686fcb5ad46981e819", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54506, "upload_time": "2019-01-21T19:22:07", "url": "https://files.pythonhosted.org/packages/45/eb/4daa8b8569be3b1b0dd201e7cc16a7067545dcfe09e6d5521ceb1b68711d/baytune-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "cfd2eff498b57fce6f0a49a0a5f18dc2", "sha256": "9a761e55b6ade3e3704fc64419b0df4c6fa976b12938969a2d87aecad23958e7" }, "downloads": -1, "filename": "baytune-0.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cfd2eff498b57fce6f0a49a0a5f18dc2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28137, "upload_time": "2019-03-15T17:52:50", "url": "https://files.pythonhosted.org/packages/47/c8/3107ad844a656ffb703492e8687e9ce0f2bd0cec9ab5dae20c533c56cd3c/baytune-0.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7d3c1c1eef2d964717cc9b887bc2ff09", "sha256": "aecfd10f90e0c2f807e4143ef82915d4bd7553407073e6ea35858cd068af76f7" }, "downloads": -1, "filename": "baytune-0.2.5.tar.gz", "has_sig": false, "md5_digest": "7d3c1c1eef2d964717cc9b887bc2ff09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54990, "upload_time": "2019-03-15T17:52:53", "url": "https://files.pythonhosted.org/packages/2f/ba/c505d27a6b8498b417a887d0d4b85ffccfd2fac8687613affaf431bade35/baytune-0.2.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "cfd2eff498b57fce6f0a49a0a5f18dc2", "sha256": "9a761e55b6ade3e3704fc64419b0df4c6fa976b12938969a2d87aecad23958e7" }, "downloads": -1, "filename": "baytune-0.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cfd2eff498b57fce6f0a49a0a5f18dc2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28137, "upload_time": "2019-03-15T17:52:50", "url": "https://files.pythonhosted.org/packages/47/c8/3107ad844a656ffb703492e8687e9ce0f2bd0cec9ab5dae20c533c56cd3c/baytune-0.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7d3c1c1eef2d964717cc9b887bc2ff09", "sha256": "aecfd10f90e0c2f807e4143ef82915d4bd7553407073e6ea35858cd068af76f7" }, "downloads": -1, "filename": "baytune-0.2.5.tar.gz", "has_sig": false, "md5_digest": "7d3c1c1eef2d964717cc9b887bc2ff09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54990, "upload_time": "2019-03-15T17:52:53", "url": "https://files.pythonhosted.org/packages/2f/ba/c505d27a6b8498b417a887d0d4b85ffccfd2fac8687613affaf431bade35/baytune-0.2.5.tar.gz" } ] }