{ "info": { "author": "Uwe Schmidt, Martin Weigert", "author_email": "research@uweschmidt.org, martin.weigert@epfl.ch", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Topic :: Scientific/Engineering" ], "description": "[![PyPI version](https://badge.fury.io/py/stardist.svg)](https://pypi.org/project/stardist)\n[![Test](https://github.com/stardist/stardist/workflows/Test/badge.svg)](https://github.com/stardist/stardist/actions?query=workflow%3ATest)\n[![Test (PyPI)](https://github.com/stardist/stardist/workflows/Test%20(PyPI)/badge.svg)](https://github.com/stardist/stardist/actions?query=workflow%3A%22Test+%28PyPI%29%22)\n[![Image.sc forum](https://img.shields.io/badge/dynamic/json.svg?label=forum&url=https%3A%2F%2Fforum.image.sc%2Ftags%2Fstardist.json&query=%24.topic_list.tags.0.topic_count&colorB=brightgreen&suffix=%20topics&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAABPklEQVR42m3SyyqFURTA8Y2BER0TDyExZ+aSPIKUlPIITFzKeQWXwhBlQrmFgUzMMFLKZeguBu5y+//17dP3nc5vuPdee6299gohUYYaDGOyyACq4JmQVoFujOMR77hNfOAGM+hBOQqB9TjHD36xhAa04RCuuXeKOvwHVWIKL9jCK2bRiV284QgL8MwEjAneeo9VNOEaBhzALGtoRy02cIcWhE34jj5YxgW+E5Z4iTPkMYpPLCNY3hdOYEfNbKYdmNngZ1jyEzw7h7AIb3fRTQ95OAZ6yQpGYHMMtOTgouktYwxuXsHgWLLl+4x++Kx1FJrjLTagA77bTPvYgw1rRqY56e+w7GNYsqX6JfPwi7aR+Y5SA+BXtKIRfkfJAYgj14tpOF6+I46c4/cAM3UhM3JxyKsxiOIhH0IO6SH/A1Kb1WBeUjbkAAAAAElFTkSuQmCC)](https://forum.image.sc/tags/stardist)\n\n# *StarDist* - Object Detection with Star-convex Shapes\n\n![](https://github.com/stardist/stardist/raw/master/images/stardist_overview.png)\n\nThis repository contains the Python implementation of star-convex object detection for 2D and 3D images, as described in the papers:\n\n\n\n- Uwe Schmidt, Martin Weigert, Coleman Broaddus, and Gene Myers. \n[*Cell Detection with Star-convex Polygons*](https://arxiv.org/abs/1806.03535). \nInternational Conference on Medical Image Computing and Computer-Assisted Intervention (MICCAI), Granada, Spain, September 2018.\n\n- Martin Weigert, Uwe Schmidt, Robert Haase, Ko Sugawara, and Gene Myers. \n[*Star-convex Polyhedra for 3D Object Detection and Segmentation in Microscopy*](http://openaccess.thecvf.com/content_WACV_2020/papers/Weigert_Star-convex_Polyhedra_for_3D_Object_Detection_and_Segmentation_in_Microscopy_WACV_2020_paper.pdf). \nThe IEEE Winter Conference on Applications of Computer Vision (WACV), Snowmass Village, Colorado, March 2020\n\nPlease [cite the paper(s)](#how-to-cite) if you are using this code in your research.\n\n\n## Overview\n\nThe following figure illustrates the general approach for 2D images. The training data consists of corresponding pairs of input (i.e. raw) images and fully annotated label images (i.e. every pixel is labeled with a unique object id or 0 for background).\nA model is trained to densely predict the distances (r) to the object boundary along a fixed set of rays and object probabilities (d), which together produce an overcomplete set of candidate polygons for a given input image. The final result is obtained via non-maximum suppression (NMS) of these candidates.\n\n![](https://github.com/stardist/stardist/raw/master/images/overview_2d.png)\n\nThe approach for 3D volumes is similar to the one described for 2D, using pairs of input and fully annotated label volumes as training data.\n\n![](https://github.com/stardist/stardist/raw/master/images/overview_3d.png)\n\n## Webinar/Tutorial\n\nIf you want to know more about the concepts and practical applications of StarDist, please have a look at the following webinar that was given at NEUBIAS Academy @Home 2020:\n\n[![webinar video](http://img.youtube.com/vi/Amn_eHRGX5M/0.jpg)](http://www.youtube.com/watch?v=Amn_eHRGX5M \"Webinar\")\n\n\n## Installation\n\nThis package is compatible with Python 3.6 - 3.10.\n\nIf you only want to use a StarDist plugin for a GUI-based software, please read [this](#plugins-for-other-software).\n\n1. Please first [install TensorFlow](https://www.tensorflow.org/install)\n(either TensorFlow 1 or 2) by following the official instructions.\nFor [GPU support](https://www.tensorflow.org/install/gpu), it is very\nimportant to install the specific versions of CUDA and cuDNN that are\ncompatible with the respective version of TensorFlow. (If you need help and can use `conda`, take a look at [this](https://github.com/CSBDeep/CSBDeep/tree/master/extras#conda-environment).)\n\n2. *StarDist* can then be installed with `pip`:\n\n - If you installed TensorFlow 2 (version *2.x.x*):\n\n pip install stardist\n\n - If you installed TensorFlow 1 (version *1.x.x*):\n\n pip install \"stardist[tf1]\"\n\n\n#### Notes\n\n- Depending on your Python installation, you may need to use `pip3` instead of `pip`.\n- You can find out which version of TensorFlow is installed via `pip show tensorflow`.\n- We provide pre-compiled binaries (\"wheels\") that should work for most Linux, Windows, and macOS platforms. If you're having problems, please see the [troubleshooting](#installation-1) section below.\n- *(Optional)* You need to install [gputools](https://github.com/maweigert/gputools) if you want to use OpenCL-based computations on the GPU to speed up training.\n- *(Optional)* You might experience improved performance during training if you additionally install the [Multi-Label Anisotropic 3D Euclidean Distance Transform (MLAEDT-3D)](https://github.com/seung-lab/euclidean-distance-transform-3d).\n\n\n## Usage\n\nWe provide example workflows for 2D and 3D via Jupyter [notebooks](https://github.com/stardist/stardist/tree/master/examples) that illustrate how this package can be used.\n\n![](https://github.com/stardist/stardist/raw/master/images/example_steps.png)\n\n### Pretrained Models for 2D\n\nCurrently we provide some pretrained models in 2D that might already be suitable for your images:\n\n\n| key | Modality (Staining) | Image format | Example Image | Description |\n| :-- | :-: | :-:| :-:| :-- |\n| `2D_versatile_fluo` `2D_paper_dsb2018`| Fluorescence (nuclear marker) | 2D single channel| | *Versatile (fluorescent nuclei)* and *DSB 2018 (from StarDist 2D paper)* that were both trained on a [subset of the DSB 2018 nuclei segmentation challenge dataset](https://github.com/stardist/stardist/releases/download/0.1.0/dsb2018.zip). |\n|`2D_versatile_he` | Brightfield (H&E) | 2D RGB | | *Versatile (H&E nuclei)* that was trained on images from the [MoNuSeg 2018 training data](https://monuseg.grand-challenge.org/Data/) and the [TNBC dataset from Naylor et al. (2018)](https://zenodo.org/record/1175282#.X6mwG9so-CN). |\n\n\nYou can access these pretrained models from `stardist.models.StarDist2D`\n\n```python\nfrom stardist.models import StarDist2D\n\n# prints a list of available models\nStarDist2D.from_pretrained()\n\n# creates a pretrained model\nmodel = StarDist2D.from_pretrained('2D_versatile_fluo')\n```\n\nAnd then try it out with a test image:\n\n```python\nfrom stardist.data import test_image_nuclei_2d\nfrom stardist.plot import render_label\nfrom csbdeep.utils import normalize\nimport matplotlib.pyplot as plt\n\nimg = test_image_nuclei_2d()\n\nlabels, _ = model.predict_instances(normalize(img))\n\nplt.subplot(1,2,1)\nplt.imshow(img, cmap=\"gray\")\nplt.axis(\"off\")\nplt.title(\"input image\")\n\nplt.subplot(1,2,2)\nplt.imshow(render_label(labels, img=img))\nplt.axis(\"off\")\nplt.title(\"prediction + input overlay\")\n```\n\n![](images/pretrained_example.png)\n\n\n### Annotating Images\n\nTo train a *StarDist* model you will need some ground-truth annotations: for every raw training image there has to be a corresponding label image where all pixels of a cell region are labeled with a distinct integer (and background pixels are labeled with 0).\nTo create such annotations in 2D, there are several options, among them being [Fiji](http://fiji.sc/), [Labkit](https://imagej.net/Labkit), or [QuPath](https://qupath.github.io). In 3D, there are fewer options: [Labkit](https://github.com/maarzt/imglib2-labkit) and [Paintera](https://github.com/saalfeldlab/paintera) (the latter being very sophisticated but having a steeper learning curve).\n\nAlthough each of these provide decent annotation tools, we currently recommend using Labkit (for 2D or 3D images) or QuPath (for 2D):\n\n#### Annotating with LabKit (2D or 3D)\n\n1. Install [Fiji](https://fiji.sc) and the [Labkit](https://imagej.net/Labkit) plugin\n2. Open the (2D or 3D) image and start Labkit via `Plugins > Segmentation > Labkit`\n3. Successively add a new label and annotate a single cell instance with the brush tool until *all* cells are labeled. \n (Always disable `allow overlapping labels` or \u2013 in older versions of LabKit \u2013 enable the `override` option.) \n4. Export the label image via `Save Labeling...` and `File format > TIF Image`\n\n![](https://github.com/stardist/stardist/raw/master/images/labkit_2d_labkit.png)\n\n\nAdditional tips:\n\n* The Labkit viewer uses [BigDataViewer](https://imagej.net/BigDataViewer) and its keybindings (e.g. s for contrast options, CTRL+Shift+mouse-wheel for zoom-in/out etc.)\n* For 3D images (XYZ) it is best to first convert it to a (XYT) timeseries (via `Re-Order Hyperstack` and swapping `z` and `t`) and then use [ and ] in Labkit to walk through the slices.\n\n#### Annotating with QuPath (2D)\n\n1. Install [QuPath](https://qupath.github.io/)\n2. Create a new project (`File -> Project...-> Create project`) and add your raw images\n3. Annotate nuclei/objects\n4. Run [this script](https://raw.githubusercontent.com/stardist/stardist/master/extras/qupath_export_annotations.groovy) to export the annotations (save the script and drag it on QuPath. Then execute it with `Run for project`). The script will create a `ground_truth` folder within your QuPath project that includes both the `images` and `masks` subfolder that then can directly be used with *StarDist*.\n\nTo see how this could be done, have a look at the following [example QuPath project](https://raw.githubusercontent.com/stardist/stardist/master/extras/qupath_example_project.zip) (data courtesy of Romain Guiet, EPFL).\n\n![](https://github.com/stardist/stardist/raw/master/images/qupath.png)\n\n\n### Multi-class Prediction\n\nStarDist also supports multi-class prediction, i.e. each found object instance can additionally be classified into a fixed number of discrete object classes (e.g. cell types):\n\n![](https://github.com/stardist/stardist/raw/master/images/stardist_multiclass.png)\n\nPlease see the [multi-class example notebook](https://nbviewer.jupyter.org/github/stardist/stardist/blob/master/examples/other2D/multiclass.ipynb) if you're interested in this.\n\n## Instance segmentation metrics\n\nStarDist contains the `stardist.matching` submodule that provides functions to compute common instance segmentation metrics between ground-truth label masks and predictions (not necessarily from StarDist). Currently available metrics are\n\n* `tp`, `fp`, `fn`\n* `precision`, `recall`, `accuracy`, `f1`\n* `panoptic_quality`\n* `mean_true_score`, `mean_matched_score`\n\nwhich are computed by matching ground-truth/prediction objects if their IoU exceeds a threshold (by default 50%). See the documentation of `stardist.matching.matching` for a detailed explanation.\n\nHere is an example how to use it:\n\n```python\n\n# create some example ground-truth and dummy prediction data\nfrom stardist.data import test_image_nuclei_2d\nfrom scipy.ndimage import rotate\n_, y_true = test_image_nuclei_2d(return_mask=True)\ny_pred = rotate(y_true, 2, order=0, reshape=False)\n\n# compute metrics between ground-truth and prediction\nfrom stardist.matching import matching\n\nmetrics = matching(y_true, y_pred)\n\nprint(metrics)\n```\n```\nMatching(criterion='iou', thresh=0.5, fp=88, tp=37, fn=88, precision=0.296, \n recall=0.296, accuracy=0.1737, f1=0.296, n_true=125, n_pred=125, \n mean_true_score=0.19490, mean_matched_score=0.65847, panoptic_quality=0.19490)\n```\n\nIf you want to compare a list of images you can use `stardist.matching.matching_dataset`:\n\n```python\n\nfrom stardist.matching import matching_dataset\n\nmetrics = matching_dataset([y_true, y_true], [y_pred, y_pred])\n\nprint(metrics)\n```\n```\nDatasetMatching(criterion='iou', thresh=0.5, fp=176, tp=74, fn=176, precision=0.296, \n recall=0.296, accuracy=0.1737, f1=0.296, n_true=250, n_pred=250, \n mean_true_score=0.19490, mean_matched_score=0.6584, panoptic_quality=0.1949, by_image=False)\n```\n\n\n\n## Troubleshooting & Support\n\n1. Please first take a look at the [frequently asked questions (FAQ)]( https://stardist.net/docs/faq.html).\n2. If you need further help, please go to the [image.sc forum](https://forum.image.sc) and try to find out if the issue you're having has already been discussed or solved by other people. If not, feel free to create a new topic there and make sure to use the tag `stardist` (we are monitoring all questions with this tag).\n3. If you have a technical question related to the source code or believe to have found a bug, feel free to [open an issue](https://github.com/stardist/stardist/issues), but please check first if someone already created a similar issue.\n\n### Installation\n\nIf `pip install stardist` fails, it could be because there are no compatible wheels (`.whl`) for your platform ([see list](https://pypi.org/project/stardist/#files)). In this case, `pip` tries to compile a C++ extension that our Python package relies on (see below). While this often works on Linux out of the box, it will likely fail on Windows and macOS without installing a suitable compiler. (Note that you can enforce compilation by installing via `pip install stardist --no-binary :stardist:`.)\n\nInstallation without using wheels requires Python 3.6 (or newer) and a working C++ compiler. We have only tested [GCC](http://gcc.gnu.org) (macOS, Linux), [Clang](https://clang.llvm.org) (macOS), and [Visual Studio](https://visualstudio.microsoft.com) (Windows 10). Please [open an issue](https://github.com/stardist/stardist/issues) if you have problems that are not resolved by the information below.\n\nIf available, the C++ code will make use of [OpenMP](https://en.wikipedia.org/wiki/OpenMP) to exploit multiple CPU cores for substantially reduced runtime on modern CPUs. This can be important to prevent slow model training.\n\n#### macOS\nThe default C/C++ compiler Clang that comes with the macOS command line tools (installed via `xcode-select --install`) does not support OpenMP out of the box, but it can be added. Alternatively, a suitable compiler can be installed from [conda-forge](https://conda-forge.org). Please see this [detailed guide](https://scikit-learn.org/stable/developers/advanced_installation.html#macos) for more information on both strategies (although written for [scikit-image](https://scikit-learn.org), it also applies here).\n\nA third alternative (and what we did until StarDist 0.8.1) is to install the OpenMP-enabled GCC compiler via [Homebrew](https://brew.sh) with `brew install gcc` (e.g. installing `gcc-10`/`g++-10` or newer). After that, you can build the package like this (adjust compiler names/paths as necessary):\n\n CC=gcc-10 CXX=g++-10 pip install stardist\n\nIf you use `conda` on macOS and after `import stardist` see errors similar to `Symbol not found: _GOMP_loop_nonmonotonic_dynamic_next`, please see [this issue](https://github.com/stardist/stardist/issues/19#issuecomment-535610758) for a temporary workaround.\n\n##### Apple Silicon\n\nAs of StarDist 0.8.2, we provide `arm64` wheels that should work with macOS on Apple M1.\nFor more details about installing TensorFlow and other important packages on the Apple M1 architecture, please see [this excellent post](https://forum.image.sc/t/napari-tensorflow-aicsimageio-stardist-care-n2v-pyclesperanto-running-native-on-apple-silicon-m1/55051/3) by Peter Sobolewski.\n\n\n#### Windows\nPlease install the [Build Tools for Visual Studio 2019](https://www.visualstudio.com/downloads/#build-tools-for-visual-studio-2019) (or newer) from Microsoft to compile extensions for Python 3.6+ (see [this](https://wiki.python.org/moin/WindowsCompilers) for further information). During installation, make sure to select the *C++ build tools*. Note that the compiler comes with OpenMP support.\n\n## Plugins for other software\n\n### ImageJ/Fiji\n\nWe currently provide a ImageJ/Fiji plugin that can be used to run pretrained StarDist models on 2D or 2D+time images. Installation and usage instructions can be found at the [plugin page](https://imagej.net/StarDist).\n\n### Napari\n\nWe made a plugin for the Python-based multi-dimensional image viewer [napari](https://napari.org). It directly uses the StarDist Python package and works for 2D and 3D images. Please see the [code repository](https://github.com/stardist/stardist-napari) for further details.\n\n### QuPath\n\nInspired by the Fiji plugin, [Pete Bankhead](https://github.com/petebankhead) made a custom implementation of StarDist 2D for [QuPath](https://qupath.github.io) to use pretrained models. Please see [this page](https://qupath.readthedocs.io/en/latest/docs/advanced/stardist.html) for documentation and installation instructions.\n\n### Icy\n\nBased on the Fiji plugin, [Deborah Schmidt](https://github.com/frauzufall) made a StarDist 2D plugin for [Icy](https://github.com/stardist/stardist-icy) to use pretrained models. Please see the [code repository](https://github.com/stardist/stardist-icy) for further details.\n\n### KNIME\n\n[Stefan Helfrich](https://github.com/stelfrich) has modified the Fiji plugin to be compatible with [KNIME](https://www.knime.com). Please see [this page](https://hub.knime.com/stelfrich/spaces/Public/latest/StarDist/StarDist%202D) for further details.\n\n## How to cite\n```bibtex\n@inproceedings{schmidt2018,\n author = {Uwe Schmidt and Martin Weigert and Coleman Broaddus and Gene Myers},\n title = {Cell Detection with Star-Convex Polygons},\n booktitle = {Medical Image Computing and Computer Assisted Intervention - {MICCAI} \n 2018 - 21st International Conference, Granada, Spain, September 16-20, 2018, Proceedings, Part {II}},\n pages = {265--273},\n year = {2018},\n doi = {10.1007/978-3-030-00934-2_30}\n}\n\n@inproceedings{weigert2020,\n author = {Martin Weigert and Uwe Schmidt and Robert Haase and Ko Sugawara and Gene Myers},\n title = {Star-convex Polyhedra for 3D Object Detection and Segmentation in Microscopy},\n booktitle = {The IEEE Winter Conference on Applications of Computer Vision (WACV)},\n month = {March},\n year = {2020},\n doi = {10.1109/WACV45572.2020.9093435}\n}\n```\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/stardist/stardist", "keywords": "", "license": "BSD-3-Clause", "maintainer": "", "maintainer_email": "", "name": "stardist", "package_url": "https://pypi.org/project/stardist/", "platform": null, "project_url": "https://pypi.org/project/stardist/", "project_urls": { "Homepage": "https://github.com/stardist/stardist" }, "release_url": "https://pypi.org/project/stardist/0.8.2/", "requires_dist": [ "csbdeep (>=0.6.3)", "scikit-image", "numba", "imageio", "bioimageio.core (>=0.5.0) ; extra == 'bioimageio'", "importlib-metadata ; extra == 'bioimageio'", "pytest ; extra == 'test'", "csbdeep[tf1] (>=0.6.3) ; extra == 'tf1'" ], "requires_python": ">=3.6", "summary": "StarDist - Object Detection with Star-convex Shapes", "version": "0.8.2", "yanked": false, "yanked_reason": null }, "last_serial": 13469974, "releases": { "0.0.0": [ { "comment_text": "", "digests": { "md5": "e280b519bbeea9904774a7fe61096df1", "sha256": "5eebef7f41faaed7e34022809d25163fbc1a4c896a07c49942b5a0aacf593040" }, "downloads": -1, "filename": "stardist-0.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e280b519bbeea9904774a7fe61096df1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1187, "upload_time": "2018-06-11T15:48:55", "upload_time_iso_8601": "2018-06-11T15:48:55.876391Z", "url": "https://files.pythonhosted.org/packages/37/49/3e3e947c75870561628957d80d8c66663f9a74e882a54345530aafe418f8/stardist-0.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "596376bbce8d436d1c608e2ee5b1fd10", "sha256": "e0a5d8fe923072992eac4386f429e8d1ca100f816a9e60b3650a79a5b1462cf1" }, "downloads": -1, "filename": "stardist-0.1.0.tar.gz", "has_sig": false, "md5_digest": "596376bbce8d436d1c608e2ee5b1fd10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46932, "upload_time": "2018-06-26T22:35:10", "upload_time_iso_8601": "2018-06-26T22:35:10.936562Z", "url": "https://files.pythonhosted.org/packages/b7/42/c605d74bd3ce36972f6e74b67f7b261bb626f805f7da4309602105e9250d/stardist-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "51a1daa0076623f0ff577220fd65aa14", "sha256": "f2ebff0586686b9064314b9fdb572f01f4328771c089279cc987051f5f7c06db" }, "downloads": -1, "filename": "stardist-0.1.1.tar.gz", "has_sig": false, "md5_digest": "51a1daa0076623f0ff577220fd65aa14", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 47859, "upload_time": "2018-06-30T12:58:50", "upload_time_iso_8601": "2018-06-30T12:58:50.308134Z", "url": "https://files.pythonhosted.org/packages/ba/3c/6b1b4f49bf072b195d9f28ed6a68a7d1f6ea35bf0468eb483cbedcbf0ea2/stardist-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "2924e161fa478c4219de74b2a06f8d3a", "sha256": "a639ba2d5d09a195beb1f7e847cf0c5fee15e0013d014bcdee8eb81bfab2a838" }, "downloads": -1, "filename": "stardist-0.2.0.tar.gz", "has_sig": false, "md5_digest": "2924e161fa478c4219de74b2a06f8d3a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 58759, "upload_time": "2019-02-04T16:57:41", "upload_time_iso_8601": "2019-02-04T16:57:41.903976Z", "url": "https://files.pythonhosted.org/packages/77/b9/e5c25dc38b4b993b9c52aff6130a354350a924171390b8b56a96e01a97e2/stardist-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "f2f7ae29b8e3ee939e902f3891870bc6", "sha256": "870200bb03bfee6e1386df729590a2d264e532f5ed3bd467ef11e31b9b43e8f9" }, "downloads": -1, "filename": "stardist-0.2.1.tar.gz", "has_sig": false, "md5_digest": "f2f7ae29b8e3ee939e902f3891870bc6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 59494, "upload_time": "2019-04-30T17:24:06", "upload_time_iso_8601": "2019-04-30T17:24:06.329940Z", "url": "https://files.pythonhosted.org/packages/f8/f8/1e313e5fc3c85e6dcffc6f977b130f6b673ea060de5a02e1071d5c88763e/stardist-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "aa02817d7932e8d7bb048d4f76678ef2", "sha256": "f0cb0c1553ae89fa26852ab4a263ae2617a5ae6757ba2223fb06f1769da790e4" }, "downloads": -1, "filename": "stardist-0.2.2.tar.gz", "has_sig": false, "md5_digest": "aa02817d7932e8d7bb048d4f76678ef2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 49847, "upload_time": "2019-06-03T15:08:37", "upload_time_iso_8601": "2019-06-03T15:08:37.452922Z", "url": "https://files.pythonhosted.org/packages/9e/05/14f581ca8d39767543752b0fca59953de816577e49665a404d8891e141fa/stardist-0.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "0956948876e5ca5ab75fc9a7a19fe128", "sha256": "8745cba9028575fec34c3e99b726228a86a5aa7709d589ca9fd25b1a73e8b14d" }, "downloads": -1, "filename": "stardist-0.3.0.tar.gz", "has_sig": false, "md5_digest": "0956948876e5ca5ab75fc9a7a19fe128", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 385004, "upload_time": "2019-08-13T15:49:10", "upload_time_iso_8601": "2019-08-13T15:49:10.959579Z", "url": "https://files.pythonhosted.org/packages/93/7c/47a9dc9c525a209703238e010ee52f8d0dc2f56c9ab3219bcd42ff21480d/stardist-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "3c80e4ab72935b52ca48908998de4712", "sha256": "a0b0cfad38f5ed337e8270e5cd22256c282bdd67abfd43f9a1259fd2b93f97f0" }, "downloads": -1, "filename": "stardist-0.3.1.tar.gz", "has_sig": false, "md5_digest": "3c80e4ab72935b52ca48908998de4712", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 384886, "upload_time": "2019-08-13T19:20:24", "upload_time_iso_8601": "2019-08-13T19:20:24.065763Z", "url": "https://files.pythonhosted.org/packages/d2/b1/a1f11bd81948e12172cd4489e6df0cfef358813e287b0bd1ef9280b16a80/stardist-0.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "3ebe19c52d0f1cf9738dda7a6736718b", "sha256": "38d7105c23bcb91d1ffb17c9731031397f999cb779ea020eaf70764faa4f66f9" }, "downloads": -1, "filename": "stardist-0.3.2.tar.gz", "has_sig": false, "md5_digest": "3ebe19c52d0f1cf9738dda7a6736718b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 385002, "upload_time": "2019-08-13T23:01:26", "upload_time_iso_8601": "2019-08-13T23:01:26.557089Z", "url": "https://files.pythonhosted.org/packages/dd/10/9c32c1ef66e56dedaaba5591c97ec46319f14546bd62e2d3e86606c2a8e3/stardist-0.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "81bbf27020eebad951cc492936cecc65", "sha256": "04dc0f328bbb4fd95fd85a02b863c67946546615db8d658a0e27e667d9274eaa" }, "downloads": -1, "filename": "stardist-0.3.3.tar.gz", "has_sig": false, "md5_digest": "81bbf27020eebad951cc492936cecc65", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 385639, "upload_time": "2019-09-24T21:37:33", "upload_time_iso_8601": "2019-09-24T21:37:33.214787Z", "url": "https://files.pythonhosted.org/packages/88/d5/51972b9c6e210a34c44c263a1ac60d525271c5d90a802df5ecc9d66287fa/stardist-0.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "f8a78516d29bb88a52d90f07e5941638", "sha256": "2ca547c0c690259b76985a44c4ffac4168edb09fb3d61eb183c5b14606a41093" }, "downloads": -1, "filename": "stardist-0.3.4.tar.gz", "has_sig": false, "md5_digest": "f8a78516d29bb88a52d90f07e5941638", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 385801, "upload_time": "2019-09-25T14:20:21", "upload_time_iso_8601": "2019-09-25T14:20:21.307439Z", "url": "https://files.pythonhosted.org/packages/24/ec/9dc4a68a03a86e509f760595c1168d8bfe4550f36a75d23b08fcc37ec689/stardist-0.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "ec14e491c23ff7cab69b79651df66988", "sha256": "4414c51793b4d5e29d2753e5a78073f355de3a8e1cdccbfbc28751ea30f17395" }, "downloads": -1, "filename": "stardist-0.3.5.tar.gz", "has_sig": false, "md5_digest": "ec14e491c23ff7cab69b79651df66988", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 385665, "upload_time": "2019-09-26T12:32:10", "upload_time_iso_8601": "2019-09-26T12:32:10.230864Z", "url": "https://files.pythonhosted.org/packages/50/13/3001a5abf83db0a6edc6184b2207cc2ddaed577845367fc636765d99ad57/stardist-0.3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "cb760169c24486160b1dc009db889a4b", "sha256": "72f681f2dbf4f32fc38cdbcc0bd2778e0a885a7a9307450bc1753c2e00c7fa6e" }, "downloads": -1, "filename": "stardist-0.3.6.tar.gz", "has_sig": false, "md5_digest": "cb760169c24486160b1dc009db889a4b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 386465, "upload_time": "2019-10-24T17:54:28", "upload_time_iso_8601": "2019-10-24T17:54:28.002662Z", "url": "https://files.pythonhosted.org/packages/02/57/06b5f1919f2e9198eac829c1858c07622bf91ecf1339d5595dfd7d5cea87/stardist-0.3.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "1dc9bb2d4ae15cc1b44cc858055144bd", "sha256": "2ff574dbd2c64e25e83dc124f2b1d2bbbb03ccfc459397cc90ee8db329af0ad5" }, "downloads": -1, "filename": "stardist-0.4.0.tar.gz", "has_sig": false, "md5_digest": "1dc9bb2d4ae15cc1b44cc858055144bd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 393266, "upload_time": "2020-02-11T13:15:54", "upload_time_iso_8601": "2020-02-11T13:15:54.384808Z", "url": "https://files.pythonhosted.org/packages/95/83/0822a12f30fdedbd6b6dd0df32433e47c206cf11f68ae4f8d89423c9ab02/stardist-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "58ea5d084e7d5af37cc02f2067a7aae4", "sha256": "54455aa0261db7d787fa4e75fc0b39a59ceee27d56a1170f0a3008372cca10f9" }, "downloads": -1, "filename": "stardist-0.4.1.tar.gz", "has_sig": false, "md5_digest": "58ea5d084e7d5af37cc02f2067a7aae4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 393833, "upload_time": "2020-02-11T18:15:59", "upload_time_iso_8601": "2020-02-11T18:15:59.922372Z", "url": "https://files.pythonhosted.org/packages/a2/04/7c4e828bc408062733cf70f102fcef1792c191b15c238803f4e404289371/stardist-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "28af7c092541ee9e50809ee45e6f5c59", "sha256": "e2373d42e0dc74ffa0d011d74b6debab99036af0e2e40a98f0a38d44e36c6dbb" }, "downloads": -1, "filename": "stardist-0.5.0.tar.gz", "has_sig": false, "md5_digest": "28af7c092541ee9e50809ee45e6f5c59", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 396487, "upload_time": "2020-04-27T22:55:27", "upload_time_iso_8601": "2020-04-27T22:55:27.809619Z", "url": "https://files.pythonhosted.org/packages/32/b1/caa768d3c1b8194c227b9d901915258c174f0058b36a19e3a0917064ebcd/stardist-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "b4e611a8d1742790979bf1e1f90bc615", "sha256": "4d5539780279c1f00d7346fdc4ebb122e056306cd770091b66bbcdb6701504e5" }, "downloads": -1, "filename": "stardist-0.6.0.tar.gz", "has_sig": false, "md5_digest": "b4e611a8d1742790979bf1e1f90bc615", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 407497, "upload_time": "2020-07-14T12:00:22", "upload_time_iso_8601": "2020-07-14T12:00:22.306968Z", "url": "https://files.pythonhosted.org/packages/a5/35/a30976be3da5f3d01b174c332543efd2c2980e1fda80c9fe1c8afb668c79/stardist-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "f4a95655f9e8872a66dbe0e4cf71e7fc", "sha256": "28ec360f702b78729854671481f737f3b94e5271656dd69a696d56238b4cbdc1" }, "downloads": -1, "filename": "stardist-0.6.1.tar.gz", "has_sig": false, "md5_digest": "f4a95655f9e8872a66dbe0e4cf71e7fc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 410158, "upload_time": "2020-11-27T11:50:14", "upload_time_iso_8601": "2020-11-27T11:50:14.984363Z", "url": "https://files.pythonhosted.org/packages/ea/79/04cf6656a7270b6a46055f7feee38acf62fc5d3384f9bfef7bb6e4d35783/stardist-0.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "26e9be3f288acc5c21e76335f0f01375", "sha256": "ef48edbca3f3982eb4664318679df45c273e4360f3cb708e3ea7a25f376a5d93" }, "downloads": -1, "filename": "stardist-0.6.2-cp36-cp36m-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "26e9be3f288acc5c21e76335f0f01375", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1446619, "upload_time": "2021-02-28T22:55:40", "upload_time_iso_8601": "2021-02-28T22:55:40.361399Z", "url": "https://files.pythonhosted.org/packages/3d/7b/77df6d3063e3ecd1f7efa31cb47ea42fc6e0ffad931da0795273921c5ba7/stardist-0.6.2-cp36-cp36m-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0e5d8a19c838a790009a94b4df79241", "sha256": "95b4ba5b5afad2192c760e7352b9d7bbdd8519581d63d6b92ef2e058a4ae4170" }, "downloads": -1, "filename": "stardist-0.6.2-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b0e5d8a19c838a790009a94b4df79241", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2399562, "upload_time": "2021-02-28T22:55:42", "upload_time_iso_8601": "2021-02-28T22:55:42.953224Z", "url": "https://files.pythonhosted.org/packages/b8/2b/7c9146f98452520a9097168fd8ed385ee39590afe9fbccfba4cd41bd4fac/stardist-0.6.2-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e87bf4ce5c26b1ea374acd4b6541844", "sha256": "64a4eb62da2a754c25208748357b3acf69340835bb50dfac06c411a6ccb91bd0" }, "downloads": -1, "filename": "stardist-0.6.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "7e87bf4ce5c26b1ea374acd4b6541844", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 385045, "upload_time": "2021-02-28T22:55:45", "upload_time_iso_8601": "2021-02-28T22:55:45.034948Z", "url": "https://files.pythonhosted.org/packages/4a/d0/34ef825101a4fcdd6506f5798587aeadc97dce9ab0fa441531e298c0264d/stardist-0.6.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ccbba91b077dfe777cf7fa68a5ddeb58", "sha256": "732d08f779d4b795ff471714f4fb725bcbea872fd91d50c5c5c88d019803d8fb" }, "downloads": -1, "filename": "stardist-0.6.2-cp37-cp37m-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "ccbba91b077dfe777cf7fa68a5ddeb58", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1446619, "upload_time": "2021-02-28T22:55:47", "upload_time_iso_8601": "2021-02-28T22:55:47.436650Z", "url": "https://files.pythonhosted.org/packages/bc/df/2d2991085c67daf523bc138e36967ab85f8c09da0dd3cd1eb6ba9f85e7a6/stardist-0.6.2-cp37-cp37m-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cbda67fb23914b8c31bddd90e2ee4aac", "sha256": "9ede9ec3eebf02d916deba9a97b4d106573d0805264fce9e5a8d8c1cbd9ef88f" }, "downloads": -1, "filename": "stardist-0.6.2-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "cbda67fb23914b8c31bddd90e2ee4aac", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2402104, "upload_time": "2021-02-28T22:55:50", "upload_time_iso_8601": "2021-02-28T22:55:50.265625Z", "url": "https://files.pythonhosted.org/packages/98/48/c5c3dd65a177751945eb6d730ac63c7f9bd2811cc2cba5369cac42c07be0/stardist-0.6.2-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c545aff554605f3d644f0c67d4ed837", "sha256": "03654608f6b20a5adaff420e67bfbb591d56ef8ea0cdf1695a9ff93b1685f08e" }, "downloads": -1, "filename": "stardist-0.6.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "8c545aff554605f3d644f0c67d4ed837", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 385049, "upload_time": "2021-02-28T22:55:51", "upload_time_iso_8601": "2021-02-28T22:55:51.809724Z", "url": "https://files.pythonhosted.org/packages/3b/48/e5f9efd91454d1276a85467302edbf65e2f8d8237b4f9699d21fc8531bfb/stardist-0.6.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ad733181dc22fe5eec964051b2805bc", "sha256": "64469532d1346e60be5913fa620bad508cc2282b74689bd4e1e5db64b9621136" }, "downloads": -1, "filename": "stardist-0.6.2-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "2ad733181dc22fe5eec964051b2805bc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1446727, "upload_time": "2021-02-28T22:55:53", "upload_time_iso_8601": "2021-02-28T22:55:53.893738Z", "url": "https://files.pythonhosted.org/packages/8d/1a/dd9c3d2bd9656f31692067c6cf21966e2267ca39dbe83b0577092b217ba6/stardist-0.6.2-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "667fe2b6324abbc749136d7c3a7686be", "sha256": "1ac62dc54d20b57db12ccc5cdacfc27b0250d8fabc47f2733b62082ebd948a70" }, "downloads": -1, "filename": "stardist-0.6.2-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "667fe2b6324abbc749136d7c3a7686be", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2400736, "upload_time": "2021-02-28T22:55:56", "upload_time_iso_8601": "2021-02-28T22:55:56.923962Z", "url": "https://files.pythonhosted.org/packages/06/a5/d3a56bd89eda7d9ea53a6909902746365c361241c422f79a11ce9900e17d/stardist-0.6.2-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a098adfcec0483a873fb6cd7473de08", "sha256": "45c2eaa8dae4f5bd948d6ad46a7b40e38442d67d4534e7cbc049def231e91196" }, "downloads": -1, "filename": "stardist-0.6.2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "8a098adfcec0483a873fb6cd7473de08", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 385473, "upload_time": "2021-02-28T22:55:58", "upload_time_iso_8601": "2021-02-28T22:55:58.842786Z", "url": "https://files.pythonhosted.org/packages/c2/92/78d6334be07df688ea7b9c3b7d7f00281347503dc46951e6d871e39f7cb9/stardist-0.6.2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "faa9cf393eabf3ac9639c876e1cf47a7", "sha256": "e2d4511c82de09fa6e07be283ebe5cc655572edb0374964b30eb0b4b0978dda9" }, "downloads": -1, "filename": "stardist-0.6.2.tar.gz", "has_sig": false, "md5_digest": "faa9cf393eabf3ac9639c876e1cf47a7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 450730, "upload_time": "2021-02-28T22:56:00", "upload_time_iso_8601": "2021-02-28T22:56:00.347823Z", "url": "https://files.pythonhosted.org/packages/94/15/3bca8c7e45a0ed15ff5b109d7af60f47b95afa45ab990eecdd3a917a5daf/stardist-0.6.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "eb9b72121116626ad7df73b4f877a6a3", "sha256": "f7312bdfdbd96da25dc5577a5d3fbb0dab9093377ae3e71a8f0e815004184f06" }, "downloads": -1, "filename": "stardist-0.7.0-cp36-cp36m-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "eb9b72121116626ad7df73b4f877a6a3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1828272, "upload_time": "2021-05-31T23:21:46", "upload_time_iso_8601": "2021-05-31T23:21:46.887338Z", "url": "https://files.pythonhosted.org/packages/18/e5/eba961a6532017fc841c158087b132eb9ad6fa639d42faf18268ea5a8eef/stardist-0.7.0-cp36-cp36m-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e78924922c336ba2043877a73c139eb5", "sha256": "89e13957b9229e7c8fb59a9bec5639ed1de64289df46b0ebe6e922c16a48dcc4" }, "downloads": -1, "filename": "stardist-0.7.0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e78924922c336ba2043877a73c139eb5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 3028901, "upload_time": "2021-05-31T23:21:51", "upload_time_iso_8601": "2021-05-31T23:21:51.553834Z", "url": "https://files.pythonhosted.org/packages/98/58/8a3c80731e366c5a0146d5666fa4da231bb6a5db4ea5efd52feee9f19e24/stardist-0.7.0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a36f74dfc2e2df8a8b6d79604602180", "sha256": "617a272382a571b01dc377687f1a5599834acdf0b0de9edafc45670c1f9c1ac0" }, "downloads": -1, "filename": "stardist-0.7.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "0a36f74dfc2e2df8a8b6d79604602180", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 758154, "upload_time": "2021-05-31T23:21:53", "upload_time_iso_8601": "2021-05-31T23:21:53.710782Z", "url": "https://files.pythonhosted.org/packages/00/bb/5898d4f57a65dda7be3cb79e290380be3f30cc8c56ff50521e827b11aaf0/stardist-0.7.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a27b937896d2673e81cd361769d1340f", "sha256": "0841ef416909983b6e652e67b180d093de86cbd62c90b036be435de020051ff0" }, "downloads": -1, "filename": "stardist-0.7.0-cp37-cp37m-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "a27b937896d2673e81cd361769d1340f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1828277, "upload_time": "2021-05-31T23:21:56", "upload_time_iso_8601": "2021-05-31T23:21:56.667332Z", "url": "https://files.pythonhosted.org/packages/15/de/079fa85ae6208047146da834352459a2143728261fc0f179153e29c2185b/stardist-0.7.0-cp37-cp37m-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f9388316eae37c3b5ccb8ed6210aee3", "sha256": "d73569309dd698f6964648e608a5706ec64d83d6f0763fbd37ca4311d145011d" }, "downloads": -1, "filename": "stardist-0.7.0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1f9388316eae37c3b5ccb8ed6210aee3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 3031268, "upload_time": "2021-05-31T23:22:01", "upload_time_iso_8601": "2021-05-31T23:22:01.034578Z", "url": "https://files.pythonhosted.org/packages/c9/04/3547315260f5cf35853c905da58c711ee8b4d5bfc61a7ad08c56a0536b4c/stardist-0.7.0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60a10f567eaaf35ecf01d7dc752b44e9", "sha256": "0d045ed3c89c7bfd58329af6757a716431b32c4cd5a0c4b8cd109c0260d33f2e" }, "downloads": -1, "filename": "stardist-0.7.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "60a10f567eaaf35ecf01d7dc752b44e9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 758159, "upload_time": "2021-05-31T23:22:03", "upload_time_iso_8601": "2021-05-31T23:22:03.315292Z", "url": "https://files.pythonhosted.org/packages/80/cd/067b5a2cd9d0089c61d994be8bbfb5c8abd40912df6bfdb8b7aede5eb8d2/stardist-0.7.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04471fc411030909fe284888a829c04f", "sha256": "398c2debbfff89e0259ac3d5c97af586092c5d7c451a3de566b8963c2c3abf06" }, "downloads": -1, "filename": "stardist-0.7.0-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "04471fc411030909fe284888a829c04f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1828347, "upload_time": "2021-05-31T23:22:06", "upload_time_iso_8601": "2021-05-31T23:22:06.849825Z", "url": "https://files.pythonhosted.org/packages/e3/bd/e9a1621fc8a265393ee02acb6ed4d0b46908eec6d36a00e06c4bdb2b2d9f/stardist-0.7.0-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1762b65c3ceaa093c9918fdea87bff05", "sha256": "cf4fb46723676ccd3f4c6103a266f588946ea57c699864a5454f1fef0cff28c0" }, "downloads": -1, "filename": "stardist-0.7.0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1762b65c3ceaa093c9918fdea87bff05", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 3029938, "upload_time": "2021-05-31T23:22:11", "upload_time_iso_8601": "2021-05-31T23:22:11.537221Z", "url": "https://files.pythonhosted.org/packages/71/fd/b8cfb4879dfc71f39f1489e5c88a65380f12e1606608c0d0917f7473118a/stardist-0.7.0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c9475abb09c9eb42db474b03db0aa9de", "sha256": "6cc730aa9e5c30850bae272b960ef7ab088fc00394f715e1b74ce1174a38f7d5" }, "downloads": -1, "filename": "stardist-0.7.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "c9475abb09c9eb42db474b03db0aa9de", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 758496, "upload_time": "2021-05-31T23:22:14", "upload_time_iso_8601": "2021-05-31T23:22:14.260643Z", "url": "https://files.pythonhosted.org/packages/3c/aa/06a8012c45d30572d779d54b3d050442b7750d0adad5aad0340f1398aaf3/stardist-0.7.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b11f6c64ee676186059d42832535861a", "sha256": "04871bdaf846f8f622fe8dfb8340d432a3be0b77c7b2196453d520f00f3898e1" }, "downloads": -1, "filename": "stardist-0.7.0-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "b11f6c64ee676186059d42832535861a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1828139, "upload_time": "2021-05-31T23:22:17", "upload_time_iso_8601": "2021-05-31T23:22:17.762529Z", "url": "https://files.pythonhosted.org/packages/df/7d/a998d3bfede439c5f531b136cade2e557e13e1a218681815cfb4a9b8d91a/stardist-0.7.0-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff63b650c4fa0bf0b86f8b5139336c26", "sha256": "d341777ee72539c8bf338d3c644856b7cc7889d1310c94a5e9f18539b92c58d1" }, "downloads": -1, "filename": "stardist-0.7.0-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "ff63b650c4fa0bf0b86f8b5139336c26", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 3019939, "upload_time": "2021-05-31T23:22:22", "upload_time_iso_8601": "2021-05-31T23:22:22.733092Z", "url": "https://files.pythonhosted.org/packages/89/cb/5b184a5f1e28aeb96627c2185cb652cd0df0581c6774d6d5d870d296e7a3/stardist-0.7.0-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ceee60106e31896decd1db40e13e4efd", "sha256": "4f00960fdcb20055ba7e1d17b2cb34c6cd99ef918b8e85a97e248abec7d6f74a" }, "downloads": -1, "filename": "stardist-0.7.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "ceee60106e31896decd1db40e13e4efd", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 757706, "upload_time": "2021-05-31T23:22:24", "upload_time_iso_8601": "2021-05-31T23:22:24.996322Z", "url": "https://files.pythonhosted.org/packages/a0/19/c68daec19be3cc1653471745716ff459cb90a4ec294a772359d20717531c/stardist-0.7.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bae595c0726888692b7cb16f8b3e5f7a", "sha256": "c932eda623761a9648b510f511ec28ba89282292be7f008e11713414e248db18" }, "downloads": -1, "filename": "stardist-0.7.0.tar.gz", "has_sig": false, "md5_digest": "bae595c0726888692b7cb16f8b3e5f7a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 730533, "upload_time": "2021-05-31T23:22:27", "upload_time_iso_8601": "2021-05-31T23:22:27.150889Z", "url": "https://files.pythonhosted.org/packages/0a/18/e45dd94bfa6d302f42c906571b1c5eb129c7b155bd6514e12e2ed91ee2a0/stardist-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "7c2ea35467c4ed981b0d0cb40d2eae98", "sha256": "36d2c7cc259ac20d601fe9eba6cd31f3d8c4e41f7c2959095166f39179cc8184" }, "downloads": -1, "filename": "stardist-0.7.1-cp36-cp36m-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "7c2ea35467c4ed981b0d0cb40d2eae98", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1828269, "upload_time": "2021-06-01T09:34:00", "upload_time_iso_8601": "2021-06-01T09:34:00.243922Z", "url": "https://files.pythonhosted.org/packages/c6/2a/f98f90bcd0d85d4a97425c73676c7962c333da3408a077f854d1b4483c14/stardist-0.7.1-cp36-cp36m-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6c48d6f2e6467a0f0aaf60260da8e8b", "sha256": "3d26bdb6f972bda499b56a49ef6208961302d67db84134f745adb833a7d17d4f" }, "downloads": -1, "filename": "stardist-0.7.1-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f6c48d6f2e6467a0f0aaf60260da8e8b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 3028706, "upload_time": "2021-06-01T09:34:03", "upload_time_iso_8601": "2021-06-01T09:34:03.034649Z", "url": "https://files.pythonhosted.org/packages/cb/6b/9815fc2b2d35a3cd1f20f0992f4a3907e1d24a12c15e9358eac66dee149d/stardist-0.7.1-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c7f288266631f935c1423cb710d2b8e6", "sha256": "258526b8b1add56e9c6a996710b8135c5634eb0bf0a7da0d632cc35f2d45d894" }, "downloads": -1, "filename": "stardist-0.7.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c7f288266631f935c1423cb710d2b8e6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 758153, "upload_time": "2021-06-01T09:34:05", "upload_time_iso_8601": "2021-06-01T09:34:05.582724Z", "url": "https://files.pythonhosted.org/packages/ce/86/9591b36ff201e674621d0aaa90786dbcbcc16cb391eee2905632e9d63c08/stardist-0.7.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2eb993a43022ae4f91d4ad1806e6cb06", "sha256": "f485e70d42390c3ed0e3089bb366cbbcbd1018a860f00c94a89123672cbb1c9c" }, "downloads": -1, "filename": "stardist-0.7.1-cp37-cp37m-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "2eb993a43022ae4f91d4ad1806e6cb06", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1828271, "upload_time": "2021-06-01T09:34:08", "upload_time_iso_8601": "2021-06-01T09:34:08.266541Z", "url": "https://files.pythonhosted.org/packages/76/ae/545a158cb23d7de613fd7991279466a7f160f0ec6a1dffe635b13a6055eb/stardist-0.7.1-cp37-cp37m-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6bb4190fe4ed030963cafef26a429509", "sha256": "28af9c731a108b18aab9107d7a2a94c803780e50bc022bb78850a29602807331" }, "downloads": -1, "filename": "stardist-0.7.1-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "6bb4190fe4ed030963cafef26a429509", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 3031283, "upload_time": "2021-06-01T09:34:12", "upload_time_iso_8601": "2021-06-01T09:34:12.814726Z", "url": "https://files.pythonhosted.org/packages/d7/63/535bfa039f14a79160a8cb60f683a37a3ee9cb4c03424df13f8e97eefd61/stardist-0.7.1-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7708af0a051292687bccfa9e79b9de37", "sha256": "6f80135a2c772d4958c0b9bea9c2a70b6e3f6f58f5ab32b73f0bb5da8c8102d3" }, "downloads": -1, "filename": "stardist-0.7.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "7708af0a051292687bccfa9e79b9de37", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 758157, "upload_time": "2021-06-01T09:34:15", "upload_time_iso_8601": "2021-06-01T09:34:15.143476Z", "url": "https://files.pythonhosted.org/packages/6e/18/8f92a519ace1bf66c0311d6a98e11a78fbf08eab0ab871d0673da4affa9d/stardist-0.7.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "62b4094c7dcddfb174198141c0059031", "sha256": "9b62bdf2d5e14f6f528388fc947d4b4a8120d87568a14bde1ee2e761ec25fbfb" }, "downloads": -1, "filename": "stardist-0.7.1-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "62b4094c7dcddfb174198141c0059031", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1828341, "upload_time": "2021-06-01T09:34:19", "upload_time_iso_8601": "2021-06-01T09:34:19.090237Z", "url": "https://files.pythonhosted.org/packages/0b/00/14dda8d385432bdada9ca76c704a6c057e8092ff96b13537ca01a06af956/stardist-0.7.1-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e03377ad4e02483a0f70f48208ca025e", "sha256": "de565ba6258c7c01eec4bbd09e464b2175b365a865a22db4ca0b7714efd9d65d" }, "downloads": -1, "filename": "stardist-0.7.1-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e03377ad4e02483a0f70f48208ca025e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 3029876, "upload_time": "2021-06-01T09:34:24", "upload_time_iso_8601": "2021-06-01T09:34:24.192582Z", "url": "https://files.pythonhosted.org/packages/73/6a/83c072255c801bf5ee1734aaf90ccba192b8b2407008ebed0085d72ef148/stardist-0.7.1-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06370d6e20e22b2a6da5dc1d778a2014", "sha256": "d4366ea0f2734ec9a22a5ddc0cd09784af195ef85f8e521fb1829b9ad2aaa848" }, "downloads": -1, "filename": "stardist-0.7.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "06370d6e20e22b2a6da5dc1d778a2014", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 758494, "upload_time": "2021-06-01T09:34:26", "upload_time_iso_8601": "2021-06-01T09:34:26.474983Z", "url": "https://files.pythonhosted.org/packages/86/a6/1286c548a0e184371cb389737e82aeb68a15a3b5792fcd0d93d6afa10e74/stardist-0.7.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b1725a2ce2d9c0b7d5138b4db3515aa", "sha256": "93ebbfd95bff6ad59b4846d2e9e6d8a020d33a30a6c80933f01f013f2e0b6d17" }, "downloads": -1, "filename": "stardist-0.7.1-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "5b1725a2ce2d9c0b7d5138b4db3515aa", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1828135, "upload_time": "2021-06-01T09:34:30", "upload_time_iso_8601": "2021-06-01T09:34:30.070737Z", "url": "https://files.pythonhosted.org/packages/97/01/e21746ab312d9ac5244ae22518ee2e8eba58435ac72bab9635fdb2212f81/stardist-0.7.1-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7181c865910374d701781419dcf43a43", "sha256": "7afeef5d1ac9750002312384a14a0b412c5cae79c303c2e96c57a8c30959023b" }, "downloads": -1, "filename": "stardist-0.7.1-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "7181c865910374d701781419dcf43a43", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 3020131, "upload_time": "2021-06-01T09:34:35", "upload_time_iso_8601": "2021-06-01T09:34:35.211607Z", "url": "https://files.pythonhosted.org/packages/ac/bf/edcd74cdf92defddfaec40edd7844afc8d111d69f856a71bc2f274f3c5ff/stardist-0.7.1-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b988d5bd1530ffb30e553203738cfec", "sha256": "086e6856fd2d2404d4737cf990ec3e7870b1b05c064eac22006f90c7437c7a0f" }, "downloads": -1, "filename": "stardist-0.7.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "6b988d5bd1530ffb30e553203738cfec", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 757709, "upload_time": "2021-06-01T09:34:37", "upload_time_iso_8601": "2021-06-01T09:34:37.426283Z", "url": "https://files.pythonhosted.org/packages/4d/b6/eda68a2b3de36e21ddff41b265db4febbfd7ecf3b395642ffff54390f07c/stardist-0.7.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "84ffd669ffa2bd4eca436bf26166d349", "sha256": "0b89ee7208ba25818932d6dbabbc18aed5af3eeaf545835faee55aa540edf6c0" }, "downloads": -1, "filename": "stardist-0.7.1.tar.gz", "has_sig": false, "md5_digest": "84ffd669ffa2bd4eca436bf26166d349", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 825428, "upload_time": "2021-06-01T09:34:39", "upload_time_iso_8601": "2021-06-01T09:34:39.926399Z", "url": "https://files.pythonhosted.org/packages/a8/dd/5c72bd6d85a1f396480dfe8fe73b9a1f18e28c1ebbb8f22797b2350a1afb/stardist-0.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "d23127d1f76b16e178b083bd68122e4e", "sha256": "affc21cc3495e31cb7fae7ebd520cacbeec7d5d623e7d1680fa0c7dbd3ff0af1" }, "downloads": -1, "filename": "stardist-0.7.2-cp36-cp36m-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "d23127d1f76b16e178b083bd68122e4e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1875338, "upload_time": "2021-07-29T12:33:34", "upload_time_iso_8601": "2021-07-29T12:33:34.992405Z", "url": "https://files.pythonhosted.org/packages/b2/61/ef62239ef31660b59394eb9d11a1d24ee6cc630969a990524a2cbb9fff45/stardist-0.7.2-cp36-cp36m-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af986efd9d6178424a6108375e24aa5b", "sha256": "7df2b1b242b29a97e5c4424b7f8387255c36999f5fdf61a8ccb46f298010519b" }, "downloads": -1, "filename": "stardist-0.7.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "af986efd9d6178424a6108375e24aa5b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 3028911, "upload_time": "2021-07-29T12:33:40", "upload_time_iso_8601": "2021-07-29T12:33:40.023000Z", "url": "https://files.pythonhosted.org/packages/ac/67/c117c052c8ca7e4369dff6b4a1d4ff815332f3549963ff5a432567aa8083/stardist-0.7.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "886305111f6a1bdd2e6308989ed80dc4", "sha256": "ff90670d632ef6760f1cce0b2a68c0f73d5c991d770da6c20fd33c3173ad54fb" }, "downloads": -1, "filename": "stardist-0.7.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "886305111f6a1bdd2e6308989ed80dc4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 758366, "upload_time": "2021-07-29T12:33:42", "upload_time_iso_8601": "2021-07-29T12:33:42.547964Z", "url": "https://files.pythonhosted.org/packages/d1/5c/cc8e0fa3dac2546539c722706cbbeb5a8b3aeb5bf51417ba755a42b5b233/stardist-0.7.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4782d2ca39b6c4a5de4aeab1e7d16224", "sha256": "35bcf901d58a84bf2a6a396769a9d4a414f787ea3be4ce47c8191d25e63be22e" }, "downloads": -1, "filename": "stardist-0.7.2-cp37-cp37m-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "4782d2ca39b6c4a5de4aeab1e7d16224", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1875339, "upload_time": "2021-07-29T12:33:46", "upload_time_iso_8601": "2021-07-29T12:33:46.466630Z", "url": "https://files.pythonhosted.org/packages/a2/27/cb904be6751f23138ecc49b4dc9ec0ed1994f3805a3898c2ba1a0d1678e8/stardist-0.7.2-cp37-cp37m-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db664b47c93f5d25ab036186a1d5e953", "sha256": "5ecd028ab62d0dc42b73f8a6ceffb0e7fd5089291b351cc7577ef6dea9516632" }, "downloads": -1, "filename": "stardist-0.7.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "db664b47c93f5d25ab036186a1d5e953", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 3031756, "upload_time": "2021-07-29T12:33:51", "upload_time_iso_8601": "2021-07-29T12:33:51.938047Z", "url": "https://files.pythonhosted.org/packages/1b/a7/5e5bb039584f81f3038cc8fb3523592ff5b1db444bec02a04eb6d3d202b6/stardist-0.7.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3631c9ca66e7c9e9db7f5655745a16e8", "sha256": "1129c768deed0ee43b05e0b6072906de0c8993212e16b28aa6206d21c04063df" }, "downloads": -1, "filename": "stardist-0.7.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "3631c9ca66e7c9e9db7f5655745a16e8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 758463, "upload_time": "2021-07-29T12:33:54", "upload_time_iso_8601": "2021-07-29T12:33:54.542789Z", "url": "https://files.pythonhosted.org/packages/ee/f1/4a5a595d4b1e65a6b6060038067b5271646e9278443710c55ebbbc2edf86/stardist-0.7.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa730f40e529c144247c8a4409eb84cd", "sha256": "d16f5012de62aa68c31bdc155be7f632e9fa46baaf45a15519638aed2e522aa4" }, "downloads": -1, "filename": "stardist-0.7.2-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "aa730f40e529c144247c8a4409eb84cd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1875340, "upload_time": "2021-07-29T12:33:58", "upload_time_iso_8601": "2021-07-29T12:33:58.064065Z", "url": "https://files.pythonhosted.org/packages/f8/4f/2f4e0dbab6cfb4341f87e9e46887964f8f380a796dede15a3f6625b3edff/stardist-0.7.2-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "17edcf20641cd55683cc135aad14102b", "sha256": "e3812b4db0afdcfe75c5b6db46e71ba2688eba72fa5e12d154d6a148e95873af" }, "downloads": -1, "filename": "stardist-0.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "17edcf20641cd55683cc135aad14102b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 3030224, "upload_time": "2021-07-29T12:34:02", "upload_time_iso_8601": "2021-07-29T12:34:02.626274Z", "url": "https://files.pythonhosted.org/packages/d7/c0/373aa07b6f08592bd7eca53bb154bdfe4f434fe461f80bc77bae943b3289/stardist-0.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a9c81ac92ef432ddf8c46b1351f22e30", "sha256": "e292c2f7f793aee7070d6d75f4a32dcf1d7d2de2c0754e09551d60c869fff0a6" }, "downloads": -1, "filename": "stardist-0.7.2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "a9c81ac92ef432ddf8c46b1351f22e30", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 758669, "upload_time": "2021-07-29T12:34:05", "upload_time_iso_8601": "2021-07-29T12:34:05.886555Z", "url": "https://files.pythonhosted.org/packages/fa/b4/f687e3d24e6e70e2a511edbf6323aa04cada9ba7ba5b9f2bbac5592a40d5/stardist-0.7.2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c280f8df75e8e79e37a5c28a97a532bd", "sha256": "0dd384679d1236207b396f2e7aef38f64f41751f88a6c5916acfd65daba1eab0" }, "downloads": -1, "filename": "stardist-0.7.2-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "c280f8df75e8e79e37a5c28a97a532bd", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1875065, "upload_time": "2021-07-29T12:34:09", "upload_time_iso_8601": "2021-07-29T12:34:09.610791Z", "url": "https://files.pythonhosted.org/packages/0c/f6/b9a7ab5ae0a0c2a50f3fae11c69f912abe043ad6be8dc10c8f8fe122e07d/stardist-0.7.2-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b4a300968532aa141e74719c9c774e9", "sha256": "d04053c473e52d13bb6cfc712b6f6c872b4735dc814c1b5c20809384fd6b24ef" }, "downloads": -1, "filename": "stardist-0.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "2b4a300968532aa141e74719c9c774e9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 3020244, "upload_time": "2021-07-29T12:34:13", "upload_time_iso_8601": "2021-07-29T12:34:13.330784Z", "url": "https://files.pythonhosted.org/packages/f8/58/f54a2f5db7d2863eabdbcdf24af62adf976a236ca021a65ee0b9ff8770e1/stardist-0.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "187617e2e58bd4f21577c55c8d4e7cec", "sha256": "9d57fe60b3ce52dad08ff8feb6d60b26e0ea2474082cad9a66a40164aaa51018" }, "downloads": -1, "filename": "stardist-0.7.2-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "187617e2e58bd4f21577c55c8d4e7cec", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 757898, "upload_time": "2021-07-29T12:34:15", "upload_time_iso_8601": "2021-07-29T12:34:15.794089Z", "url": "https://files.pythonhosted.org/packages/55/bd/86ad9ec00debd5674c01b0c06ff070f3b50016b1b0a5fd83b4c8d795e9ed/stardist-0.7.2-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "286ee88fc206d4757a87e201c1a75bde", "sha256": "dff4791a2eab2765fd8e774ef2f9db5ded50dc3d17e97817dcd7d6ed9e9bc5bd" }, "downloads": -1, "filename": "stardist-0.7.2.tar.gz", "has_sig": false, "md5_digest": "286ee88fc206d4757a87e201c1a75bde", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 825958, "upload_time": "2021-07-29T12:34:18", "upload_time_iso_8601": "2021-07-29T12:34:18.355947Z", "url": "https://files.pythonhosted.org/packages/a8/6c/e09e6730d9eb469e5baf2c1d08415300a80f48d03bbebd61d8bdae9417a3/stardist-0.7.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "c663e71df26083217d0dd497e9c895bb", "sha256": "269ff21140ed3230cfc69990b2dd720789204a7503af36e5e60010ae4d703746" }, "downloads": -1, "filename": "stardist-0.7.3-cp36-cp36m-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "c663e71df26083217d0dd497e9c895bb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1875463, "upload_time": "2021-08-20T07:14:15", "upload_time_iso_8601": "2021-08-20T07:14:15.393679Z", "url": "https://files.pythonhosted.org/packages/62/d8/875313aede107979617c1bc97d73a103b62cbedad85184a721fe931456ab/stardist-0.7.3-cp36-cp36m-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ec186d56a83f059ea7e7df8109fc8bd3", "sha256": "8be35b85b4726cc7f320529768145e262b936fa0dc550af19fdc1ee6295f5c7f" }, "downloads": -1, "filename": "stardist-0.7.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "ec186d56a83f059ea7e7df8109fc8bd3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 3006915, "upload_time": "2021-08-20T07:14:20", "upload_time_iso_8601": "2021-08-20T07:14:20.733904Z", "url": "https://files.pythonhosted.org/packages/d5/de/586e0015bdc3c97b5fc3e2ca3b4a677f77739110cd4d9ac5814bc52b9a9e/stardist-0.7.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65cb3f041c787a2f46a1a7da57428460", "sha256": "d082841d88a91f55d78238faabc4526e99fa45863b3161426d3fedb4804fcf13" }, "downloads": -1, "filename": "stardist-0.7.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "65cb3f041c787a2f46a1a7da57428460", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 757392, "upload_time": "2021-08-20T07:14:24", "upload_time_iso_8601": "2021-08-20T07:14:24.258597Z", "url": "https://files.pythonhosted.org/packages/b7/85/bf0eb49289fdcb744786a0c8342cbb68ead3a4b4b61b3574c5dccce4c4e6/stardist-0.7.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ddbca9f0316f6e532627a5914398aeaa", "sha256": "34a5f6aa87615e2cc21d9b11351d567c608c3a9288d56fd3dcb2b3dbedaac9e1" }, "downloads": -1, "filename": "stardist-0.7.3-cp37-cp37m-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "ddbca9f0316f6e532627a5914398aeaa", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1875462, "upload_time": "2021-08-20T07:14:28", "upload_time_iso_8601": "2021-08-20T07:14:28.392310Z", "url": "https://files.pythonhosted.org/packages/44/71/3c5cbd275c574f9a6124f4d365093c8dd112a493755eb062f5d54ca3672e/stardist-0.7.3-cp37-cp37m-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e7e5b40aa4548184696af306cba3c81", "sha256": "18424d58bd99872f1329c5e05614b57548cff305c6abbb52f922c7c91f9c601e" }, "downloads": -1, "filename": "stardist-0.7.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "6e7e5b40aa4548184696af306cba3c81", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 3007024, "upload_time": "2021-08-20T07:14:33", "upload_time_iso_8601": "2021-08-20T07:14:33.046216Z", "url": "https://files.pythonhosted.org/packages/68/11/3478f5f8980435b3429c0349478dc1d10bb6e465b82b2289c0ec5fc626dc/stardist-0.7.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ca2b359243f92fa535ea582ba5117d8", "sha256": "2a49e95ad333ce884087c032c39adab931fcb3802c44d1f8464cc3b15f9fc3a5" }, "downloads": -1, "filename": "stardist-0.7.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "0ca2b359243f92fa535ea582ba5117d8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 757524, "upload_time": "2021-08-20T07:14:35", "upload_time_iso_8601": "2021-08-20T07:14:35.666514Z", "url": "https://files.pythonhosted.org/packages/4f/fe/3e1ace309ba87f97fead02285ca168fcb3409483fcf5859181ea03266e93/stardist-0.7.3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f28baeec7a97dc595cef83564e68c4f", "sha256": "248924735750d4df3f815fcc2b6dc49c1f6ee0e366ae5c39ed1432306ae9bd69" }, "downloads": -1, "filename": "stardist-0.7.3-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "1f28baeec7a97dc595cef83564e68c4f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1875463, "upload_time": "2021-08-20T07:14:39", "upload_time_iso_8601": "2021-08-20T07:14:39.682970Z", "url": "https://files.pythonhosted.org/packages/6b/4d/44d0ac73befcbda5ed75e5e15e77f1ddd75aaad202b3467210cc0b8b85cb/stardist-0.7.3-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "491ad995cb500ecb34a8e693a38264d3", "sha256": "4df00269c772492d01e250c78a935b02e733eefdb0b7d378ce4a7aab437f2b49" }, "downloads": -1, "filename": "stardist-0.7.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "491ad995cb500ecb34a8e693a38264d3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 3007547, "upload_time": "2021-08-20T07:14:43", "upload_time_iso_8601": "2021-08-20T07:14:43.625216Z", "url": "https://files.pythonhosted.org/packages/03/79/50da73961a1091e31ee866967bd6201a4fd27f74aa854790f520cc0cc317/stardist-0.7.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f151389dbc8ebee1b0879946e6d1c09", "sha256": "3a43b177ee8a68b37207f40f06cbbb70e36efd7d389b66706b4dc9eecb1f0902" }, "downloads": -1, "filename": "stardist-0.7.3-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "5f151389dbc8ebee1b0879946e6d1c09", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 757697, "upload_time": "2021-08-20T07:14:46", "upload_time_iso_8601": "2021-08-20T07:14:46.413120Z", "url": "https://files.pythonhosted.org/packages/57/f9/ed9009eeff56f84c0e52a448ac357a9885b759cb325a659ed749fb1aac1e/stardist-0.7.3-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d43b6dddb63643e3e54865b1c4142af4", "sha256": "44c8fa272503dcdacf1779f0b51aeb9b466a0a08a39ad427ca8040bef1a450d3" }, "downloads": -1, "filename": "stardist-0.7.3-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "d43b6dddb63643e3e54865b1c4142af4", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1875191, "upload_time": "2021-08-20T07:14:49", "upload_time_iso_8601": "2021-08-20T07:14:49.854701Z", "url": "https://files.pythonhosted.org/packages/0f/3d/5e8b64cf313e90ae8e33233df0b1fe3f112a9dfd3375b3aa59497d21dd97/stardist-0.7.3-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f81234f43797a25be118771e23f6518d", "sha256": "e3c99b76097b9a54e63e40dd6a7ee5fdfe9acb80b08effe5f220ba38977fc3ff" }, "downloads": -1, "filename": "stardist-0.7.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f81234f43797a25be118771e23f6518d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2997644, "upload_time": "2021-08-20T07:14:55", "upload_time_iso_8601": "2021-08-20T07:14:55.452504Z", "url": "https://files.pythonhosted.org/packages/b2/12/2c72cc97aa5b3868a8019950fa5e29712228c75295a4be462b0450a046c9/stardist-0.7.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "913db51fe549e5aef7e600c68ae6428b", "sha256": "026e69133158ccc34d8326365554385d25e59b04f04f1e61e61c7e838aefc5e9" }, "downloads": -1, "filename": "stardist-0.7.3-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "913db51fe549e5aef7e600c68ae6428b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 757023, "upload_time": "2021-08-20T07:14:58", "upload_time_iso_8601": "2021-08-20T07:14:58.001596Z", "url": "https://files.pythonhosted.org/packages/91/bc/8c9390d997391cc0a79b2b07083ff76d38e9189ba585348257fe0b119f30/stardist-0.7.3-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "583d4552072e73d5962373552751622a", "sha256": "a1ba10f00dde7f83e4d0f28ebee24e1fc1176d7d1638d5bc5b479b6cb7f90cd3" }, "downloads": -1, "filename": "stardist-0.7.3.tar.gz", "has_sig": false, "md5_digest": "583d4552072e73d5962373552751622a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 832580, "upload_time": "2021-08-20T07:15:00", "upload_time_iso_8601": "2021-08-20T07:15:00.550055Z", "url": "https://files.pythonhosted.org/packages/d3/2e/01a14bd8547474966ce38c2f5cb4447a2cab43b25df89b4dd2683bee6de1/stardist-0.7.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "84d83dd668f46c2af4ae425bcad53f16", "sha256": "c1eba072ba7dda8ebf2817847e61a3aa5fb852df8f06872b134ab672fccdb57a" }, "downloads": -1, "filename": "stardist-0.8.0-cp36-cp36m-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "84d83dd668f46c2af4ae425bcad53f16", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1920093, "upload_time": "2022-03-11T11:33:23", "upload_time_iso_8601": "2022-03-11T11:33:23.504438Z", "url": "https://files.pythonhosted.org/packages/a8/9c/25d846b5c4d3b0ce5b979904c0c8c4c924abea05772db0fe39e01bbe0ed0/stardist-0.8.0-cp36-cp36m-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6763c01ab5a672bc8f5228d521fd6b0", "sha256": "2ff669b99dd51b41a2d369c5a026b8da6cc7a9e17c54f1c27706adf306e176a5" }, "downloads": -1, "filename": "stardist-0.8.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c6763c01ab5a672bc8f5228d521fd6b0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 3052667, "upload_time": "2022-03-11T11:33:27", "upload_time_iso_8601": "2022-03-11T11:33:27.035456Z", "url": "https://files.pythonhosted.org/packages/c5/b7/dff3d3665b5e5ae6da7665382b3ad24fd4d7af673e7aea20f6c638639ace/stardist-0.8.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "077775125809336c70eaf869b850ea79", "sha256": "30979e516bd280b60b7ad0a73841ec975e7b6cffdcbaf01b05049ca08060a85f" }, "downloads": -1, "filename": "stardist-0.8.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "077775125809336c70eaf869b850ea79", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 803617, "upload_time": "2022-03-11T11:33:29", "upload_time_iso_8601": "2022-03-11T11:33:29.657746Z", "url": "https://files.pythonhosted.org/packages/3b/af/ddea343c436ed3f13c9759bee76662b2d54b22a306c075712bb5e61b398f/stardist-0.8.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d29465f6bc115e22a9b9843b9e119991", "sha256": "e01ca684c97ac246960379abdd5cf273d2e83f45bf9323fa7768f1a3964acbf2" }, "downloads": -1, "filename": "stardist-0.8.0-cp37-cp37m-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "d29465f6bc115e22a9b9843b9e119991", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1920095, "upload_time": "2022-03-11T11:33:33", "upload_time_iso_8601": "2022-03-11T11:33:33.239173Z", "url": "https://files.pythonhosted.org/packages/64/57/f4c8d0f0bab937d0ed89f004ee7ac6275db1650b468e37f359a4b8a3c173/stardist-0.8.0-cp37-cp37m-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6125a678f74ceb9518ea0073ffac1d8f", "sha256": "67e235332edbfb2fcbce1bbad4f51ccf7d3237c3bbe3615b85b31201c15a5daa" }, "downloads": -1, "filename": "stardist-0.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "6125a678f74ceb9518ea0073ffac1d8f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 3043161, "upload_time": "2022-03-11T11:33:37", "upload_time_iso_8601": "2022-03-11T11:33:37.506543Z", "url": "https://files.pythonhosted.org/packages/5b/a3/c974b2853c3d55a1e2fe868a4c084aea3e5ac048d265cd2e2fe897c1df12/stardist-0.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06b7266b5b301d0efc2b3326b4a6b865", "sha256": "7d8cf612863dc48298f1625e0da7186bb96fd0164a9de757f5478492d8a01a2d" }, "downloads": -1, "filename": "stardist-0.8.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "06b7266b5b301d0efc2b3326b4a6b865", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 803758, "upload_time": "2022-03-11T11:33:40", "upload_time_iso_8601": "2022-03-11T11:33:40.489662Z", "url": "https://files.pythonhosted.org/packages/cf/f6/37f1ad9530755ceb7ab80767c0534c3fe63cfde69a30b657eca7c8063d86/stardist-0.8.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15a804a960782bafe25040d4ac8383c1", "sha256": "bf44e55299a608143d6374df58030b680914916f64b5b6c012eb2788b5be4650" }, "downloads": -1, "filename": "stardist-0.8.0-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "15a804a960782bafe25040d4ac8383c1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1920101, "upload_time": "2022-03-11T11:33:43", "upload_time_iso_8601": "2022-03-11T11:33:43.735500Z", "url": "https://files.pythonhosted.org/packages/3e/e3/91ff26168bf6af6403217c1fbb3629e9f14217ec2c8e4bf7b664e364697d/stardist-0.8.0-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "87eaea5056afd562c1441e83198d41cc", "sha256": "59d90b025fc4dccb47ac3fa9a9db5d069b9fd8a3c2f6810e7cd8e9634563fbdf" }, "downloads": -1, "filename": "stardist-0.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "87eaea5056afd562c1441e83198d41cc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 3043824, "upload_time": "2022-03-11T11:33:47", "upload_time_iso_8601": "2022-03-11T11:33:47.833784Z", "url": "https://files.pythonhosted.org/packages/a1/79/7d2b207878b966c24d235cef1cf8ee58442dc6e1d9d03855fd75a6d847e9/stardist-0.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7de15d6393b1de7338ea5504c7a306e9", "sha256": "4ef458aa17eb7505753dfda383b9fa62b79644da0dd19ce2f10d47de57d02705" }, "downloads": -1, "filename": "stardist-0.8.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "7de15d6393b1de7338ea5504c7a306e9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 803995, "upload_time": "2022-03-11T11:33:50", "upload_time_iso_8601": "2022-03-11T11:33:50.727835Z", "url": "https://files.pythonhosted.org/packages/e8/cd/c96c86ac1b20f96fd06b4a4b004617b6f65560f4806688ca8b4f730c14c9/stardist-0.8.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88ddc19613b6740ae739072b811ffd49", "sha256": "ab926d2190edb3906f06ec4d0c8958074cde706d7147becc2578aa19e84b79df" }, "downloads": -1, "filename": "stardist-0.8.0-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "88ddc19613b6740ae739072b811ffd49", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1919751, "upload_time": "2022-03-11T11:33:53", "upload_time_iso_8601": "2022-03-11T11:33:53.626882Z", "url": "https://files.pythonhosted.org/packages/45/67/5c5e5eead388fbf291198dcce8225a80c3657393ecc7cd184ef3e30418c0/stardist-0.8.0-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a22a11d470f2e2e4cce13336d0507a9", "sha256": "68b8789f1dd7aa857fe4f104c2a85a33fbf5e2633d6c456d64ebc1a3182c0eb4" }, "downloads": -1, "filename": "stardist-0.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "9a22a11d470f2e2e4cce13336d0507a9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 3043545, "upload_time": "2022-03-11T11:33:56", "upload_time_iso_8601": "2022-03-11T11:33:56.962528Z", "url": "https://files.pythonhosted.org/packages/e5/ac/eba2a770b1080b9e819a7d97e80cbab7f897a210cdb145ce01f982aa6099/stardist-0.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f0c441748abe6c5146e8b5c2b902892c", "sha256": "54f7c44990f0e87dabd415e92b95a1f0c78fb1169455b5d8d4a3fff9d7ad166b" }, "downloads": -1, "filename": "stardist-0.8.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "f0c441748abe6c5146e8b5c2b902892c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 803477, "upload_time": "2022-03-11T11:33:59", "upload_time_iso_8601": "2022-03-11T11:33:59.297684Z", "url": "https://files.pythonhosted.org/packages/ec/4b/0dfb87d9c52e0861d36376eb556a8dbbf1c91067041f60d6a83e93d6db46/stardist-0.8.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "913f9ee8ea67cd949953813c67091f1b", "sha256": "54dc09cd88f4409a74717976589013ded8ce3b41d1d34ffe2060be486cc35c94" }, "downloads": -1, "filename": "stardist-0.8.0.tar.gz", "has_sig": false, "md5_digest": "913f9ee8ea67cd949953813c67091f1b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 878747, "upload_time": "2022-03-11T11:34:01", "upload_time_iso_8601": "2022-03-11T11:34:01.508952Z", "url": "https://files.pythonhosted.org/packages/10/f7/cd795c6050b5e1d1d987ae97898e47a20aa1b95e98a3a6e4c7c248478be1/stardist-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "2a1384bac8508cd0bd03d569f2300e28", "sha256": "28fd1412213b063fee2500f91ebacc1d183cc1601277f007ede70caf1b9d59a6" }, "downloads": -1, "filename": "stardist-0.8.1-cp36-cp36m-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "2a1384bac8508cd0bd03d569f2300e28", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1920321, "upload_time": "2022-03-23T09:47:22", "upload_time_iso_8601": "2022-03-23T09:47:22.846125Z", "url": "https://files.pythonhosted.org/packages/ad/35/b9bd529de076d597b1fcd8a5a5cda457a996bdb79a98e6087fad56a640f7/stardist-0.8.1-cp36-cp36m-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40d9190414775853c3947cd1e741938e", "sha256": "99b0d333108964a0df644c5babbd9ca01d4fd56ad28ec508b5bfe7d0c1ee267e" }, "downloads": -1, "filename": "stardist-0.8.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "40d9190414775853c3947cd1e741938e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 3052891, "upload_time": "2022-03-23T09:47:27", "upload_time_iso_8601": "2022-03-23T09:47:27.419943Z", "url": "https://files.pythonhosted.org/packages/0a/1d/774a74839bc7623bcd1395627ec75e06410658bab3b65696c89d59a51379/stardist-0.8.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aaf8d962e79c3f16d3f98661e334aa75", "sha256": "5ba531b9f6054e5b16c8c517d2d39baea869ac3a95c9f4e3a7550c6cb1de0a06" }, "downloads": -1, "filename": "stardist-0.8.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "aaf8d962e79c3f16d3f98661e334aa75", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 803847, "upload_time": "2022-03-23T09:47:29", "upload_time_iso_8601": "2022-03-23T09:47:29.798483Z", "url": "https://files.pythonhosted.org/packages/44/75/ce10765c571ce670bce4851f5933fe40df58ca6ea17274075e77b53a371f/stardist-0.8.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a70e01e271f1295d33797606de420dfc", "sha256": "62d2aca5668c2400cf21f20abb1b1e83392279ea66a5736f46f6ce615cf66fee" }, "downloads": -1, "filename": "stardist-0.8.1-cp37-cp37m-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "a70e01e271f1295d33797606de420dfc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1920315, "upload_time": "2022-03-23T09:47:32", "upload_time_iso_8601": "2022-03-23T09:47:32.940519Z", "url": "https://files.pythonhosted.org/packages/51/0e/a4bcda9dc4cf609af4a44f53fb39c363663e20d79f9e1974b04c8f0e7a7f/stardist-0.8.1-cp37-cp37m-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d3ac761965c6e10d15c6512dee3bf8b", "sha256": "28c2e8f183019ba34f3fc07c99723aea4975a9801260ed573e980fde9c2ec4aa" }, "downloads": -1, "filename": "stardist-0.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "8d3ac761965c6e10d15c6512dee3bf8b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 3043386, "upload_time": "2022-03-23T09:47:36", "upload_time_iso_8601": "2022-03-23T09:47:36.746106Z", "url": "https://files.pythonhosted.org/packages/ca/b8/a9026269b4e900423e3641475ac6a4b02e7dcd126d729dbc7a2d9f3d2ae6/stardist-0.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6fe6c531d3ae661a3bc48c7e393b46d8", "sha256": "b3df6b25d4f41c100747b9e3ff4719a7cacf2ba38e13505a368e0944ba9373da" }, "downloads": -1, "filename": "stardist-0.8.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "6fe6c531d3ae661a3bc48c7e393b46d8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 803986, "upload_time": "2022-03-23T09:47:39", "upload_time_iso_8601": "2022-03-23T09:47:39.753260Z", "url": "https://files.pythonhosted.org/packages/b8/b4/710c4dcd19c02db5d368ad2ee6631fc37676498c0023f12735a0db4de8fc/stardist-0.8.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52394782fde2d783a997b1474bd37640", "sha256": "cb906204bc5a571e2e421f63f95a6dd52e7d71a3e4a9cff213f17850c15e1dc6" }, "downloads": -1, "filename": "stardist-0.8.1-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "52394782fde2d783a997b1474bd37640", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1920312, "upload_time": "2022-03-23T09:47:44", "upload_time_iso_8601": "2022-03-23T09:47:44.568283Z", "url": "https://files.pythonhosted.org/packages/c9/cd/d0f302fd7209db5d2b2d3564d693222568176f05dfc8b12433c237c2801d/stardist-0.8.1-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "54e54c05c87e0100e379c19b2ee85b10", "sha256": "20fd71f5039347260737571c0d6d23c2a0d743fd25f7df247bcd9a3090098142" }, "downloads": -1, "filename": "stardist-0.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "54e54c05c87e0100e379c19b2ee85b10", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 3044052, "upload_time": "2022-03-23T09:47:49", "upload_time_iso_8601": "2022-03-23T09:47:49.188559Z", "url": "https://files.pythonhosted.org/packages/f0/ab/5d3f84867f7a2cf5f8593afed8d293cafcf4a4e109483633447e9213a380/stardist-0.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "63cfc8566dfac14e7c04773327354124", "sha256": "c0a29e540bc9891518cb5c64e9b41bcce1a886f952b7a7d08fd2e4e6e6408adc" }, "downloads": -1, "filename": "stardist-0.8.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "63cfc8566dfac14e7c04773327354124", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 804226, "upload_time": "2022-03-23T09:47:51", "upload_time_iso_8601": "2022-03-23T09:47:51.625096Z", "url": "https://files.pythonhosted.org/packages/42/19/e08b76cd3aebfa1f13a4a6f545cb099aa1579a973bac494ea150e03311cb/stardist-0.8.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2cfeb803cffe6bba81b876e4ebc7045", "sha256": "47f67d6e77f8a1f3280e66a455469b776e5388717efb2986c17bbd16632bd9b9" }, "downloads": -1, "filename": "stardist-0.8.1-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "a2cfeb803cffe6bba81b876e4ebc7045", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1919982, "upload_time": "2022-03-23T09:47:54", "upload_time_iso_8601": "2022-03-23T09:47:54.788479Z", "url": "https://files.pythonhosted.org/packages/3c/68/2d4b082e26d2dd1a6c10efd6da46e03519cb729866b325ac8883c80d196a/stardist-0.8.1-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "020aa0a4a1ed17ea9d3a23730eb8c60e", "sha256": "83f067e048497d6fbae985c5dd5036e511c2ad3e99cb9b496c691c3594556f75" }, "downloads": -1, "filename": "stardist-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "020aa0a4a1ed17ea9d3a23730eb8c60e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 3043772, "upload_time": "2022-03-23T09:47:59", "upload_time_iso_8601": "2022-03-23T09:47:59.317744Z", "url": "https://files.pythonhosted.org/packages/3b/b5/41ffc9140414c4608458cdcbb92f328b60c504bf7115961a69c36a4e54ff/stardist-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "36e7555788044d6bea56a6c878f5225f", "sha256": "661c8de539d00eef0a841ede477ebd82980cb52a51aa8df1bdffa1b6a2c21eb3" }, "downloads": -1, "filename": "stardist-0.8.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "36e7555788044d6bea56a6c878f5225f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 803709, "upload_time": "2022-03-23T09:48:02", "upload_time_iso_8601": "2022-03-23T09:48:02.161882Z", "url": "https://files.pythonhosted.org/packages/84/7e/4c86b75393fb7252481c34837339f561100157379dbfd0420dfe355e2fd0/stardist-0.8.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "825802cab3c095fe46876b865c4a8a65", "sha256": "2bcef9f627078abb22e365879f03e88bb8a588d41e94f82af07d787e56c823ed" }, "downloads": -1, "filename": "stardist-0.8.1.tar.gz", "has_sig": false, "md5_digest": "825802cab3c095fe46876b865c4a8a65", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 879057, "upload_time": "2022-03-23T09:48:04", "upload_time_iso_8601": "2022-03-23T09:48:04.573340Z", "url": "https://files.pythonhosted.org/packages/42/87/0f118e92b8b7ac4f496e8f74c4d0349782e73e3531bcf38ada0afcf0a070/stardist-0.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "4cb04a5cfe51968a4925eac2f05b581d", "sha256": "346719bdc9a1c05f0e112c2dd476853f46ce41f45c5e1899d0d02929c75f179f" }, "downloads": -1, "filename": "stardist-0.8.2-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4cb04a5cfe51968a4925eac2f05b581d", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1166349, "upload_time": "2022-04-10T16:49:29", "upload_time_iso_8601": "2022-04-10T16:49:29.858935Z", "url": "https://files.pythonhosted.org/packages/04/00/c1b7b4bb143cfeabdb2ba0495c1af798d8f7b491a13b6f0e6225adaf544d/stardist-0.8.2-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "add15afa2813bd3dd3a333875df577a9", "sha256": "448876daf088bcf763c2881d4179cde07c3a8dd51ee1a35fb5d1ad813858066d" }, "downloads": -1, "filename": "stardist-0.8.2-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "add15afa2813bd3dd3a333875df577a9", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 846772, "upload_time": "2022-04-10T16:49:32", "upload_time_iso_8601": "2022-04-10T16:49:32.102628Z", "url": "https://files.pythonhosted.org/packages/1e/e8/fc6e70444a09d5bed91db7eda6c849052bc41ee604bce18c847035a55e6e/stardist-0.8.2-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b7237f8b176db807da14d9ebb105d3b", "sha256": "563d73bdb58f9c0b4bff81eba8fbba4cfc3274b9f4dae8149b3f6a69891b71fe" }, "downloads": -1, "filename": "stardist-0.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4b7237f8b176db807da14d9ebb105d3b", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 3045094, "upload_time": "2022-04-10T16:49:33", "upload_time_iso_8601": "2022-04-10T16:49:33.681704Z", "url": "https://files.pythonhosted.org/packages/35/82/e4f6a2cf6925a95816b7d790bf3bbe17f1058471f52f853d825da0bccc14/stardist-0.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15b8ccc7326498de1b2a2a2dda7d4393", "sha256": "29d3478fbf2f0ab63f44e780fd2698a3098acf3c691000d9de112fbd7d57c38c" }, "downloads": -1, "filename": "stardist-0.8.2-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "15b8ccc7326498de1b2a2a2dda7d4393", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 803106, "upload_time": "2022-04-10T16:49:35", "upload_time_iso_8601": "2022-04-10T16:49:35.947219Z", "url": "https://files.pythonhosted.org/packages/f5/84/04cf36411ae61a28746917ea25dd5a8606a5f806d0264d2250ca08a0655e/stardist-0.8.2-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa9921279ec037f9e4432d7c0a30d1f3", "sha256": "9ca073334fad25a441e1626437fb75bed3b7b8302ed0e8ff486f095280c0cf65" }, "downloads": -1, "filename": "stardist-0.8.2-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "fa9921279ec037f9e4432d7c0a30d1f3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1166630, "upload_time": "2022-04-10T16:49:37", "upload_time_iso_8601": "2022-04-10T16:49:37.964427Z", "url": "https://files.pythonhosted.org/packages/05/7e/fc42e9efc4831304bd10c1543777dbf5de459749c04a77d70ae1c7722f79/stardist-0.8.2-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "997286adde27cb9cdfd00eb2ff849105", "sha256": "e907b4015b327afd9168faf3a4fec57cfd128b81cbc2bca82a33f711e4da187c" }, "downloads": -1, "filename": "stardist-0.8.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "997286adde27cb9cdfd00eb2ff849105", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 3053914, "upload_time": "2022-04-10T16:49:39", "upload_time_iso_8601": "2022-04-10T16:49:39.721930Z", "url": "https://files.pythonhosted.org/packages/15/01/3a87882e4a47ea7a31da8869d13a53e3603d895ab871bd253be4220ea894/stardist-0.8.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "674276a2d99e3b389a1e25155d782fd2", "sha256": "417a818b52e9ec8510cd1c4fefce3837f99644eaf1ed28ec556d88365efe2626" }, "downloads": -1, "filename": "stardist-0.8.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "674276a2d99e3b389a1e25155d782fd2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 803432, "upload_time": "2022-04-10T16:49:41", "upload_time_iso_8601": "2022-04-10T16:49:41.664895Z", "url": "https://files.pythonhosted.org/packages/b9/a6/8efc6f28701809a5a40cab372567129846e97c3fd02811b981119e946512/stardist-0.8.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c49f7ddb8cc00177764b87014ed44e31", "sha256": "15a374348e75c41bd18aa37eff7ff1ba088ce8cb52b921df508471f0b8c50a06" }, "downloads": -1, "filename": "stardist-0.8.2-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c49f7ddb8cc00177764b87014ed44e31", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1166614, "upload_time": "2022-04-10T16:49:43", "upload_time_iso_8601": "2022-04-10T16:49:43.523470Z", "url": "https://files.pythonhosted.org/packages/9a/91/2fd12b7b6b53ad0cb4445963274613af2749d990e45eeb6bcee4aaab3977/stardist-0.8.2-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc83535055ff15c08d9c6bfb6609ffd0", "sha256": "c0a760cb50dfd001bd1b05bd196b2c2d82cde06f596cfae43fa1f29a1c0dfdeb" }, "downloads": -1, "filename": "stardist-0.8.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "cc83535055ff15c08d9c6bfb6609ffd0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 3044442, "upload_time": "2022-04-10T16:49:44", "upload_time_iso_8601": "2022-04-10T16:49:44.977412Z", "url": "https://files.pythonhosted.org/packages/2f/f1/1e5e5a186b579468ed58c9bfca1007eb71f813bed9a5dcbee2128d775c55/stardist-0.8.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "665422722fcd82619e2af0b0c0cc0751", "sha256": "48f60c978e7d41528c7f05199fd7e08a025c7e3ac8b6683065d8cf1c12e7b2e9" }, "downloads": -1, "filename": "stardist-0.8.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "665422722fcd82619e2af0b0c0cc0751", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 803573, "upload_time": "2022-04-10T16:49:46", "upload_time_iso_8601": "2022-04-10T16:49:46.629256Z", "url": "https://files.pythonhosted.org/packages/99/53/5284eeb149cb07ed882d5ebd0a2e22bf4f5c16bd5165765033d4e2a895ba/stardist-0.8.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f123579564a7218646d98154e8a0f523", "sha256": "110b4001b93f0992e256ab2d436442266f023f59ea984cf57d148dd22461c0f1" }, "downloads": -1, "filename": "stardist-0.8.2-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f123579564a7218646d98154e8a0f523", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1166771, "upload_time": "2022-04-10T16:49:47", "upload_time_iso_8601": "2022-04-10T16:49:47.768714Z", "url": "https://files.pythonhosted.org/packages/0d/01/6a5744604575f7683cec88a570dd26d1420cb57c88be84d4596b8cefbb18/stardist-0.8.2-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "331013ac1c2db07d5840fae1cd5b6e21", "sha256": "f92e3939a1cf53b4c5f78dcaa4b7647924aef0da9a85dae63017caaec783976e" }, "downloads": -1, "filename": "stardist-0.8.2-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "331013ac1c2db07d5840fae1cd5b6e21", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 846683, "upload_time": "2022-04-10T16:49:49", "upload_time_iso_8601": "2022-04-10T16:49:49.619381Z", "url": "https://files.pythonhosted.org/packages/76/9c/5671c59c7c18f358914929efbf368e647b519c3966d7692b6305b3d6a64f/stardist-0.8.2-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19383733b2b8c333da815733ce3694a6", "sha256": "5bf1aa79072813a50d6dd7ee0a21c8755e635afe4c5c25133980b854afe3d296" }, "downloads": -1, "filename": "stardist-0.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "19383733b2b8c333da815733ce3694a6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 3045103, "upload_time": "2022-04-10T16:49:51", "upload_time_iso_8601": "2022-04-10T16:49:51.763179Z", "url": "https://files.pythonhosted.org/packages/96/17/d72ee38871695b389b74dafdbb02a237856242b21927eee1403280d0544a/stardist-0.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82e73e98b6415ef703ada8114e81ca0a", "sha256": "46fe068a7f89f5e7ab9787dbafa7e3b5e4309cb64ce30fe21f84e74ab75acb57" }, "downloads": -1, "filename": "stardist-0.8.2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "82e73e98b6415ef703ada8114e81ca0a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 803783, "upload_time": "2022-04-10T16:49:54", "upload_time_iso_8601": "2022-04-10T16:49:54.120994Z", "url": "https://files.pythonhosted.org/packages/cc/6f/188c35e14bb5d661db2217aeb62d746b39586da63e7d18085019fc91d299/stardist-0.8.2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c5d9750c09b048a7bb0bf8c3f43f7b1e", "sha256": "97389c4db775a122aa8570e9cc8459d30311b7852b6fdf05ee7a4a0d4e96840d" }, "downloads": -1, "filename": "stardist-0.8.2-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c5d9750c09b048a7bb0bf8c3f43f7b1e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1166363, "upload_time": "2022-04-10T16:49:55", "upload_time_iso_8601": "2022-04-10T16:49:55.448366Z", "url": "https://files.pythonhosted.org/packages/07/a4/f1289f6712cb33e00048a49320a660568ae0b1f81f27a3aa206517644bd4/stardist-0.8.2-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d148789e119fc1ef80373b4a68225d5a", "sha256": "cb13563ff15b04afdb6a24f9fdcb43d41c73111b5ba1cd880b9612712cd2d319" }, "downloads": -1, "filename": "stardist-0.8.2-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "d148789e119fc1ef80373b4a68225d5a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 846775, "upload_time": "2022-04-10T16:49:56", "upload_time_iso_8601": "2022-04-10T16:49:56.768346Z", "url": "https://files.pythonhosted.org/packages/c1/cb/1d8d8b2443dfca07c4bf1fa56f54e6ec7bdd867f8dabd5cfcf2b10caf701/stardist-0.8.2-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab993541d3e4ea97c6cafae473d9f15e", "sha256": "e03c040cd9f8a9a2d1d101f8aa295fcaf92209d2aaab2a7fe44dee8f7477b105" }, "downloads": -1, "filename": "stardist-0.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "ab993541d3e4ea97c6cafae473d9f15e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 3044801, "upload_time": "2022-04-10T16:49:58", "upload_time_iso_8601": "2022-04-10T16:49:58.179118Z", "url": "https://files.pythonhosted.org/packages/c9/fd/f78e42cdcac91d94e4eb7e180136ea6203edf84b30908c4b6c4e5990dcc4/stardist-0.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ab98cb32bae9a666ed6d290f1591de8", "sha256": "30086902fb9bd4a99803361fa6cb7f40119f6c58af06d6c7fc49d1473a6cad0f" }, "downloads": -1, "filename": "stardist-0.8.2-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "9ab98cb32bae9a666ed6d290f1591de8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 803095, "upload_time": "2022-04-10T16:49:59", "upload_time_iso_8601": "2022-04-10T16:49:59.823602Z", "url": "https://files.pythonhosted.org/packages/47/17/ffa1a29f606bda09d77a0a5fdeb3003aee4be72e59336d5e7c1b54a0b8da/stardist-0.8.2-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4af39fa0d717dc8f2a6b5a7a53a2288d", "sha256": "3d0f8304d0c4a97ea4941b3abd9d814255ba3431f20d9709501350fd70738e0f" }, "downloads": -1, "filename": "stardist-0.8.2.tar.gz", "has_sig": false, "md5_digest": "4af39fa0d717dc8f2a6b5a7a53a2288d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 882380, "upload_time": "2022-04-10T16:50:01", "upload_time_iso_8601": "2022-04-10T16:50:01.584690Z", "url": "https://files.pythonhosted.org/packages/df/4a/b7f090cfcae1df3cca5eddbd303d434bf9d2db43f3c4bbe8cc2b6e8efb87/stardist-0.8.2.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4cb04a5cfe51968a4925eac2f05b581d", "sha256": "346719bdc9a1c05f0e112c2dd476853f46ce41f45c5e1899d0d02929c75f179f" }, "downloads": -1, "filename": "stardist-0.8.2-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4cb04a5cfe51968a4925eac2f05b581d", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1166349, "upload_time": "2022-04-10T16:49:29", "upload_time_iso_8601": "2022-04-10T16:49:29.858935Z", "url": "https://files.pythonhosted.org/packages/04/00/c1b7b4bb143cfeabdb2ba0495c1af798d8f7b491a13b6f0e6225adaf544d/stardist-0.8.2-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "add15afa2813bd3dd3a333875df577a9", "sha256": "448876daf088bcf763c2881d4179cde07c3a8dd51ee1a35fb5d1ad813858066d" }, "downloads": -1, "filename": "stardist-0.8.2-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "add15afa2813bd3dd3a333875df577a9", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 846772, "upload_time": "2022-04-10T16:49:32", "upload_time_iso_8601": "2022-04-10T16:49:32.102628Z", "url": "https://files.pythonhosted.org/packages/1e/e8/fc6e70444a09d5bed91db7eda6c849052bc41ee604bce18c847035a55e6e/stardist-0.8.2-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b7237f8b176db807da14d9ebb105d3b", "sha256": "563d73bdb58f9c0b4bff81eba8fbba4cfc3274b9f4dae8149b3f6a69891b71fe" }, "downloads": -1, "filename": "stardist-0.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4b7237f8b176db807da14d9ebb105d3b", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 3045094, "upload_time": "2022-04-10T16:49:33", "upload_time_iso_8601": "2022-04-10T16:49:33.681704Z", "url": "https://files.pythonhosted.org/packages/35/82/e4f6a2cf6925a95816b7d790bf3bbe17f1058471f52f853d825da0bccc14/stardist-0.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15b8ccc7326498de1b2a2a2dda7d4393", "sha256": "29d3478fbf2f0ab63f44e780fd2698a3098acf3c691000d9de112fbd7d57c38c" }, "downloads": -1, "filename": "stardist-0.8.2-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "15b8ccc7326498de1b2a2a2dda7d4393", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 803106, "upload_time": "2022-04-10T16:49:35", "upload_time_iso_8601": "2022-04-10T16:49:35.947219Z", "url": "https://files.pythonhosted.org/packages/f5/84/04cf36411ae61a28746917ea25dd5a8606a5f806d0264d2250ca08a0655e/stardist-0.8.2-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa9921279ec037f9e4432d7c0a30d1f3", "sha256": "9ca073334fad25a441e1626437fb75bed3b7b8302ed0e8ff486f095280c0cf65" }, "downloads": -1, "filename": "stardist-0.8.2-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "fa9921279ec037f9e4432d7c0a30d1f3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1166630, "upload_time": "2022-04-10T16:49:37", "upload_time_iso_8601": "2022-04-10T16:49:37.964427Z", "url": "https://files.pythonhosted.org/packages/05/7e/fc42e9efc4831304bd10c1543777dbf5de459749c04a77d70ae1c7722f79/stardist-0.8.2-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "997286adde27cb9cdfd00eb2ff849105", "sha256": "e907b4015b327afd9168faf3a4fec57cfd128b81cbc2bca82a33f711e4da187c" }, "downloads": -1, "filename": "stardist-0.8.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "997286adde27cb9cdfd00eb2ff849105", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 3053914, "upload_time": "2022-04-10T16:49:39", "upload_time_iso_8601": "2022-04-10T16:49:39.721930Z", "url": "https://files.pythonhosted.org/packages/15/01/3a87882e4a47ea7a31da8869d13a53e3603d895ab871bd253be4220ea894/stardist-0.8.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "674276a2d99e3b389a1e25155d782fd2", "sha256": "417a818b52e9ec8510cd1c4fefce3837f99644eaf1ed28ec556d88365efe2626" }, "downloads": -1, "filename": "stardist-0.8.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "674276a2d99e3b389a1e25155d782fd2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 803432, "upload_time": "2022-04-10T16:49:41", "upload_time_iso_8601": "2022-04-10T16:49:41.664895Z", "url": "https://files.pythonhosted.org/packages/b9/a6/8efc6f28701809a5a40cab372567129846e97c3fd02811b981119e946512/stardist-0.8.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c49f7ddb8cc00177764b87014ed44e31", "sha256": "15a374348e75c41bd18aa37eff7ff1ba088ce8cb52b921df508471f0b8c50a06" }, "downloads": -1, "filename": "stardist-0.8.2-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c49f7ddb8cc00177764b87014ed44e31", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1166614, "upload_time": "2022-04-10T16:49:43", "upload_time_iso_8601": "2022-04-10T16:49:43.523470Z", "url": "https://files.pythonhosted.org/packages/9a/91/2fd12b7b6b53ad0cb4445963274613af2749d990e45eeb6bcee4aaab3977/stardist-0.8.2-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc83535055ff15c08d9c6bfb6609ffd0", "sha256": "c0a760cb50dfd001bd1b05bd196b2c2d82cde06f596cfae43fa1f29a1c0dfdeb" }, "downloads": -1, "filename": "stardist-0.8.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "cc83535055ff15c08d9c6bfb6609ffd0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 3044442, "upload_time": "2022-04-10T16:49:44", "upload_time_iso_8601": "2022-04-10T16:49:44.977412Z", "url": "https://files.pythonhosted.org/packages/2f/f1/1e5e5a186b579468ed58c9bfca1007eb71f813bed9a5dcbee2128d775c55/stardist-0.8.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "665422722fcd82619e2af0b0c0cc0751", "sha256": "48f60c978e7d41528c7f05199fd7e08a025c7e3ac8b6683065d8cf1c12e7b2e9" }, "downloads": -1, "filename": "stardist-0.8.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "665422722fcd82619e2af0b0c0cc0751", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 803573, "upload_time": "2022-04-10T16:49:46", "upload_time_iso_8601": "2022-04-10T16:49:46.629256Z", "url": "https://files.pythonhosted.org/packages/99/53/5284eeb149cb07ed882d5ebd0a2e22bf4f5c16bd5165765033d4e2a895ba/stardist-0.8.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f123579564a7218646d98154e8a0f523", "sha256": "110b4001b93f0992e256ab2d436442266f023f59ea984cf57d148dd22461c0f1" }, "downloads": -1, "filename": "stardist-0.8.2-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f123579564a7218646d98154e8a0f523", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1166771, "upload_time": "2022-04-10T16:49:47", "upload_time_iso_8601": "2022-04-10T16:49:47.768714Z", "url": "https://files.pythonhosted.org/packages/0d/01/6a5744604575f7683cec88a570dd26d1420cb57c88be84d4596b8cefbb18/stardist-0.8.2-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "331013ac1c2db07d5840fae1cd5b6e21", "sha256": "f92e3939a1cf53b4c5f78dcaa4b7647924aef0da9a85dae63017caaec783976e" }, "downloads": -1, "filename": "stardist-0.8.2-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "331013ac1c2db07d5840fae1cd5b6e21", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 846683, "upload_time": "2022-04-10T16:49:49", "upload_time_iso_8601": "2022-04-10T16:49:49.619381Z", "url": "https://files.pythonhosted.org/packages/76/9c/5671c59c7c18f358914929efbf368e647b519c3966d7692b6305b3d6a64f/stardist-0.8.2-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19383733b2b8c333da815733ce3694a6", "sha256": "5bf1aa79072813a50d6dd7ee0a21c8755e635afe4c5c25133980b854afe3d296" }, "downloads": -1, "filename": "stardist-0.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "19383733b2b8c333da815733ce3694a6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 3045103, "upload_time": "2022-04-10T16:49:51", "upload_time_iso_8601": "2022-04-10T16:49:51.763179Z", "url": "https://files.pythonhosted.org/packages/96/17/d72ee38871695b389b74dafdbb02a237856242b21927eee1403280d0544a/stardist-0.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82e73e98b6415ef703ada8114e81ca0a", "sha256": "46fe068a7f89f5e7ab9787dbafa7e3b5e4309cb64ce30fe21f84e74ab75acb57" }, "downloads": -1, "filename": "stardist-0.8.2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "82e73e98b6415ef703ada8114e81ca0a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 803783, "upload_time": "2022-04-10T16:49:54", "upload_time_iso_8601": "2022-04-10T16:49:54.120994Z", "url": "https://files.pythonhosted.org/packages/cc/6f/188c35e14bb5d661db2217aeb62d746b39586da63e7d18085019fc91d299/stardist-0.8.2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c5d9750c09b048a7bb0bf8c3f43f7b1e", "sha256": "97389c4db775a122aa8570e9cc8459d30311b7852b6fdf05ee7a4a0d4e96840d" }, "downloads": -1, "filename": "stardist-0.8.2-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c5d9750c09b048a7bb0bf8c3f43f7b1e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1166363, "upload_time": "2022-04-10T16:49:55", "upload_time_iso_8601": "2022-04-10T16:49:55.448366Z", "url": "https://files.pythonhosted.org/packages/07/a4/f1289f6712cb33e00048a49320a660568ae0b1f81f27a3aa206517644bd4/stardist-0.8.2-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d148789e119fc1ef80373b4a68225d5a", "sha256": "cb13563ff15b04afdb6a24f9fdcb43d41c73111b5ba1cd880b9612712cd2d319" }, "downloads": -1, "filename": "stardist-0.8.2-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "d148789e119fc1ef80373b4a68225d5a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 846775, "upload_time": "2022-04-10T16:49:56", "upload_time_iso_8601": "2022-04-10T16:49:56.768346Z", "url": "https://files.pythonhosted.org/packages/c1/cb/1d8d8b2443dfca07c4bf1fa56f54e6ec7bdd867f8dabd5cfcf2b10caf701/stardist-0.8.2-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab993541d3e4ea97c6cafae473d9f15e", "sha256": "e03c040cd9f8a9a2d1d101f8aa295fcaf92209d2aaab2a7fe44dee8f7477b105" }, "downloads": -1, "filename": "stardist-0.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "ab993541d3e4ea97c6cafae473d9f15e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 3044801, "upload_time": "2022-04-10T16:49:58", "upload_time_iso_8601": "2022-04-10T16:49:58.179118Z", "url": "https://files.pythonhosted.org/packages/c9/fd/f78e42cdcac91d94e4eb7e180136ea6203edf84b30908c4b6c4e5990dcc4/stardist-0.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ab98cb32bae9a666ed6d290f1591de8", "sha256": "30086902fb9bd4a99803361fa6cb7f40119f6c58af06d6c7fc49d1473a6cad0f" }, "downloads": -1, "filename": "stardist-0.8.2-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "9ab98cb32bae9a666ed6d290f1591de8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 803095, "upload_time": "2022-04-10T16:49:59", "upload_time_iso_8601": "2022-04-10T16:49:59.823602Z", "url": "https://files.pythonhosted.org/packages/47/17/ffa1a29f606bda09d77a0a5fdeb3003aee4be72e59336d5e7c1b54a0b8da/stardist-0.8.2-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4af39fa0d717dc8f2a6b5a7a53a2288d", "sha256": "3d0f8304d0c4a97ea4941b3abd9d814255ba3431f20d9709501350fd70738e0f" }, "downloads": -1, "filename": "stardist-0.8.2.tar.gz", "has_sig": false, "md5_digest": "4af39fa0d717dc8f2a6b5a7a53a2288d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 882380, "upload_time": "2022-04-10T16:50:01", "upload_time_iso_8601": "2022-04-10T16:50:01.584690Z", "url": "https://files.pythonhosted.org/packages/df/4a/b7f090cfcae1df3cca5eddbd303d434bf9d2db43f3c4bbe8cc2b6e8efb87/stardist-0.8.2.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }