{ "info": { "author": "The Priesemann Group", "author_email": "paul.spitzner@ds.mpg.de", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8" ], "description": "# Mr. Estimator\n\n[![Latest Version](https://img.shields.io/pypi/v/mrestimator.svg)](https://pypi.python.org/pypi/mrestimator/)\n[![Documentation](https://readthedocs.org/projects/mrestimator/badge/?version=latest&style=flat)](https://mrestimator.readthedocs.io/en/latest/)\n[![License](https://img.shields.io/pypi/l/mrestimator.svg)](https://opensource.org/licenses/BSD-3-Clause)\n[![Supported Python Versions](https://img.shields.io/pypi/pyversions/mrestimator.svg)](https://pypi.python.org/pypi/mrestimator/)\n\nWelcome to the Toolbox for the Multistep Regression Estimator (\"Mister Estimator\").\n\nIf you find bugs, encounter unexpected behaviour or want to comment, please let us know via mail or open an issue on github. Any input is greatly appreciated.\n\n- [Documentation](https://mrestimator.readthedocs.io/en/latest/)\n- [Getting Started](https://mrestimator.readthedocs.io/en/latest/doc/gettingstarted.html)\n- [Python Package index](https://pypi.org/project/mrestimator)\n- [Github](https://github.com/Priesemann-Group/mrestimator)\n- [arXiv (a nicely-formated PDF)](https://arxiv.org/abs/2007.03367)\n- Details on the multistep regression estimator: [J. Wilting and V. Priesemann, Nat. Commun. 9, 2325 (2018)](https://doi.org/10.1038/s41467-018-04725-4)\n\nIf you use our toolbox for a scientific publication please cite it as\n`Spitzner FP, Dehning J, Wilting J, Hagemann A, P. Neto J, Zierenberg J, et al. (2021) MR. Estimator, a toolbox to determine intrinsic timescales from subsampled spiking activity. PLoS ONE 16(4): e0249447. https://doi.org/10.1371/journal.pone.0249447`\n\n## Dependencies\n- Python (>=3.5)\n- numpy (>=1.11.0)\n- scipy (>=1.0.0)\n- matplotlib (>=1.5.3)\n\n## Optional Dependencies\n- numba (>=0.44), for parallelization\n- tqdm, for progress bars\n\nWe recommend (and develop with) the latest stable versions of the dependencies, at the time of writing that is\nPython 3.7.0, numpy 1.15.1, scipy 1.1.0 and matplotlib 2.2.3.\n\n\n## What's new\n\n### 18.10.2021 [v0.1.8](https://pypi.org/project/mrestimator/0.1.8)\n* is a quick bugfix. We had to disable numba parallelization for the time being.\n\n### 07.05.2021 Now published in [PLOS ONE](https://doi.org/10.1371/journal.pone.0249447).\n\n### 08.07.2020 Our paper draft is now on arXiv\n* [arXiv:2007.03367](https://arxiv.org/abs/2007.03367): \"MR. Estimator, a toolbox to determine intrinsic timescales from subsampled spiking activity\".\n* Additional scripts and downloadable data to recreate the figure on triallength are available on [gin](https://gin.g-node.org/pspitzner/mrestimator_triallength/src/master).\n\n\n\n## Installation\nAssuming a working Python3 environment, usually you can install via pip (also installs the optional dependencies):\n\n```\npip3 install 'mrestimator[full]'\n```\n\nTo install (or update an existing installation) with optional dependencies:\n\n```\npip3 install -U 'mrestimator[full]'\n```\n\nIf you run into problems during installation, they are most likely due to numpy and scipy.\nYou may check the [official scipy.org documentation](https://scipy.org/install.html) or try using anaconda as outlined below.\n\n### Install Using Anaconda\n\nWe sincerely recommend using conda, more so if you are unsure about the dependencies on your system or lack administrator priviliges. It is easy to install, allows you to manage different versions of Python and if something breaks, you can role back and reinstall easily - all without leaving your user directory.\n\nHead over to [anaconda.com](https://www.anaconda.com/download/), and download the installer for Python 3.7.\n\nAfter following the installation instructions (default settings are fine for most users),\nstart a new python session by typing ```python``` in a new terminal window.\nYou will see something similar to the following:\n\n```\nPython 3.7.0 (default, Jun 28 2018, 07:39:16)\n[Clang 4.0.1 (tags/RELEASE_401/final)] :: Anaconda, Inc. on darwin\nType \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n>>>\n```\n\nEnd the session (```exit()``` or Ctrl-D) and type ```conda list```, which will output a list of the packages that came bundled with anaconda.\nAll dependencies for Mr. Estimator are included.\n\nOptionally, you can create a new environment (e.g. named 'myenv') for the toolbox ```conda create --name myenv```\nand activate it with ``source activate myenv`` (``activate myenv`` on windows).\nFor more details on managing environments with conda, see [here](https://conda.io/docs/user-guide/tasks/manage-environments.html).\n\nNow install using pip: ```pip install 'mrestimator[full]'``` and afterwards you should be able to import the module into any python3 session\n\n```\npython\n>>> import mrestimator as mre\nINFO Loaded mrestimator v0.1.6, writing to /tmp/mre_paul/\n```\n\n### Manual Installation\n\nClone the repository via ssh or https\n\n```\ngit clone git@github.com:Priesemann-Group/mrestimator.git\ngit clone https://github.com/Priesemann-Group/mrestimator.git\n```\n\nAnd optionally,\n\n```\nexport PYTHONPATH=\"${PYTHONPATH}:$(pwd)/mrestimator\"\n```\n\nThis line adds the downloaded directory to your `PYTHONPATH` environment\nvariable, so that it will be found automatically when importing. If you want to add the path\nautomatically when you login, you can add it to your `~/.bashrc` or `~/.profile`:\n\n```\necho 'export PYTHONPATH=\"${PYTHONPATH}:'$(pwd)'/mrestimator\"' >> ~/.bashrc\n```\n\n### Pre-release versions\n\nYou can upgrade to pre-release versions using pip\n\n```\npip install -U --pre 'mrestimator[full]'\n```\n\nTo revert to the stable version, run\n\n```\npip install mrestimator==0.1.6\n```\n\nor\n\n```\npip install --force-reinstall mrestimator\n```\n\nfor a complete (longer) reinstall of all dependencies.\n\n### Parallelization and running on clusters\n\nPer default, the toolbox and its dependencies use all threads available on the host machine.\nWhile this is great if running locally, it is undesired for distributed computing as the workload manager expects jobs of serial queues to only use one thread.\nTo disable multi-threading, you can set the following environment variables (e.g. at the beginning of a job file)\n\n```\nexport OPENBLAS_NUM_THREADS=1\nexport MKL_NUM_THREADS=1\nexport NUMEXPR_NUM_THREADS=1\nexport OMP_NUM_THREADS=1\nexport NUMBA_NUM_THREADS=1\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/Priesemann-Group/mrestimator", "keywords": "", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "mrestimator", "package_url": "https://pypi.org/project/mrestimator/", "platform": "", "project_url": "https://pypi.org/project/mrestimator/", "project_urls": { "Homepage": "https://github.com/Priesemann-Group/mrestimator" }, "release_url": "https://pypi.org/project/mrestimator/0.1.8/", "requires_dist": null, "requires_python": ">=3.5.0", "summary": "Toolbox for the Multistep Regression Estimator.", "version": "0.1.8", "yanked": false, "yanked_reason": null }, "last_serial": 11755453, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "f1286eb8fa5432fe962ecd4291d99045", "sha256": "eead88f34777fe10b80c1e929504dead9fa80736084fc60b4a1370535242c49d" }, "downloads": -1, "filename": "mrestimator-0.0.1.tar.gz", "has_sig": false, "md5_digest": "f1286eb8fa5432fe962ecd4291d99045", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16456, "upload_time": "2018-09-17T08:36:54", "upload_time_iso_8601": "2018-09-17T08:36:54.142641Z", "url": "https://files.pythonhosted.org/packages/aa/e5/e2a6db0defb26077afac7a7274fafeed7ff082eeb7adeeaa8f6e0eaee6a6/mrestimator-0.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "6fdfbc30df8ff8a0b9db68d387655544", "sha256": "34b9e41c59b8edb0ea7ff653d7016cf5f4f2f39149b67db52de41094f9262cf1" }, "downloads": -1, "filename": "mrestimator-0.0.2.tar.gz", "has_sig": false, "md5_digest": "6fdfbc30df8ff8a0b9db68d387655544", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.5.0", "size": 17801, "upload_time": "2018-09-17T09:21:24", "upload_time_iso_8601": "2018-09-17T09:21:24.981903Z", "url": "https://files.pythonhosted.org/packages/d0/14/be036546754b2d0ae223bac1a0d250f9d58d83ae4f6e50ca7bfebb351654/mrestimator-0.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "e1fb60ac7191e26f259d017bca787f99", "sha256": "11f919f2e864a6cbcc2e0df95902fa51e2ff2afe6c3212da81efe520eba3e5c8" }, "downloads": -1, "filename": "mrestimator-0.0.3.tar.gz", "has_sig": false, "md5_digest": "e1fb60ac7191e26f259d017bca787f99", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 18119, "upload_time": "2018-09-19T08:55:27", "upload_time_iso_8601": "2018-09-19T08:55:27.164050Z", "url": "https://files.pythonhosted.org/packages/35/8d/7d947a22c8ced43f8b596d494c4c93c436565e138c621d22678ba5e2dc2b/mrestimator-0.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "25aec8de46d386b5885b1ff6aa8f0b0b", "sha256": "17d2562e4b02426125e864e4d14cf914c3a0cf3fa9f1c40a0f00ce58855c3b87" }, "downloads": -1, "filename": "mrestimator-0.1.0.tar.gz", "has_sig": false, "md5_digest": "25aec8de46d386b5885b1ff6aa8f0b0b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 26287, "upload_time": "2018-10-11T15:22:17", "upload_time_iso_8601": "2018-10-11T15:22:17.062729Z", "url": "https://files.pythonhosted.org/packages/37/f5/60f6c4ace2572c59c74803ac57ce89de2fbae2abb3b303b1ec63d9969348/mrestimator-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "80b019023c369d50b8fa43419d70f617", "sha256": "d3a58129813e17099b95482921162a15795f2efca1b816a70819b03f346e16b7" }, "downloads": -1, "filename": "mrestimator-0.1.1.tar.gz", "has_sig": false, "md5_digest": "80b019023c369d50b8fa43419d70f617", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 32622, "upload_time": "2018-11-01T15:55:06", "upload_time_iso_8601": "2018-11-01T15:55:06.586265Z", "url": "https://files.pythonhosted.org/packages/4f/e0/8fc662966c9b1e5862c86f287aa5bfee8ec624bc2154c17a788de8687aaa/mrestimator-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "8b7fae7853f6547b4a6a1b6ab18f4cca", "sha256": "eb2aed6fa44502509dac30ff44127217d80ac7c42b1d956c37ae3b63e451a009" }, "downloads": -1, "filename": "mrestimator-0.1.2.tar.gz", "has_sig": false, "md5_digest": "8b7fae7853f6547b4a6a1b6ab18f4cca", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 33471, "upload_time": "2018-11-27T09:14:23", "upload_time_iso_8601": "2018-11-27T09:14:23.920050Z", "url": "https://files.pythonhosted.org/packages/a1/b6/5e1c50082f7b7281daca02dd92538429a9b032d094cd2a85e1676eee0b68/mrestimator-0.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "aa9cea2dd1f7e71f8c03cbf21a79947d", "sha256": "664d42f951dbeb967079ef9d4fe0e8148fb641b2a8538696966eca2e70b9aba0" }, "downloads": -1, "filename": "mrestimator-0.1.3.tar.gz", "has_sig": false, "md5_digest": "aa9cea2dd1f7e71f8c03cbf21a79947d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 34782, "upload_time": "2019-01-16T15:33:20", "upload_time_iso_8601": "2019-01-16T15:33:20.872096Z", "url": "https://files.pythonhosted.org/packages/b6/d4/7376ec735476551e717dccba7562564a1e09dbb2390bc077267162261d2c/mrestimator-0.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "c5e01b6fa2cd9245183217d11d90e259", "sha256": "34388a8ab901bfe2f790b8df5221d130cfa50670eb8d5bc9f583fc9ce2e6fe05" }, "downloads": -1, "filename": "mrestimator-0.1.4.tar.gz", "has_sig": false, "md5_digest": "c5e01b6fa2cd9245183217d11d90e259", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 36329, "upload_time": "2019-02-05T14:15:14", "upload_time_iso_8601": "2019-02-05T14:15:14.402934Z", "url": "https://files.pythonhosted.org/packages/c0/02/16f6a577cbeb51ec3e93bbc8e56a7c39f5b66c45e0b85016c93e5b15c2a5/mrestimator-0.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "4f77a16aa1f41e0bca7d6e593e4eb8b7", "sha256": "b72ab04f444f18f9a826290e640bb076ef2b056e507524c62343b4193b3ed796" }, "downloads": -1, "filename": "mrestimator-0.1.5.tar.gz", "has_sig": false, "md5_digest": "4f77a16aa1f41e0bca7d6e593e4eb8b7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 39988, "upload_time": "2019-09-24T12:24:32", "upload_time_iso_8601": "2019-09-24T12:24:32.337578Z", "url": "https://files.pythonhosted.org/packages/8b/cc/a7c100aa2a5dc92f4ffa1982dd2392d077be6c98c605840d5abfdd10c0eb/mrestimator-0.1.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.5b2": [ { "comment_text": "", "digests": { "md5": "7af4901bf60c9cd82043df13fa4ca7d1", "sha256": "4dbbf536f165d8358a49fb948565d8b7ec9e196a26ada7109c6cbc68eada0f64" }, "downloads": -1, "filename": "mrestimator-0.1.5b2.tar.gz", "has_sig": false, "md5_digest": "7af4901bf60c9cd82043df13fa4ca7d1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 38735, "upload_time": "2019-08-06T10:10:41", "upload_time_iso_8601": "2019-08-06T10:10:41.569202Z", "url": "https://files.pythonhosted.org/packages/23/e4/109d889506840213f31d99c24715483c6c0b16cfa868d780fb1affb16288/mrestimator-0.1.5b2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.5b3": [ { "comment_text": "", "digests": { "md5": "5c69eec5b1a46e216d178c040aa73413", "sha256": "0542c9de778a864a09952e97a27b4d9d32c0239f31040e0357cc15cfd71f5511" }, "downloads": -1, "filename": "mrestimator-0.1.5b3.tar.gz", "has_sig": false, "md5_digest": "5c69eec5b1a46e216d178c040aa73413", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 39411, "upload_time": "2019-08-12T08:23:56", "upload_time_iso_8601": "2019-08-12T08:23:56.376058Z", "url": "https://files.pythonhosted.org/packages/d7/62/2a2368a1022b3a82a3b89ba4b02cd293db33f2f9f23310c93b2d1fbf1159/mrestimator-0.1.5b3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "1756e4a1bb03511198aa81b646ba2e8c", "sha256": "c379a820c29610afe7026f329279d938609fb5d531bcf8dff271df2ea466fb09" }, "downloads": -1, "filename": "mrestimator-0.1.6.tar.gz", "has_sig": false, "md5_digest": "1756e4a1bb03511198aa81b646ba2e8c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 42748, "upload_time": "2020-04-23T10:15:50", "upload_time_iso_8601": "2020-04-23T10:15:50.578460Z", "url": "https://files.pythonhosted.org/packages/78/35/ec9b078c7a06140d4d2bb830c6e1708297ebbcbbb1de3d99f48cc896ca89/mrestimator-0.1.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.6b1": [ { "comment_text": "", "digests": { "md5": "2c35e2ae02307a2d7a396aa4490c8d97", "sha256": "98232dd1bd2056cf77471e9dcaee2118e2a7851cccd295f50e2763bb9a9f6f80" }, "downloads": -1, "filename": "mrestimator-0.1.6b1.tar.gz", "has_sig": false, "md5_digest": "2c35e2ae02307a2d7a396aa4490c8d97", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 40323, "upload_time": "2019-10-14T10:41:36", "upload_time_iso_8601": "2019-10-14T10:41:36.196139Z", "url": "https://files.pythonhosted.org/packages/7a/76/d397b060ca69baed6f5cd59cb0a5ef73246bc87b6bfc4f49a0529fbe9fb1/mrestimator-0.1.6b1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.6b2": [ { "comment_text": "", "digests": { "md5": "fa7104895bb70617f4c4220e30247a7d", "sha256": "4391ca6c88050fedc6f17f51cf06d3914757f1a5cc33346d16f805fd700c9da0" }, "downloads": -1, "filename": "mrestimator-0.1.6b2.tar.gz", "has_sig": false, "md5_digest": "fa7104895bb70617f4c4220e30247a7d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 40339, "upload_time": "2019-10-18T13:48:17", "upload_time_iso_8601": "2019-10-18T13:48:17.767475Z", "url": "https://files.pythonhosted.org/packages/15/1c/938f1cdb1ff775f86805b5d78d55fdc6b24afab782993d4d560e15ab9f3c/mrestimator-0.1.6b2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.6b3": [ { "comment_text": "", "digests": { "md5": "229be01276d61503cdd0d10c25b098b6", "sha256": "ebc0ad41f7de0130e13c893cb44947a05f1d5bd90a26772a6b109c9f729063ba" }, "downloads": -1, "filename": "mrestimator-0.1.6b3.tar.gz", "has_sig": false, "md5_digest": "229be01276d61503cdd0d10c25b098b6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 40622, "upload_time": "2019-10-24T16:09:02", "upload_time_iso_8601": "2019-10-24T16:09:02.223133Z", "url": "https://files.pythonhosted.org/packages/60/d2/2023cb8f95fd83beb68297295297ed28882026d5de4cdcad691922057712/mrestimator-0.1.6b3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.6b5": [ { "comment_text": "", "digests": { "md5": "d43bbd2bb651b098b1d0fa37cebc200c", "sha256": "a3c7a1b7cc4c949f3f9cc12ff88625c710d2c7191d27899cd417375d47200d21" }, "downloads": -1, "filename": "mrestimator-0.1.6b5.tar.gz", "has_sig": false, "md5_digest": "d43bbd2bb651b098b1d0fa37cebc200c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 40841, "upload_time": "2020-01-21T18:19:05", "upload_time_iso_8601": "2020-01-21T18:19:05.282919Z", "url": "https://files.pythonhosted.org/packages/62/19/2e2b5bd0cf01fc74be7162cd7fbe7675b53995c179c1e684e44fd59738fb/mrestimator-0.1.6b5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.6b6": [ { "comment_text": "", "digests": { "md5": "10ebe29ca75ea1c280cce31278d9258a", "sha256": "d7a674d925e77de6d3c5952147cd9412a0f4533eaeb46f4596b2ecab2f1c0057" }, "downloads": -1, "filename": "mrestimator-0.1.6b6.tar.gz", "has_sig": false, "md5_digest": "10ebe29ca75ea1c280cce31278d9258a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 42488, "upload_time": "2020-02-19T15:56:24", "upload_time_iso_8601": "2020-02-19T15:56:24.177547Z", "url": "https://files.pythonhosted.org/packages/38/8d/5ea014769558be6e884c3812e293d5f0606d8e3cf7e236b6d969a78d3ae2/mrestimator-0.1.6b6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.6b7": [ { "comment_text": "", "digests": { "md5": "f38351ddee9dfc92b20a4e298fe9b55f", "sha256": "da5c2a14c63dec2c2e20026c71a82cb22b217958970b6039385a32cc411108a7" }, "downloads": -1, "filename": "mrestimator-0.1.6b7.tar.gz", "has_sig": false, "md5_digest": "f38351ddee9dfc92b20a4e298fe9b55f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 42796, "upload_time": "2020-03-03T16:38:30", "upload_time_iso_8601": "2020-03-03T16:38:30.828961Z", "url": "https://files.pythonhosted.org/packages/77/7f/94b1e7bfe56cd1e04c01086083796a2a3cff7853bd026cb2ab4a3b56e3b6/mrestimator-0.1.6b7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "10b551a4078e05052000958d15daac22", "sha256": "35ce64d87cbe772d009e5adac9f0aa291f634cd581ade35c339d2aa681035252" }, "downloads": -1, "filename": "mrestimator-0.1.7.tar.gz", "has_sig": false, "md5_digest": "10b551a4078e05052000958d15daac22", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 44169, "upload_time": "2021-05-07T19:07:08", "upload_time_iso_8601": "2021-05-07T19:07:08.941001Z", "url": "https://files.pythonhosted.org/packages/2b/af/3ad7988eedac058b2bcd8ddc80b942e1627ed607ac6b876c77432f2bcea5/mrestimator-0.1.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "bfca06dd4f9a5a66ab9553cf0dc44c94", "sha256": "7da5250ae04a713b17e112d1c74e0c791fcd7a00cfdded06c764e2681dae6343" }, "downloads": -1, "filename": "mrestimator-0.1.8.tar.gz", "has_sig": false, "md5_digest": "bfca06dd4f9a5a66ab9553cf0dc44c94", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 154899, "upload_time": "2021-10-18T08:41:46", "upload_time_iso_8601": "2021-10-18T08:41:46.333000Z", "url": "https://files.pythonhosted.org/packages/fd/58/a2ae20254ec032977b1eefa4bc67b8afa4dec92acbd1e10cd680c89c0e56/mrestimator-0.1.8.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "bfca06dd4f9a5a66ab9553cf0dc44c94", "sha256": "7da5250ae04a713b17e112d1c74e0c791fcd7a00cfdded06c764e2681dae6343" }, "downloads": -1, "filename": "mrestimator-0.1.8.tar.gz", "has_sig": false, "md5_digest": "bfca06dd4f9a5a66ab9553cf0dc44c94", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 154899, "upload_time": "2021-10-18T08:41:46", "upload_time_iso_8601": "2021-10-18T08:41:46.333000Z", "url": "https://files.pythonhosted.org/packages/fd/58/a2ae20254ec032977b1eefa4bc67b8afa4dec92acbd1e10cd680c89c0e56/mrestimator-0.1.8.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }