{ "info": { "author": "Federico Tomasi", "author_email": "federico.tomasi@dibris.unige.it", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Operating System :: MacOS", "Operating System :: POSIX", "Operating System :: Unix", "Programming Language :: Python", "Topic :: Scientific/Engineering", "Topic :: Software Development" ], "description": "[![develstat](https://travis-ci.org/fdtomasi/regain.svg?branch=master)](https://travis-ci.org/fdtomasi/regain) [![covdevel](http://codecov.io/github/fdtomasi/regain/coverage.svg?branch=master)](http://codecov.io/github/fdtomasi/regain?branch=master) [![licence](https://img.shields.io/badge/licence-BSD-blue.svg)](http://opensource.org/licenses/BSD-3-Clause) [![PyPI](https://img.shields.io/pypi/v/regain.svg)](https://pypi.python.org/pypi/regain) [![Conda](https://img.shields.io/conda/v/fdtomasi/regain.svg)](https://anaconda.org/fdtomasi/regain) [![Python27](https://img.shields.io/badge/python-2.7-blue.svg)](https://badge.fury.io/py/regain) [![Python34](https://img.shields.io/badge/python-3.5-blue.svg)](https://badge.fury.io/py/regain) [![Requirements Status](https://requires.io/github/fdtomasi/regain/requirements.svg?branch=master)](https://requires.io/github/fdtomasi/regain/requirements/?branch=master)\n\n# regain\nRegularised graph inference across multiple time stamps, considering the influence of latent variables.\nIt inherits functionalities from the [scikit-learn](https://github.com/scikit-learn/scikit-learn) package.\n\n## Getting started\n### Dependencies\n`REGAIN` requires:\n- Python (>= 2.7 or >= 3.5)\n- NumPy (>= 1.8.2)\n- scikit-learn (>= 0.17)\n\nYou can install (required) dependencies by running:\n```bash\npip install -r requirements.txt\n```\n\nTo use the parameter selection via gaussian process optimisation, [skopt](https://scikit-optimize.github.io/) is required.\n\n### Installation\nThe simplest way to install regain is using pip\n```bash\npip install regain\n```\nor `conda`\n\n```bash\nconda install -c fdtomasi regain\n```\n\nIf you'd like to install from source, or want to contribute to the project (e.g. by sending pull requests via github), read on. Clone the repository in GitHub and add it to your $PYTHONPATH.\n```bash\ngit clone https://github.com/fdtomasi/regain.git\ncd regain\npython setup.py develop\n```\n\n## Quickstart\nA simple example for how to use LTGL.\n```python\nimport numpy as np\nfrom regain.covariance import LatentTimeGraphLasso\nfrom regain.datasets import make_dataset\nfrom regain.utils import error_norm_time\n\nnp.random.seed(42)\ndata = make_dataset(n_dim_lat=1, n_dim_obs=10)\nX = data.data\ntheta = data.thetas\n\nmdl = LatentTimeGraphLasso(max_iter=50).fit(X)\nprint(\"Error: %.2f\" % error_norm_time(theta, mdl.precision_))\n```\nNote that the input of `LatentTimeGraphLasso` is a three-dimensional matrix with shape `(n_times, n_samples, n_dimensions)`.\nIf you have a single time (`n_times = 1`), ensure a `X = X.reshape(1, *X.shape)` before using `LatentTimeGraphLasso`, or, alternatively, use `LatentGraphLasso`.\n\n\n## Citation\n\n`REGAIN` appeared in the following two publications.\nFor the `LatentTimeGraphLasso` please use\n\n```latex\n@inproceedings{Tomasi:2018:LVT:3219819.3220121,\n author = {Tomasi, Federico and Tozzo, Veronica and Salzo, Saverio and Verri, Alessandro},\n title = {Latent Variable Time-varying Network Inference},\n booktitle = {Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery \\&\\#38; Data Mining},\n series = {KDD '18},\n year = {2018},\n isbn = {978-1-4503-5552-0},\n location = {London, United Kingdom},\n pages = {2338--2346},\n numpages = {9},\n url = {http://doi.acm.org/10.1145/3219819.3220121},\n doi = {10.1145/3219819.3220121},\n acmid = {3220121},\n publisher = {ACM},\n address = {New York, NY, USA},\n keywords = {convex optimization, graphical models, latent variables, network inference, time-series},\n} \n```\n\nand for the `TimeGraphLassoForwardBackward` plase use\n\n```latex\n@InProceedings{pmlr-v72-tomasi18a,\n title = \t {Forward-Backward Splitting for Time-Varying Graphical Models},\n author = \t {Tomasi, Federico and Tozzo, Veronica and Verri, Alessandro and Salzo, Saverio},\n booktitle = \t {Proceedings of the Ninth International Conference on Probabilistic Graphical Models},\n pages = \t {475--486},\n year = \t {2018},\n editor = \t {Kratochv\\'{i}l, V\\'{a}clav and Studen\\'{y}, Milan},\n volume = \t {72},\n series = \t {Proceedings of Machine Learning Research},\n address = \t {Prague, Czech Republic},\n month = \t {11--14 Sep},\n publisher = \t {PMLR},\n pdf = \t {http://proceedings.mlr.press/v72/tomasi18a/tomasi18a.pdf},\n url = \t {http://proceedings.mlr.press/v72/tomasi18a.html},\n abstract = \t {Gaussian graphical models have received much attention in the last years, due to their flexibility and expression power. However, the optimisation of such complex models suffer from computational issues both in terms of convergence rates and memory requirements. Here, we present a forward-backward splitting (FBS) procedure for Gaussian graphical modelling of multivariate time-series which relies on recent theoretical studies ensuring convergence under mild assumptions. Our experiments show that a FBS-based implementation achieves, with very fast convergence rates, optimal results with respect to ground truth and standard methods for dynamical network inference. Optimisation algorithms which are usually exploited for network inference suffer from drawbacks when considering large sets of unknowns. Particularly for increasing data sets and model complexity, we argue for the use of fast and theoretically sound optimisation algorithms to be significant to the graphical modelling community.}\n}\n```\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/fdtomasi/regain/archive/v0.2.0.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/fdtomasi/regain", "keywords": "graph inference,latent variables", "license": "FreeBSD", "maintainer": "Federico Tomasi", "maintainer_email": "federico.tomasi@dibris.unige.it", "name": "regain", "package_url": "https://pypi.org/project/regain/", "platform": "", "project_url": "https://pypi.org/project/regain/", "project_urls": { "Download": "https://github.com/fdtomasi/regain/archive/v0.2.0.tar.gz", "Homepage": "https://github.com/fdtomasi/regain" }, "release_url": "https://pypi.org/project/regain/0.2.0/", "requires_dist": null, "requires_python": "", "summary": "REGAIN (Regularised Graph Inference)", "version": "0.2.0" }, "last_serial": 4869332, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "af959d014743c5dc4c28e0b0e9b15a68", "sha256": "7905ced7134d41eb7a7ccfb0daa987ca0b20e6134cf12f46e1123b9704fd40fb" }, "downloads": -1, "filename": "regain-0.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "af959d014743c5dc4c28e0b0e9b15a68", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49758, "upload_time": "2018-01-23T09:58:26", "url": "https://files.pythonhosted.org/packages/1a/01/f333ac74705bcbb8c2152d0a7e864e08f1c052926624c48cc932849b8bcd/regain-0.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a8377eb753fa32bc74aa88154e1cafd6", "sha256": "b9c9178163a653b307181211ff28874323460ccd51149ba93aa74fc5ff3d08ff" }, "downloads": -1, "filename": "regain-0.0.1.tar.gz", "has_sig": false, "md5_digest": "a8377eb753fa32bc74aa88154e1cafd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30362, "upload_time": "2018-01-23T09:58:27", "url": "https://files.pythonhosted.org/packages/67/e6/7544ed6f1374796c2773c21ba6771e6156186a34f264bfb2b67bffe2570b/regain-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "f947f6514e78cdb8a522d25f46e3a612", "sha256": "c5c169e48714a225044b98ea2d5458a73067a71453144f90a8b1d7c61705dec6" }, "downloads": -1, "filename": "regain-0.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f947f6514e78cdb8a522d25f46e3a612", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 51002, "upload_time": "2018-02-13T12:59:00", "url": "https://files.pythonhosted.org/packages/7e/8b/6fa8437360cced1349d0f06a83bda2cc64def43715e5bd6ff98149ccf863/regain-0.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a3b920aea605e4eae47693941acf7cf1", "sha256": "ba3191c30696ad20fc00fb3b7c38a953307d98d76caee123864bf87b6bbd4463" }, "downloads": -1, "filename": "regain-0.0.2.tar.gz", "has_sig": false, "md5_digest": "a3b920aea605e4eae47693941acf7cf1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32427, "upload_time": "2018-02-13T12:59:02", "url": "https://files.pythonhosted.org/packages/11/14/2b7ff07f1bb57b179c7bdf2bbb6d3c873764885712c4a6d31df2bcde5f2b/regain-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "a4508b2bf69262506ad5ff072a0a5bf9", "sha256": "0f89db87c4405f514c4357df881ec4ca65e6fab04cbb619239f97405b6dabfc1" }, "downloads": -1, "filename": "regain-0.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a4508b2bf69262506ad5ff072a0a5bf9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 50999, "upload_time": "2018-02-13T13:20:51", "url": "https://files.pythonhosted.org/packages/97/36/a9f510565548a97a020a7f7b92ef007359d846a9f8b8ae9057e311c6a90e/regain-0.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a9051de1bcd131556f0237224a8a4e2b", "sha256": "73703edb855355814ca81a783376b68b5e55fec32ba8d81b432a8918db824933" }, "downloads": -1, "filename": "regain-0.0.3.tar.gz", "has_sig": false, "md5_digest": "a9051de1bcd131556f0237224a8a4e2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32427, "upload_time": "2018-02-13T13:20:55", "url": "https://files.pythonhosted.org/packages/0b/11/20d310a86788d3904a5194f2407143977973a80fa14899829b9e8175d253/regain-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "96268009551880cc3c34e3bec4ec9824", "sha256": "cc80b8037f11e915b5e95b67a23229e78707373720b1b65fcce8721785409c41" }, "downloads": -1, "filename": "regain-0.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "96268009551880cc3c34e3bec4ec9824", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 51002, "upload_time": "2018-02-13T13:57:50", "url": "https://files.pythonhosted.org/packages/91/57/20ad40ed48de7f1c70ed660e1d9a506a48d9cb448b6b25acac707dc3993d/regain-0.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "506bf2b67f0484b2e404a95751ebc55b", "sha256": "c07012365803ebc7f902ae90202341d234becf1ec8e0ca0ed9f495811a0c3919" }, "downloads": -1, "filename": "regain-0.0.4.tar.gz", "has_sig": false, "md5_digest": "506bf2b67f0484b2e404a95751ebc55b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32433, "upload_time": "2018-02-13T13:57:40", "url": "https://files.pythonhosted.org/packages/22/e3/18ccd38e2b0f6c62fb8d971fea05bf6fd75c541c36ac42d5076f6dd23463/regain-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "27d855c99643cb37961aaa52d5e15863", "sha256": "f168202c3cfc3379b2df2c933bcf04a1f1104612f2f94fe199cd807311591eb2" }, "downloads": -1, "filename": "regain-0.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "27d855c99643cb37961aaa52d5e15863", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 51000, "upload_time": "2018-02-13T14:29:21", "url": "https://files.pythonhosted.org/packages/a4/7b/ad83f8e1f81556c500ad6ddfd16ae9d01b9029c672ad1853b5ec386a5620/regain-0.0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9185328f6e84bd7fee89399ddae9afbc", "sha256": "af9b6faddaff8b1f3a4acbb04925b376f535ca84e8d7be3dd6113ad9c0dd2b37" }, "downloads": -1, "filename": "regain-0.0.5.tar.gz", "has_sig": false, "md5_digest": "9185328f6e84bd7fee89399ddae9afbc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32420, "upload_time": "2018-02-13T14:29:22", "url": "https://files.pythonhosted.org/packages/f5/5a/eb3ce6c52b1d2c835572bc67ad3b64d672af35a2a78f7cf262c6f390f2ea/regain-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "87f35bb30064bdcdf30e65e4f1f24aaf", "sha256": "c85a550a5fa33f3c8ba8a71c20aef881c416f053361f017d90bb16076cc05ebb" }, "downloads": -1, "filename": "regain-0.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "87f35bb30064bdcdf30e65e4f1f24aaf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 52423, "upload_time": "2018-02-16T13:26:02", "url": "https://files.pythonhosted.org/packages/e7/6b/8b58e3e38ae945b791d0a0cab3f3993be43aa6296b23976da2072dc77d75/regain-0.0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7b2dbdf68a84ae4760238bd35aa9739f", "sha256": "8c8ef5488a718661c3b767a7522d969503704edce3447e39dc661f6a5ff940fc" }, "downloads": -1, "filename": "regain-0.0.6.tar.gz", "has_sig": false, "md5_digest": "7b2dbdf68a84ae4760238bd35aa9739f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33340, "upload_time": "2018-02-16T13:26:04", "url": "https://files.pythonhosted.org/packages/1c/43/bbc24d223dbc504a46d384dbb2604517452319a16d8a2dff2788f54382c3/regain-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "fac30db976ba34a2bbd57d19aca238a0", "sha256": "b1a0d0ffe2e8823b88a553413fd2efeddb2d847f331f2e70d36cb59aeb388c55" }, "downloads": -1, "filename": "regain-0.0.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fac30db976ba34a2bbd57d19aca238a0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 52427, "upload_time": "2018-02-16T13:47:00", "url": "https://files.pythonhosted.org/packages/4f/4d/b42a6ca970768bad35b29999a9b188a442693e7c965a68eccf1459270692/regain-0.0.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7fefda92e6440a9b84fe3ee51acbe9de", "sha256": "1caf3c40df3a967c32afa3b913b11e326a72c3c6fceef2aa31ed5cd894190e07" }, "downloads": -1, "filename": "regain-0.0.7.tar.gz", "has_sig": false, "md5_digest": "7fefda92e6440a9b84fe3ee51acbe9de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33352, "upload_time": "2018-02-16T13:47:02", "url": "https://files.pythonhosted.org/packages/de/d3/4b33ecbb3351c04216875df1f9b2afb5b6425f28f089dc23f82192b3c572/regain-0.0.7.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "a84ad97bcf0db3952675208d7ebbfd54", "sha256": "afb367935f364484dd9c06683f4a6e90f51d6cd1a0e33b284f7da3ab8249f6ef" }, "downloads": -1, "filename": "regain-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a84ad97bcf0db3952675208d7ebbfd54", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 70971, "upload_time": "2018-06-18T11:03:45", "url": "https://files.pythonhosted.org/packages/53/05/ffc296aeb69f8afd822d2c9b188d9e420b80df5179f58e17c0d131508cc7/regain-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "12b35d4ea8c094de6d6ce67ad37eed29", "sha256": "6ff7899fa425497b0ae1eced163273b6fc5b31791fab913e3180f40fc3abf91e" }, "downloads": -1, "filename": "regain-0.1.0.tar.gz", "has_sig": false, "md5_digest": "12b35d4ea8c094de6d6ce67ad37eed29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42914, "upload_time": "2018-06-18T11:03:47", "url": "https://files.pythonhosted.org/packages/1e/8c/0336a90d9bc2deb97a65eaecb28a59817acfb00450e8abbe2191caffed90/regain-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "e4170c4b6223cf65cfc9dd886c6f6c13", "sha256": "60c8434c4568ff5fdefa0ff77b065a4ae5ab6b978fa9d53fb5bb35e5b3660c0d" }, "downloads": -1, "filename": "regain-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e4170c4b6223cf65cfc9dd886c6f6c13", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 70969, "upload_time": "2018-06-18T12:21:42", "url": "https://files.pythonhosted.org/packages/a5/33/96781e6d384fb5588ee20afd2572e4a56db0ab025476da071d5d6f18ef48/regain-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0e6d727c7be0aa6fcf25b82896016ef6", "sha256": "78aaa8a104f51c3a80f25bae5fa3aab3c3fccb2203d81a44c0eb17e988ebc188" }, "downloads": -1, "filename": "regain-0.1.1.tar.gz", "has_sig": false, "md5_digest": "0e6d727c7be0aa6fcf25b82896016ef6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42903, "upload_time": "2018-06-18T12:21:44", "url": "https://files.pythonhosted.org/packages/80/a8/855a971fe9a53160079cf69fc153f0ca9615aceaf9e434834fca641f2b52/regain-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "0c3d2a1703530037580f1b0dfe6d5fb3", "sha256": "2d311853e270eb107c02cfefe6d20156bf72238266ad9a64e7237f9d6714b0d0" }, "downloads": -1, "filename": "regain-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0c3d2a1703530037580f1b0dfe6d5fb3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 92291, "upload_time": "2018-10-02T12:08:18", "url": "https://files.pythonhosted.org/packages/9a/ec/3e7cddd3d21fc2ce4e984537a1435235f06317aacf2228fce3c0b67030b8/regain-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f652070a7650928a014f4be436b20987", "sha256": "3e5ed22ae07bd9f1daefae9581a10826696d88c8ed686a6977d788e6e8968350" }, "downloads": -1, "filename": "regain-0.1.2.tar.gz", "has_sig": false, "md5_digest": "f652070a7650928a014f4be436b20987", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60200, "upload_time": "2018-10-02T12:08:20", "url": "https://files.pythonhosted.org/packages/f3/8a/f5b88b34d6e810688d5b67a0674bcf2ee88e57583aba658ccc9e4072bc21/regain-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "806b568a942f3bd2e2805f9f4f385fa8", "sha256": "0d46a5472092af123e6981753c8fe3f7722cd56beb498036c734a2a68e6de80d" }, "downloads": -1, "filename": "regain-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "806b568a942f3bd2e2805f9f4f385fa8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 93321, "upload_time": "2018-10-23T10:28:24", "url": "https://files.pythonhosted.org/packages/d9/53/afb025690cedc76aba6133d87cab3cd095f8b1883424ca4326ee84ccfc29/regain-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f74514f1d284f41bd5964d311bbb6c50", "sha256": "fbc8a117a26ef387753c521ff7222b917af024316fcf2efe7d4f405e87431503" }, "downloads": -1, "filename": "regain-0.1.3.tar.gz", "has_sig": false, "md5_digest": "f74514f1d284f41bd5964d311bbb6c50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62271, "upload_time": "2018-10-23T10:28:26", "url": "https://files.pythonhosted.org/packages/a0/6f/bcd5e74d8a9371a6c472b21fce49bb96594af9a36eb5827b4a61f98411c0/regain-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "f42e169dc8cf347c4f46062a27b8bcfd", "sha256": "a8b3855c7cd3c4070559c442a9f8f9c0df217710c47cffa029847df62314699c" }, "downloads": -1, "filename": "regain-0.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f42e169dc8cf347c4f46062a27b8bcfd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 94425, "upload_time": "2018-11-13T09:58:12", "url": "https://files.pythonhosted.org/packages/45/b5/3acc191190d5b27350a03e9c4862edb8fc4133c8b9acb82dc1603883a5c3/regain-0.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cd5955ba182cf7de463e6ca5c759feea", "sha256": "d634e4c35f581059a12169b03c50e39de5a193a12e9122c15a4f095ae76d941d" }, "downloads": -1, "filename": "regain-0.1.4.tar.gz", "has_sig": false, "md5_digest": "cd5955ba182cf7de463e6ca5c759feea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63318, "upload_time": "2018-11-13T09:58:13", "url": "https://files.pythonhosted.org/packages/eb/42/6c69cf9d8af4d2702e7ebc7f4e8e28af95bff842bdd0f26a5fde4dcbf769/regain-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "360134e36c22d6c6c5e754545ff03697", "sha256": "6b45ac8892805b650ec65cc93c4b1c9953ad62ab52409a486a38944d3347d9a1" }, "downloads": -1, "filename": "regain-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "360134e36c22d6c6c5e754545ff03697", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 96361, "upload_time": "2019-01-18T18:04:58", "url": "https://files.pythonhosted.org/packages/07/75/3416152ba1609bec5115b4ef5d95bb2af5c78a65b760554048cd2085f94d/regain-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fb39e6e1cf590531f93616238e665f45", "sha256": "2b134d1b88567dd80df3a0a5cdf95cacc6d12d907d198da10f29c5068492040e" }, "downloads": -1, "filename": "regain-0.1.5.tar.gz", "has_sig": false, "md5_digest": "fb39e6e1cf590531f93616238e665f45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65160, "upload_time": "2019-01-18T18:05:00", "url": "https://files.pythonhosted.org/packages/06/48/398819637a6d93c94b7a20ab091005271f32fab8138e0365a7561d721428/regain-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "2f17ce92cdd05a554026312c71f417f6", "sha256": "cf07490fbeefa960dc5e9b2e2e1d9f36403e1fe9ae740477a4bb6636ab4c381f" }, "downloads": -1, "filename": "regain-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2f17ce92cdd05a554026312c71f417f6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 96352, "upload_time": "2019-01-18T18:13:21", "url": "https://files.pythonhosted.org/packages/5f/24/ec464d20a1d6f08e41fff4a87cfdeb61ffe60ee480dc10655064ba1a37ac/regain-0.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f633ba3dabbc83797b7b15507260a922", "sha256": "84cd769bc4119a248c738ae05fc5078aba7e47ed7b39518f01cbce87d16c8e81" }, "downloads": -1, "filename": "regain-0.1.6.tar.gz", "has_sig": false, "md5_digest": "f633ba3dabbc83797b7b15507260a922", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65150, "upload_time": "2019-01-18T18:13:23", "url": "https://files.pythonhosted.org/packages/c2/71/3b4d5ffdeb58a18fcfc8cc72d0ca28337c7ba32619beff0d974bf876510f/regain-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "32b07ab001a4e62d79fc6d50c1f99da7", "sha256": "0d23ec14c3c719fcf27beaba51e7b18b850c4a1a0372da251118b6eff7d8322b" }, "downloads": -1, "filename": "regain-0.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "32b07ab001a4e62d79fc6d50c1f99da7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 96360, "upload_time": "2019-01-19T10:35:54", "url": "https://files.pythonhosted.org/packages/6e/a9/eb93b30f7ab1c523f7a3017490ab08aba72e87a89bda9236b0587dfe4270/regain-0.1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8e0d048e8f5f83b60e4b051cadcd8564", "sha256": "680f9c62c7020dea534c257a94ae30b7ad3b0b2ec028b79c54de7bd91d185547" }, "downloads": -1, "filename": "regain-0.1.7.tar.gz", "has_sig": false, "md5_digest": "8e0d048e8f5f83b60e4b051cadcd8564", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65153, "upload_time": "2019-01-19T10:35:55", "url": "https://files.pythonhosted.org/packages/00/e8/29bd135a41edbf4dd28acf6b0e37d1d399c7308120f0c31e91d9eb372905/regain-0.1.7.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "9b0108a60a6b554e210cabca66232cf3", "sha256": "b3d05aee52d66b711a0cabae16e910be242cf6683fe8b2400b558287e22d8ef5" }, "downloads": -1, "filename": "regain-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9b0108a60a6b554e210cabca66232cf3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 97854, "upload_time": "2019-02-26T11:29:10", "url": "https://files.pythonhosted.org/packages/45/44/07584bb6b03a029246f4abb388e8650de5bf0a4daeebaea03edc9a8468f0/regain-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "53b3f3365f094df534979d1550c31966", "sha256": "e43effb410db45ff9cd849487cb6e5b9b4d0e6741ec1b80c0aff6e20f3b1f44b" }, "downloads": -1, "filename": "regain-0.2.0.tar.gz", "has_sig": false, "md5_digest": "53b3f3365f094df534979d1550c31966", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66854, "upload_time": "2019-02-26T11:29:12", "url": "https://files.pythonhosted.org/packages/6a/b4/b691f3b69e9323f808181f5593e44548cb69744a5bcc664890187ef151d0/regain-0.2.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9b0108a60a6b554e210cabca66232cf3", "sha256": "b3d05aee52d66b711a0cabae16e910be242cf6683fe8b2400b558287e22d8ef5" }, "downloads": -1, "filename": "regain-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9b0108a60a6b554e210cabca66232cf3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 97854, "upload_time": "2019-02-26T11:29:10", "url": "https://files.pythonhosted.org/packages/45/44/07584bb6b03a029246f4abb388e8650de5bf0a4daeebaea03edc9a8468f0/regain-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "53b3f3365f094df534979d1550c31966", "sha256": "e43effb410db45ff9cd849487cb6e5b9b4d0e6741ec1b80c0aff6e20f3b1f44b" }, "downloads": -1, "filename": "regain-0.2.0.tar.gz", "has_sig": false, "md5_digest": "53b3f3365f094df534979d1550c31966", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66854, "upload_time": "2019-02-26T11:29:12", "url": "https://files.pythonhosted.org/packages/6a/b4/b691f3b69e9323f808181f5593e44548cb69744a5bcc664890187ef151d0/regain-0.2.0.tar.gz" } ] }