{ "info": { "author": "Luis Pedro Coelho", "author_email": "luis@luispedro.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: C++", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: Image Recognition", "Topic :: Software Development :: Libraries" ], "description": "# Mahotas\n\n## Python Computer Vision Library\n\nMahotas is a library of fast computer vision algorithms (all implemented\nin C++ for speed) operating over numpy arrays.\n\n[![Travis](https://api.travis-ci.org/luispedro/mahotas.png)](https://travis-ci.org/luispedro/mahotas)\n[![Coverage Status](https://coveralls.io/repos/github/luispedro/mahotas/badge.svg?branch=master)](https://coveralls.io/github/luispedro/mahotas?branch=master)\n[![Downloads](https://pepy.tech/badge/mahotas/month)](https://pepy.tech/project/mahotas/month)\n[![License](http://badge.kloud51.com/pypi/l/mahotas.svg)](http://opensource.org/licenses/MIT)\n[![Install with Anaconda](https://anaconda.org/conda-forge/mahotas/badges/installer/conda.svg)](https://anaconda.org/conda-forge/mahotas)\n[![Join the chat at https://gitter.im/luispedro/mahotas](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/luispedro/mahotas)\n[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fluispedro%2Fmahotas.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fluispedro%2Fmahotas?ref=badge_shield)\n\nPython versions 2.7, 3.4+, are supported.\n\nNotable algorithms:\n\n- [watershed](http://mahotas.readthedocs.io/en/latest/distance.html)\n- [convex points calculations](http://mahotas.readthedocs.io/en/latest/polygon.html).\n- hit & miss, thinning.\n- Zernike & Haralick, LBP, and TAS features.\n- [Speeded-Up Robust Features\n (SURF)](http://mahotas.readthedocs.io/en/latest/surf.html), a form of local\n features.\n- [thresholding](http://mahotas.readthedocs.io/en/latest/thresholding.html).\n- convolution.\n- Sobel edge detection.\n- spline interpolation\n- SLIC super pixels.\n\nMahotas currently has over 100 functions for image processing and\ncomputer vision and it keeps growing.\n\nThe release schedule is roughly one release a month and each release\nbrings new functionality and improved performance. The interface is very\nstable, though, and code written using a version of mahotas from years\nback will work just fine in the current version, except it will be\nfaster (some interfaces are deprecated and will be removed after a few\nyears, but in the meanwhile, you only get a warning). In a few\nunfortunate cases, there was a bug in the old code and your results will\nchange for the better.\n\nPlease cite [the mahotas paper](http://dx.doi.org/10.5334/jors.ac) (see\ndetails below under [Citation](#Citation)) if you use it in a publication.\n\n## Examples\n\nThis is a simple example (using an example file that is shipped with\nmahotas) of calling watershed using above threshold regions as a seed\n(we use Otsu to define threshold).\n\n # import using ``mh`` abbreviation which is common:\n import mahotas as mh\n\n # Load one of the demo images\n im = mh.demos.load('nuclear')\n\n # Automatically compute a threshold\n T_otsu = mh.thresholding.otsu(im)\n\n # Label the thresholded image (thresholding is done with numpy operations\n seeds,nr_regions = mh.label(im > T_otsu)\n\n # Call seeded watershed to expand the threshold\n labeled = mh.cwatershed(im.max() - im, seeds)\n\nHere is a very simple example of using `mahotas.distance` (which\ncomputes a distance map):\n\n import pylab as p\n import numpy as np\n import mahotas as mh\n\n f = np.ones((256,256), bool)\n f[200:,240:] = False\n f[128:144,32:48] = False\n # f is basically True with the exception of two islands: one in the lower-right\n # corner, another, middle-left\n\n dmap = mh.distance(f)\n p.imshow(dmap)\n p.show()\n\n(This is under [mahotas/demos/distance.py](https://github.com/luispedro/mahotas/blob/master/mahotas/demos/distance.py).)\n\nHow to invoke thresholding functions:\n\n import mahotas as mh\n import numpy as np\n from pylab import imshow, gray, show, subplot\n from os import path\n\n # Load photo of mahotas' author in greyscale\n photo = mh.demos.load('luispedro', as_grey=True)\n\n # Convert to integer values (using numpy operations)\n photo = photo.astype(np.uint8)\n\n # Compute Otsu threshold\n T_otsu = mh.otsu(photo)\n thresholded_otsu = (photo > T_otsu)\n\n # Compute Riddler-Calvard threshold\n T_rc = mh.rc(photo)\n thresholded_rc = (photo > T_rc)\n\n # Now call pylab functions to display the image\n gray()\n subplot(2,1,1)\n imshow(thresholded_otsu)\n subplot(2,1,2)\n imshow(thresholded_rc)\n show()\n\nAs you can see, we rely on numpy/matplotlib for many operations.\n\n## Install\n\nIf you are using [conda](http://anaconda.org/), you can install mahotas from\n[conda-forge](https://conda-forge.github.io/) using the following commands:\n\n conda config --add channels conda-forge\n conda install mahotas\n\n### Compilation from source\n\nYou will need python (naturally), numpy, and a C++ compiler. Then you\nshould be able to use:\n\n pip install mahotas\n\nYou can test your installation by running:\n\n python -c \"import mahotas as mh; mh.test()\"\n\nIf you run into issues, the manual has more [extensive documentation on\nmahotas\ninstallation](https://mahotas.readthedocs.io/en/latest/install.html),\nincluding how to find pre-built for several platforms.\n\n## Citation\n\nIf you use mahotas on a published publication, please cite:\n\n> **Luis Pedro Coelho** Mahotas: Open source software for scriptable\n> computer vision in Journal of Open Research Software, vol 1, 2013.\n> [[DOI](http://dx.doi.org/10.5334/jors.ac)]\n\nIn Bibtex format:\n\n> @article{mahotas,\n> author = {Luis Pedro Coelho},\n> title = {Mahotas: Open source software for scriptable computer vision},\n> journal = {Journal of Open Research Software},\n> year = {2013},\n> doi = {http://dx.doi.org/10.5334/jors.ac},\n> month = {July},\n> volume = {1}\n> }\n\nYou can access this information using the `mahotas.citation()` function.\n\n## Development\n\nDevelopment happens on github\n([http://github.com/luispedro/mahotas](https://github.com/luispedro/mahotas)).\n\nYou can set the `DEBUG` environment variable before compilation to get a\ndebug version:\n\n export DEBUG=1\n python setup.py test\n\nYou can set it to the value `2` to get extra checks:\n\n export DEBUG=2\n python setup.py test\n\nBe careful not to use this in production unless you are chasing a bug.\nDebug level 2 is very slow as it adds many runtime checks.\n\nThe `Makefile` that is shipped with the source of mahotas can be useful\ntoo. `make debug` will create a debug build. `make fast` will create a\nnon-debug build (you need to `make clean` in between). `make test` will\nrun the test suite.\n\n## Links & Contacts\n\n*Documentation*:\n[https://mahotas.readthedocs.io/](https://mahotas.readthedocs.io/)\n\n*Issue Tracker*: [github mahotas\nissues](https://github.com/luispedro/mahotas/issues)\n\n*Mailing List*: Use the [pythonvision mailing\nlist](http://groups.google.com/group/pythonvision?pli=1) for questions,\nbug submissions, etc. Or ask on [stackoverflow (tag\nmahotas)](http://stackoverflow.com/questions/tagged/mahotas)\n\n*Main Author & Maintainer*: [Luis Pedro Coelho](http://luispedro.org)\n(follow on [twitter](https://twitter.com/luispedrocoelho) or\n[github](https://github.com/luispedro)).\n\nMahotas also includes code by Zachary Pincus [from scikits.image], Peter\nJ. Verveer [from scipy.ndimage], and Davis King [from dlib], Christoph\nGohlke, as well as\n[others](https://github.com/luispedro/mahotas/graphs/contributors).\n\n[Presentation about mahotas for bioimage\ninformatics](http://luispedro.org/files/talks/2013/EuBIAS/mahotas.html)\n\nFor more general discussion of computer vision in Python, the\n[pythonvision mailing\nlist](http://groups.google.com/group/pythonvision?pli=1) is a much\nbetter venue and generates a public discussion log for others in the\nfuture. You can use it for mahotas or general computer vision in Python\nquestions.\n\n## Recent Changes\n\n### Version 1.4.8 (Oct 11 2019)\n\n- Fix co-occurrence matrix computation (patch by @databaaz)\n\n### Version 1.4.7 (Jul 10 2019)\n\n- Fix compilation on Windows\n\n### Version 1.4.6 (Jul 10 2019)\n\n- Make watershed work for >2\u00b3\u00b9 voxels (issue #102)\n- Remove milk from demos\n- Improve performance by avoid unnecessary array copies in `cwatershed()`,\n `majority_filter()`, and color conversions\n- Fix bug in interpolation\n\n### Version 1.4.5 (Oct 20 2018)\n- Upgrade code to newer NumPy API (issue #95)\n\n### Version 1.4.4 (Nov 5 2017)\n- Fix bug in Bernsen thresholding (issue #84)\n\n### Version 1.4.3 (Oct 3 2016)\n- Fix distribution (add missing `README.md` file)\n\n### Version 1.4.2 (Oct 2 2016)\n\n- Fix `resize\\_to` return exactly the requested size\n- Fix hard crash when computing texture on arrays with negative values (issue #72)\n- Added `distance` argument to haralick features (pull request #76, by\n Guillaume Lemaitre)\n\n### Version 1.4.1 (Dec 20 2015)\n\n- Add `filter\\_labeled` function\n- Fix tests on 32 bit platforms and older versions of numpy\n\n### Version 1.4.0 (July 8 2015)\n\n- Added `mahotas-features.py` script\n- Add short argument to citation() function\n- Add max\\_iter argument to thin() function\n- Fixed labeled.bbox when there is no background (issue \\#61, reported\n by Daniel Haehn)\n- bbox now allows dimensions greater than 2 (including when using the\n `as_slice` and `border` arguments)\n- Extended croptobbox for dimensions greater than 2\n- Added use\\_x\\_minus\\_y\\_variance option to haralick features\n- Add function `lbp_names`\n\n### Version 1.3.0 (April 28 2015)\n\n- Improve memory handling in freeimage.write\\_multipage\n- Fix moments parameter swap\n- Add labeled.bbox function\n- Add return\\_mean and return\\_mean\\_ptp arguments to haralick\n function\n- Add difference of Gaussians filter (by Jianyu Wang)\n- Add Laplacian filter (by Jianyu Wang)\n- Fix crash in median\\_filter when mismatched arguments are passed\n- Fix gaussian\\_filter1d for ndim \\> 2\n\n### Version 1.2.4 (December 23 2014)\n\n- Add PIL based IO\n\n### Version 1.2.3 (November 8 2014)\n\n- Export mean\\_filter at top level\n- Fix to Zernike moments computation (reported by Sergey Demurin)\n- Fix compilation in platforms without npy\\_float128 (patch by Gabi\n Davar)\n\n### Version 1.2.2 (October 19 2014)\n\n- Add minlength argument to labeled\\_sum\n- Generalize regmax/regmin to work with floating point images\n- Allow floating point inputs to `cwatershed()`\n- Correctly check for float16 & float128 inputs\n- Make sobel into a pure function (i.e., do not normalize its input)\n- Fix sobel filtering\n\n### Version 1.2.1 (July 21 2014)\n\n- Explicitly set numpy.include\\_dirs() in setup.py [patch by Andrew\n Stromnov]\n\n### Version 1.2 (July 17 2014)\n\n- Export locmax|locmin at the mahotas namespace level\n- Break away ellipse\\_axes from eccentricity code as it can be useful\n on its own\n- Add `find()` function\n- Add `mean_filter()` function\n- Fix `cwatershed()` overflow possibility\n- Make labeled functions more flexible in accepting more types\n- Fix crash in `close_holes()` with nD images (for n \\> 2)\n- Remove matplotlibwrap\n- Use standard setuptools for building (instead of numpy.distutils)\n- Add `overlay()` function\n\n### Version 1.1.1 (July 4 2014)\n\n- Fix crash in close\\_holes() with nD images (for n \\> 2)\n\n### 1.1.0 (February 12 2014)\n\n- Better error checking\n- Fix interpolation of integer images using order 1\n- Add resize\\_to & resize\\_rgb\\_to\n- Add coveralls coverage\n- Fix SLIC superpixels connectivity\n- Add remove\\_regions\\_where function\n- Fix hard crash in convolution\n- Fix axis handling in convolve1d\n- Add normalization to moments calculation\n\nSee the\n[ChangeLog](https://github.com/luispedro/mahotas/blob/master/ChangeLog)\nfor older version.\n\n\n## License\n[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fluispedro%2Fmahotas.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fluispedro%2Fmahotas?ref=badge_large)", "description_content_type": "text/markdown", "docs_url": "https://pythonhosted.org/mahotas/", "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://luispedro.org/software/mahotas", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "mahotas", "package_url": "https://pypi.org/project/mahotas/", "platform": "Any", "project_url": "https://pypi.org/project/mahotas/", "project_urls": { "Homepage": "http://luispedro.org/software/mahotas" }, "release_url": "https://pypi.org/project/mahotas/1.4.8/", "requires_dist": null, "requires_python": "", "summary": "Mahotas: Computer Vision Library", "version": "1.4.8" }, "last_serial": 5956188, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "3bd09384f8b6f856207836a0c0db2442", "sha256": "943206978f437d2929eab9e67229e9873165c1a377780ad6e58575a3a5d1c47a" }, "downloads": -1, "filename": "mahotas-0.0.1.tar.gz", "has_sig": false, "md5_digest": "3bd09384f8b6f856207836a0c0db2442", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12748, "upload_time": "2010-04-28T19:28:24", "url": "https://files.pythonhosted.org/packages/50/a6/505d22895673efb12d7ddf41d9f4696c2298b3c13f5d18bf9611aed2aa59/mahotas-0.0.1.tar.gz" } ], "0.1": [ { "comment_text": "", "digests": { "md5": "c471f211ecf076aefb193d939cc7da87", "sha256": "6fc21d44d83c34c2f723d88626f5db8f1b5368deee7b82747c7bab6e9c335b82" }, "downloads": -1, "filename": "mahotas-0.1.tar.gz", "has_sig": false, "md5_digest": "c471f211ecf076aefb193d939cc7da87", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12884, "upload_time": "2010-04-28T19:58:32", "url": "https://files.pythonhosted.org/packages/56/5f/7e962c206e872b1e327e3e5b6d7a64dc3648009740aff51f4f48bf9fb4bd/mahotas-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "e6e933e67cf50be8b8268475eb64dbb3", "sha256": "01d81db0e822efe57b7b4fc59e46bc58ebbe375d9862790f2f085fcd616757ba" }, "downloads": -1, "filename": "mahotas-0.2.tar.gz", "has_sig": false, "md5_digest": "e6e933e67cf50be8b8268475eb64dbb3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14579, "upload_time": "2010-05-10T22:35:49", "url": "https://files.pythonhosted.org/packages/7c/cc/ad8372fea7c36344c655964120dfc79f300dda680c68965b8d5d6957cc60/mahotas-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "9be4db87e4e86a99fe3cfc93f74a7490", "sha256": "e55b39191bcd0843680d75fb21fb84dff4287d881509503d85015ed87a0c71d1" }, "downloads": -1, "filename": "mahotas-0.3.tar.gz", "has_sig": false, "md5_digest": "9be4db87e4e86a99fe3cfc93f74a7490", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18067, "upload_time": "2010-05-20T00:35:01", "url": "https://files.pythonhosted.org/packages/64/23/1e93abdf1066ae16861a3b9dd72be7777a29978613c066da6bff063e3c4e/mahotas-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "ab317579407f6234396c37467f49b1be", "sha256": "882a0b6cb1b23282e6ac446073dc88282d7f8b73a55c943e0c327f8590461746" }, "downloads": -1, "filename": "mahotas-0.4.tar.gz", "has_sig": false, "md5_digest": "ab317579407f6234396c37467f49b1be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21316, "upload_time": "2010-08-16T19:56:39", "url": "https://files.pythonhosted.org/packages/53/b1/f3e8bfec0ccf734fe8a42b873806065c200b4bb85816e5f2b7dc233fe3c2/mahotas-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "363fa094d2dd205b6e5f80e7b913b696", "sha256": "666560e44d76eff6695089ca5ccb6d857c2de974b7e11d7d57a7cb1970c2d907" }, "downloads": -1, "filename": "mahotas-0.5.tar.gz", "has_sig": false, "md5_digest": "363fa094d2dd205b6e5f80e7b913b696", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32947, "upload_time": "2010-09-09T22:58:19", "url": "https://files.pythonhosted.org/packages/10/ed/2b64f09181dcdbf12d5b283aa4c133a63201fbf52258f189a6edc87b8303/mahotas-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "684db4829dd9afdf0ca06af599015ffd", "sha256": "0e6bfe5a8c9be2e5840fe13ef5628c408d7f45542530300f3c341648e5c412ff" }, "downloads": -1, "filename": "mahotas-0.5.1.tar.gz", "has_sig": false, "md5_digest": "684db4829dd9afdf0ca06af599015ffd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33353, "upload_time": "2010-09-13T19:54:27", "url": "https://files.pythonhosted.org/packages/3b/ed/6866113589a47efefa9ef320b04307ca43d71292e36f828060b3b118a756/mahotas-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "743c11faeeca2dd6e917470e080ca929", "sha256": "896c45fd2ca54a1012418b72064d62202342db7917316fe106998f7b23d99bc0" }, "downloads": -1, "filename": "mahotas-0.5.2.tar.gz", "has_sig": false, "md5_digest": "743c11faeeca2dd6e917470e080ca929", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33623, "upload_time": "2010-09-14T04:59:23", "url": "https://files.pythonhosted.org/packages/63/a8/d3dc9770fe0d2d19350bf22ddcd0bddddc36eb104d0d041524cc1718e90e/mahotas-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "3b55b0313524245dc0e065eb73766823", "sha256": "2a6a52cb5dc507dc313504ad42fb65396d16b91ac5ce5481e9637d56d4c0dcae" }, "downloads": -1, "filename": "mahotas-0.5.3.tar.gz", "has_sig": false, "md5_digest": "3b55b0313524245dc0e065eb73766823", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35937, "upload_time": "2010-10-29T23:10:14", "url": "https://files.pythonhosted.org/packages/e8/8d/cf59f4ee4b011dace949cc5aee5980fbd927dcc8dbcdb314bc4b571102b0/mahotas-0.5.3.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "0f44882171cb150dc9b94fc4fc389620", "sha256": "6227d0b17d575e964b6744b053ed05943b1552a67f8e058cec87892fb4444e43" }, "downloads": -1, "filename": "mahotas-0.6.tar.gz", "has_sig": false, "md5_digest": "0f44882171cb150dc9b94fc4fc389620", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40938, "upload_time": "2010-11-22T22:54:22", "url": "https://files.pythonhosted.org/packages/ac/66/1a56ceb4abd1890045115c2b3b7004daf56e88d1d9fbc24efa7e9cee63a7/mahotas-0.6.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "1a605717a60850952bba4895a84b736d", "sha256": "d2eadfa55a60689d7d62c12688ec7acecd7cf10a4e7796a6e24a3457091bf992" }, "downloads": -1, "filename": "mahotas-0.6.1.tar.gz", "has_sig": false, "md5_digest": "1a605717a60850952bba4895a84b736d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55084, "upload_time": "2010-12-13T22:02:01", "url": "https://files.pythonhosted.org/packages/e5/e6/0a514f6385938bfaa980fa01f20f25d36482cf815020ce89dadafdac1221/mahotas-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "f769fcc6ab39258ef4e1dbdb18896932", "sha256": "73b0c8232bad4ed4a32bcb64905f9432d74777bedac80588508cffb4de7030c0" }, "downloads": -1, "filename": "mahotas-0.6.2.tar.gz", "has_sig": false, "md5_digest": "f769fcc6ab39258ef4e1dbdb18896932", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56763, "upload_time": "2010-12-21T00:32:15", "url": "https://files.pythonhosted.org/packages/17/2c/577abdbf9caf22f35cfd38b52c9d9e7b7ae3306c5c9ec99b4af5d64281ca/mahotas-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "83f72eecefd02edd80af59b1d7fe1f8f", "sha256": "3f1cd68f2afaca974b9331783fcca4abd45ef11e8be4fe0bf640b6099599ae13" }, "downloads": -1, "filename": "mahotas-0.6.3.tar.gz", "has_sig": false, "md5_digest": "83f72eecefd02edd80af59b1d7fe1f8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61099, "upload_time": "2011-02-17T21:08:45", "url": "https://files.pythonhosted.org/packages/70/1a/88b8e6037881b7bb24f465a56397bfefcea09f48137703c0878907741eee/mahotas-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "837e54c5006c0717e2571e7a75cc0831", "sha256": "d40af5f4fa76da03d0388ddf2e685cb7ffbb0d58a140caf48c942919be47adb4" }, "downloads": -1, "filename": "mahotas-0.6.4.tar.gz", "has_sig": false, "md5_digest": "837e54c5006c0717e2571e7a75cc0831", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82181, "upload_time": "2011-04-07T03:47:33", "url": "https://files.pythonhosted.org/packages/21/ce/9d78b412bc568cf1b5af097bc2d241b607a6fd0b02b21604f82e24ea0887/mahotas-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "ed9f88fb68c3879be44be142d5b860cf", "sha256": "1e33b3fdc5dcb40e4d853c60d262fcc398f9179bf49c857dc1a4014e5f309054" }, "downloads": -1, "filename": "mahotas-0.6.5.tar.gz", "has_sig": false, "md5_digest": "ed9f88fb68c3879be44be142d5b860cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85107, "upload_time": "2011-05-16T16:38:50", "url": "https://files.pythonhosted.org/packages/93/e1/bf5c931da5035d4f9c4f6332a1934c47a4dcbc8c04efffc1728350d28cd2/mahotas-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "99c84ba94868d250f16a099313991a2f", "sha256": "390bc66a99b06eed92c27114d1ed85e9dec6d6ecb50d0357a91b034f12eb3150" }, "downloads": -1, "filename": "mahotas-0.6.6.tar.gz", "has_sig": false, "md5_digest": "99c84ba94868d250f16a099313991a2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 89252, "upload_time": "2011-08-08T06:04:09", "url": "https://files.pythonhosted.org/packages/82/f7/06f0d4b620d5768327ed2bec8b67c9bdd417cf264715e73042c15378152f/mahotas-0.6.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "c05a01b4d35793b9882150f489d239db", "sha256": "30a8b4acfc5172021afaac940cc0ef687f221f1f5a7a941411d9a3d4700c71cc" }, "downloads": -1, "filename": "mahotas-0.7.tar.gz", "has_sig": false, "md5_digest": "c05a01b4d35793b9882150f489d239db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97513, "upload_time": "2011-12-06T02:05:22", "url": "https://files.pythonhosted.org/packages/3b/63/b8b9fab8245584840dac462fffb4223323cd2f7a0573d900ce2b95383920/mahotas-0.7.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "63d51b90930accaed0e7aee4cad6ab17", "sha256": "4e8941ad802435c014f408aedf4425e663337c8a4083c72fa582ae8643ec7c7d" }, "downloads": -1, "filename": "mahotas-0.7.1.tar.gz", "has_sig": false, "md5_digest": "63d51b90930accaed0e7aee4cad6ab17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 98595, "upload_time": "2012-01-06T14:01:46", "url": "https://files.pythonhosted.org/packages/25/6b/7f48477c503bfa090589a71294fac3cd42ea190f11f0cfc1a2cd931468c9/mahotas-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "8f4dd2198e143e0f964a9a66177b7825", "sha256": "1576cef3c829c8982b4b8f0e8a6db889fe32a0ad6f7045abebb854732976da3b" }, "downloads": -1, "filename": "mahotas-0.7.2.tar.gz", "has_sig": false, "md5_digest": "8f4dd2198e143e0f964a9a66177b7825", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102484, "upload_time": "2012-02-13T12:48:44", "url": "https://files.pythonhosted.org/packages/62/ef/e874c11d08a21eb4c982831c0dabac84d7d2b05d856f625360e397513139/mahotas-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "468ab16252d53abf0167b7bf9ca514d6", "sha256": "d13aead93dbba56430eaa133db6fac0786e3605583e519083b17601c31022a2d" }, "downloads": -1, "filename": "mahotas-0.7.3.tar.gz", "has_sig": false, "md5_digest": "468ab16252d53abf0167b7bf9ca514d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 111057, "upload_time": "2012-03-14T19:57:59", "url": "https://files.pythonhosted.org/packages/f8/68/3a25951c3fc753eb1ec4fd1f523606ea2cc0a1a15ce420b2482f7c4f5a2d/mahotas-0.7.3.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "91a7ec343a0f0ee9a52b046ed1255b08", "sha256": "b443a054c0ab0e993276936afdd999a3b1ddf7ccff18029f44870cb3d15bc1a9" }, "downloads": -1, "filename": "mahotas-0.8.tar.gz", "has_sig": false, "md5_digest": "91a7ec343a0f0ee9a52b046ed1255b08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 114153, "upload_time": "2012-05-07T14:21:21", "url": "https://files.pythonhosted.org/packages/58/b7/59167f15f90ee61cea711cf65a7f6fc097cc09d0a67cb1b5226cbb7c341f/mahotas-0.8.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "744b4fbb42f2fda35b63a294e9687130", "sha256": "218af137f5836def58fb29d2a8d41d8abd54a08fce33ca13f629e70e846bc515" }, "downloads": -1, "filename": "mahotas-0.8.1.tar.gz", "has_sig": false, "md5_digest": "744b4fbb42f2fda35b63a294e9687130", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115610, "upload_time": "2012-06-06T14:09:08", "url": "https://files.pythonhosted.org/packages/4a/b7/76093f39327dc07e78de2e8d055ed706a655a96c6f433731eeb66ca7a2f2/mahotas-0.8.1.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "6617c3d860e03438e34b6cdbf7c5e68e", "sha256": "749d76a8e327ab9c81ffaf302ed58d66fb94ed0a560adda9746d7ac0f78bf82e" }, "downloads": -1, "filename": "mahotas-0.9.tar.gz", "has_sig": false, "md5_digest": "6617c3d860e03438e34b6cdbf7c5e68e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133964, "upload_time": "2012-07-16T14:15:23", "url": "https://files.pythonhosted.org/packages/8f/20/39c4a2cd095c7a5eebd29f922036570322279b0e47485356aa560573f326/mahotas-0.9.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "043574bdf542f84281a17a3d31597b55", "sha256": "8b12b5bc8a068935d9a082f9933512632f1578df8d67a00c3478c4cdb4c135e6" }, "downloads": -1, "filename": "mahotas-0.9.1.tar.gz", "has_sig": false, "md5_digest": "043574bdf542f84281a17a3d31597b55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 143527, "upload_time": "2012-08-28T13:11:35", "url": "https://files.pythonhosted.org/packages/d1/84/e206ad70e36c74e965d8e6d71cbfd46756fba2f7372a2b22bc36b634f11f/mahotas-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "2c757ca975e330a5b11d9f5d4092dbfc", "sha256": "b7e2236b71d1d01ad17ea42092db78402a25783f245186f77807c0e441388755" }, "downloads": -1, "filename": "mahotas-0.9.2.tar.gz", "has_sig": false, "md5_digest": "2c757ca975e330a5b11d9f5d4092dbfc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 142433, "upload_time": "2012-09-01T16:41:15", "url": "https://files.pythonhosted.org/packages/86/83/d8f9fe8e5f18643910d7be8a2f98c1fa4a5556164cbc98ba127be230c323/mahotas-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "7449bd696ee3dfca7cde9df20693162f", "sha256": "d3f440ae06aa249ec4928f12e54be6b44724af785325cca69685a84cc2e12e42" }, "downloads": -1, "filename": "mahotas-0.9.3.tar.gz", "has_sig": false, "md5_digest": "7449bd696ee3dfca7cde9df20693162f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147364, "upload_time": "2012-10-09T18:33:04", "url": "https://files.pythonhosted.org/packages/f4/d7/973349bbe2985b13f7ff6e4e0df1cefecfeb46c45f2c3e9d149ac1ee219c/mahotas-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "a0adf9c8d5f996da5644ca07be2f78df", "sha256": "0f8cdd1a4b3b747256065e5154a376a28c86569e8c0c26c0db91227b56a5b469" }, "downloads": -1, "filename": "mahotas-0.9.4.tar.gz", "has_sig": false, "md5_digest": "a0adf9c8d5f996da5644ca07be2f78df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 145709, "upload_time": "2012-10-10T09:19:43", "url": "https://files.pythonhosted.org/packages/13/fa/394dd651ee1dd0c17b312f86904dedf51a82ba9cbec4c3f220eb35d54d1d/mahotas-0.9.4.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "f8aed7d17e8e3e21c62a446f3e1c07f2", "sha256": "7fee42b5ecccd007affce39b6fb8430225b9545993c0769dd72c3878bd9405b8" }, "downloads": -1, "filename": "mahotas-0.9.5.tar.gz", "has_sig": false, "md5_digest": "f8aed7d17e8e3e21c62a446f3e1c07f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 146122, "upload_time": "2012-11-04T12:02:55", "url": "https://files.pythonhosted.org/packages/b3/09/3c237ad5d78a266b856058f8cb2401159f6508dcc38f8fd4bf75bd067d74/mahotas-0.9.5.tar.gz" } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "7956c13bf9c6459f89b0f7cf82931bb9", "sha256": "89e7c235b0cad20a1dd2e89723c77a5ae66b4636f04b3a605bb773fffa0c7adf" }, "downloads": -1, "filename": "mahotas-0.9.6.tar.gz", "has_sig": false, "md5_digest": "7956c13bf9c6459f89b0f7cf82931bb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1206848, "upload_time": "2012-12-02T13:00:18", "url": "https://files.pythonhosted.org/packages/fb/17/e6c5d92ec8bca0e470cd5c7efa981e6ad6f8a417e2e8bd3c78807c47b62e/mahotas-0.9.6.tar.gz" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "e86633e7642be762b45f24bd691c2215", "sha256": "44964913dfceb6fe1a9187a94e90e00bfff09e6740af5a7ad6228bb093c1e14e" }, "downloads": -1, "filename": "mahotas-0.9.7.tar.gz", "has_sig": false, "md5_digest": "e86633e7642be762b45f24bd691c2215", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1214528, "upload_time": "2013-02-03T16:42:40", "url": "https://files.pythonhosted.org/packages/f1/c2/b991d3dd722aac1e2569edc2aae3faace74793a82569aed26cfc98504685/mahotas-0.9.7.tar.gz" } ], "0.9.8": [ { "comment_text": "", "digests": { "md5": "5681f088ea2522981530f5ae94fcde6a", "sha256": "dfa28b2bc504811680d65418996b1108bd69065716e8d2861f1e1a623224e60f" }, "downloads": -1, "filename": "mahotas-0.9.8.tar.gz", "has_sig": false, "md5_digest": "5681f088ea2522981530f5ae94fcde6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1222494, "upload_time": "2013-04-22T15:06:36", "url": "https://files.pythonhosted.org/packages/b7/e1/fd64f37a6dbd46765d5a655ca80e7b897d650fcca5e36978e30b9442bc1d/mahotas-0.9.8.tar.gz" } ], "0.99": [ { "comment_text": "", "digests": { "md5": "476c380744033812e59ffce205b4faac", "sha256": "f9b0320cf8b3b676ddd5387613748062ec474b7c3b86bfb66c74e0604e32c1c0" }, "downloads": -1, "filename": "mahotas-0.99.tar.gz", "has_sig": false, "md5_digest": "476c380744033812e59ffce205b4faac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1223049, "upload_time": "2013-05-04T10:33:11", "url": "https://files.pythonhosted.org/packages/69/29/7f9a02de9f4c2ac8b1ce2b09cf8f764c26cc805b224aa0b216a65dff1a9d/mahotas-0.99.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "62c9ac3deff4da001aa4b658ea7a187d", "sha256": "1aa75071916f3b8b70781965ea122a2b5f726d89d0dc360f94f2859342fbaec9" }, "downloads": -1, "filename": "mahotas-1.0.tar.gz", "has_sig": false, "md5_digest": "62c9ac3deff4da001aa4b658ea7a187d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1473486, "upload_time": "2013-05-21T12:09:19", "url": "https://files.pythonhosted.org/packages/9f/15/9edad07a071dfc127e11206ff8d6101d6988e74fbf0bf65c82dc5daab7f5/mahotas-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "4e9c412595431435ad1cf42a37f6daac", "sha256": "547e1e9f153680319c71ccb6a5f47bfbe6c6ead571e03f02ca565b2a9770d32c" }, "downloads": -1, "filename": "mahotas-1.0.1.tar.gz", "has_sig": false, "md5_digest": "4e9c412595431435ad1cf42a37f6daac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1483262, "upload_time": "2013-07-09T08:39:19", "url": "https://files.pythonhosted.org/packages/1d/b4/d0dbd27ba3bfe65e6235c8a35b625d778486a6611656d5f268e1ad273e5b/mahotas-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "bc3e478a5deb0f2f05e9eb385bbb07ff", "sha256": "b7642c7c228b788e6d8790e6d73eb6950c73585d434d62337dda456cfaeb1ecd" }, "downloads": -1, "filename": "mahotas-1.0.2.tar.gz", "has_sig": false, "md5_digest": "bc3e478a5deb0f2f05e9eb385bbb07ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1483397, "upload_time": "2013-07-10T12:21:48", "url": "https://files.pythonhosted.org/packages/06/3b/8aa2db7008b925495c3db1505224ae2cb5000458d1f73418cf86324945da/mahotas-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "b347cbcb593547694f88e63a2da14939", "sha256": "597e802ef4f296d1d3ca8cc858f73431719e77e6427e528e6d4ad6fc261c2f38" }, "downloads": -1, "filename": "mahotas-1.0.3.tar.gz", "has_sig": false, "md5_digest": "b347cbcb593547694f88e63a2da14939", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1505247, "upload_time": "2013-10-06T15:28:38", "url": "https://files.pythonhosted.org/packages/eb/c6/d8f881d0d9b8de29f5fd48476b29fb30a1faff2200f43af8a7a9474fd64a/mahotas-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "32c11bb288a02ddea0bb98c3a0e61c2b", "sha256": "b52bb60fedac9d546053a4dbfb8b1c69be2988faa6db7b255575dbd9ec6bec9f" }, "downloads": -1, "filename": "mahotas-1.0.4.tar.gz", "has_sig": false, "md5_digest": "32c11bb288a02ddea0bb98c3a0e61c2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1507893, "upload_time": "2013-12-15T16:20:09", "url": "https://files.pythonhosted.org/packages/50/a0/51adecae45b695df4d1506f1dd69b5652984f46cacd025bb6304d17449d2/mahotas-1.0.4.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "e784b2e4a38451a228b55e2f6ab94c6c", "sha256": "fb2371215570c6a81f25beb54b0c386801ab637056a232c2c347d0d410679744" }, "downloads": -1, "filename": "mahotas-1.1.0.tar.gz", "has_sig": false, "md5_digest": "e784b2e4a38451a228b55e2f6ab94c6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1516935, "upload_time": "2014-02-12T15:23:18", "url": "https://files.pythonhosted.org/packages/6e/bb/b0d21b7621d4439364e43e7a380977e33cabfa392d0c53ea7a750bb8d8b4/mahotas-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "fe6510435ececc85e8ec6f72ad154d93", "sha256": "c8467b5fc9d66df3db558eff01303c61955933ec8e9b28cfe03cfb3c0b1f645c" }, "downloads": -1, "filename": "mahotas-1.1.1.tar.gz", "has_sig": false, "md5_digest": "fe6510435ececc85e8ec6f72ad154d93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1515625, "upload_time": "2014-07-04T11:11:33", "url": "https://files.pythonhosted.org/packages/1d/5b/22dd62083c7da2c7cc9f2a6baecf3964c380c5d074de56fdce3c31404789/mahotas-1.1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "37b109add109a10fefc1d2f4c4b8846e", "sha256": "dcfcfeb7287091332a3c619535d6112c53d19cf1a5b737b6207577288fdfbe04" }, "downloads": -1, "filename": "mahotas-1.2.tar.gz", "has_sig": false, "md5_digest": "37b109add109a10fefc1d2f4c4b8846e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1520950, "upload_time": "2014-07-17T10:56:53", "url": "https://files.pythonhosted.org/packages/a8/fb/6c2e44bd634138c93f0950eaedb9d03223ae131870706e284e0f42c5fddf/mahotas-1.2.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "b5c907e699d8b214cd4c809bf2476866", "sha256": "5f2196927b02df21fbd5b5a9f81f423078827fc32cf438145d4f1a8c162544c3" }, "downloads": -1, "filename": "mahotas-1.2.1.tar.gz", "has_sig": false, "md5_digest": "b5c907e699d8b214cd4c809bf2476866", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1521161, "upload_time": "2014-07-21T07:30:27", "url": "https://files.pythonhosted.org/packages/3b/86/45f3eaed5dcfd5e4c59f7e9ed2a13bffa028f5747ba2211937547778e5c6/mahotas-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "3b6ba13a179da5bd18bd3283ede9c48e", "sha256": "11db51ef514eb2ba7127259c55210cbbc5f2f2551fe3719460c0d03ef0307544" }, "downloads": -1, "filename": "mahotas-1.2.2.tar.gz", "has_sig": false, "md5_digest": "3b6ba13a179da5bd18bd3283ede9c48e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1519653, "upload_time": "2014-10-19T16:20:14", "url": "https://files.pythonhosted.org/packages/4b/07/5c69028c5e222d42c99a99a092163313e24870255eec033488b4d7941806/mahotas-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "0fe9415320d8c3e4c301a93e1d315239", "sha256": "f899f380687090e835616506664ba5f9d0844242f20002005dff6fd01754d4f8" }, "downloads": -1, "filename": "mahotas-1.2.3.tar.gz", "has_sig": false, "md5_digest": "0fe9415320d8c3e4c301a93e1d315239", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1520242, "upload_time": "2014-11-08T22:48:45", "url": "https://files.pythonhosted.org/packages/1e/c4/1120da4f3b00f09124176a98c26f03432e3a2bbf82204bafda62bf8d5331/mahotas-1.2.3.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "c910a056c96d15e3a0b356053ddede83", "sha256": "55ae9d5d78033cdfe202ba668513f71a0368fc8152959e55bc049c4199d68074" }, "downloads": -1, "filename": "mahotas-1.2.4.tar.gz", "has_sig": false, "md5_digest": "c910a056c96d15e3a0b356053ddede83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1520642, "upload_time": "2014-12-23T11:15:02", "url": "https://files.pythonhosted.org/packages/75/85/a4a9a22b6be52eedcbbf854c7f1a4f7c707c6d00094d080c9063139008d0/mahotas-1.2.4.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "d2aca450cd8dd3d18c9cf194d06d93d4", "sha256": "61979dc003756c894145182d40a663ba22c50cd0a1ab8367804badfaffb6b9a1" }, "downloads": -1, "filename": "mahotas-1.3.0.tar.gz", "has_sig": false, "md5_digest": "d2aca450cd8dd3d18c9cf194d06d93d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1523515, "upload_time": "2015-04-28T16:54:10", "url": "https://files.pythonhosted.org/packages/b9/95/4f8e9e184023cf0e60abae1b970d2c24bc05e5085e69a2e37ff07375b7f3/mahotas-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "f37501cf1dfac022cd1e8610bdd5451e", "sha256": "73c2f13da9eddf959594cacd3e3f7d42bc933a6ae75048cb0360576668f21fc2" }, "downloads": -1, "filename": "mahotas-1.4.0.tar.gz", "has_sig": false, "md5_digest": "f37501cf1dfac022cd1e8610bdd5451e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1528911, "upload_time": "2015-07-07T14:35:16", "url": "https://files.pythonhosted.org/packages/0c/fb/0c6fabad7f56712c13e10f1ee103315423c325a90f52097c035c855f6f94/mahotas-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "1bc9a6a12db5edfacf4e25ec79c9826b", "sha256": "40b2ee831b66247541706b28db0d4b187d051d5fda926a0c43912d27b3be50c0" }, "downloads": -1, "filename": "mahotas-1.4.1.tar.gz", "has_sig": false, "md5_digest": "1bc9a6a12db5edfacf4e25ec79c9826b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1530024, "upload_time": "2015-12-22T11:23:37", "url": "https://files.pythonhosted.org/packages/4e/50/6de6a01271bb120a0c2723ebd5cf8708a4f7fc484a95e54bced2d94ed546/mahotas-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "5ea2c288a1767461465377065fe928dc", "sha256": "76c056c3e83e3ffaa358b29cb3abc2a01c8e0a62150bc9fcb1d6edc47b009783" }, "downloads": -1, "filename": "mahotas-1.4.2.tar.gz", "has_sig": false, "md5_digest": "5ea2c288a1767461465377065fe928dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1526324, "upload_time": "2016-10-02T12:43:50", "url": "https://files.pythonhosted.org/packages/7c/d9/b7168c6a04eec8dd21ed2df485aa32e27867ac3a75440cfba730078590b9/mahotas-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "de817de9759aa07b4dc9029d79a326d0", "sha256": "e113fb73f1f717f1a9124b41496b030628efb72a23b0150a42ecb18b08b030c4" }, "downloads": -1, "filename": "mahotas-1.4.3.tar.gz", "has_sig": false, "md5_digest": "de817de9759aa07b4dc9029d79a326d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1527919, "upload_time": "2016-10-03T20:52:17", "url": "https://files.pythonhosted.org/packages/3d/b5/93cfcd0e3f87885fe4a433e3712182079915a1eda40ee86169dc57aad558/mahotas-1.4.3.tar.gz" } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "0dd57c9dbf956be304d5263a1e2cb156", "sha256": "6544e87fea0b80a40e3e52fc360214814bf6e939c7b5b17e7f232a644e62c4c3" }, "downloads": -1, "filename": "mahotas-1.4.4.tar.gz", "has_sig": false, "md5_digest": "0dd57c9dbf956be304d5263a1e2cb156", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1527547, "upload_time": "2017-11-05T15:39:08", "url": "https://files.pythonhosted.org/packages/66/12/951fe5f9787379f713dcda1598d3cca0b29a909ee8ab656514c9a2817863/mahotas-1.4.4.tar.gz" } ], "1.4.5": [ { "comment_text": "", "digests": { "md5": "9e61c490a50b1cdc3e1d76d2247aa181", "sha256": "cf7e661add06fb446a257fdecfb24e103e36b4e69a675c188e042921a0ff75ab" }, "downloads": -1, "filename": "mahotas-1.4.5.tar.gz", "has_sig": false, "md5_digest": "9e61c490a50b1cdc3e1d76d2247aa181", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1529383, "upload_time": "2018-10-21T01:26:38", "url": "https://files.pythonhosted.org/packages/b2/f8/25a67f7433146e42272ca3dfb176ac4cd374f3f97e6a001baf9af0bfff1a/mahotas-1.4.5.tar.gz" } ], "1.4.6": [ { "comment_text": "", "digests": { "md5": "2fa679b2c88495896f06c438b293e421", "sha256": "d2265c9b5e435afdf5368d790de906dfbdbf3071321ea921349057f399930836" }, "downloads": -1, "filename": "mahotas-1.4.6.tar.gz", "has_sig": false, "md5_digest": "2fa679b2c88495896f06c438b293e421", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1530746, "upload_time": "2019-07-10T14:51:09", "url": "https://files.pythonhosted.org/packages/f0/ff/94f15177a0b96ccd330d15c6c55552bdd27a0942644c71d2216ca081848f/mahotas-1.4.6.tar.gz" } ], "1.4.7": [ { "comment_text": "", "digests": { "md5": "33416c522c20e8504287b572cf6ab53a", "sha256": "a2ca4cd8b33bfe56d646956c56b5de1087c9d44d579386b6b8ad19303272b496" }, "downloads": -1, "filename": "mahotas-1.4.7.tar.gz", "has_sig": false, "md5_digest": "33416c522c20e8504287b572cf6ab53a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1530911, "upload_time": "2019-07-10T18:37:45", "url": "https://files.pythonhosted.org/packages/c0/80/7e5919af7d1b93fc5e85fe5bd2ba68379cfb9add9f83cdff95b65ea7f46d/mahotas-1.4.7.tar.gz" } ], "1.4.8": [ { "comment_text": "", "digests": { "md5": "f2642c20bfecba9460f4f6cf2d9be275", "sha256": "cb9264a7d9f84e639c920d486a81edcdc896b48d602ae2de9482483555ad967e" }, "downloads": -1, "filename": "mahotas-1.4.8.tar.gz", "has_sig": false, "md5_digest": "f2642c20bfecba9460f4f6cf2d9be275", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1531399, "upload_time": "2019-10-10T18:14:07", "url": "https://files.pythonhosted.org/packages/27/4b/72581c4316b2fb08cbcb3309d9f2eccd40f09f6af6117545e75f4015c505/mahotas-1.4.8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f2642c20bfecba9460f4f6cf2d9be275", "sha256": "cb9264a7d9f84e639c920d486a81edcdc896b48d602ae2de9482483555ad967e" }, "downloads": -1, "filename": "mahotas-1.4.8.tar.gz", "has_sig": false, "md5_digest": "f2642c20bfecba9460f4f6cf2d9be275", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1531399, "upload_time": "2019-10-10T18:14:07", "url": "https://files.pythonhosted.org/packages/27/4b/72581c4316b2fb08cbcb3309d9f2eccd40f09f6af6117545e75f4015c505/mahotas-1.4.8.tar.gz" } ] }