fastremap


Namefastremap JSON
Version 1.14.1 PyPI version JSON
download
home_pagehttps://github.com/seung-lab/fastremap/
SummaryRemap, mask, renumber, unique, and in-place transposition of 3D labeled images. Point cloud too.
upload_time2023-12-18 21:37:38
maintainer
docs_urlNone
authorWilliam Silversmith
requires_python>=3.7,<4.0
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            [![Build Status](https://travis-ci.org/seung-lab/fastremap.svg?branch=master)](https://travis-ci.org/seung-lab/fastremap) [![PyPI version](https://badge.fury.io/py/fastremap.svg)](https://badge.fury.io/py/fastremap)  

# fastremap

Renumber and relabel Numpy arrays at C++ speed and physically convert rectangular Numpy arrays between C and Fortran order using an in-place transposition.   

```python
import fastremap

uniq, cts = fastremap.unique(labels, return_counts=True) # may be much faster than np.unique
labels, remapping = fastremap.renumber(labels, in_place=True) # relabel values from 1 and refit data type
ptc = fastremap.point_cloud(labels) # dict of coordinates by label

labels = fastremap.refit(labels) # resize the data type of the array to fit extrema
labels = fastremap.refit(labels, value=-35) # resize the data type to fit the value provided

# remap all occurances of 1 -> 2
labels = fastremap.remap(labels, { 1: 2 }, preserve_missing_labels=True, in_place=True)

labels = fastremap.mask(labels, [1,5,13]) # set all occurances of 1,5,13 to 0
labels = fastremap.mask_except(labels, [1,5,13]) # set all labels except 1,5,13 to 0

mapping = fastremap.component_map([ 1, 2, 3, 4 ], [ 5, 5, 6, 7 ]) # { 1: 5, 2: 5, 3: 6, 4: 7 }
mapping = fastremap.inverse_component_map([ 1, 2, 1, 3 ], [ 4, 4, 5, 6 ]) # { 1: [ 4, 5 ], 2: [ 4 ], 3: [ 6 ] }

fastremap.transpose(labels) # physically transpose labels in-place
fastremap.ascontiguousarray(labels) # try to perform a physical in-place transposition to C order
fastremap.asfortranarray(labels) # try to perform a physical in-place transposition to F order

minval, maxval = fastremap.minmax(labels) # faster version of (np.min(labels), np.max(labels))

# computes number of matching adjacent pixel pairs in an image
num_pairs = fastremap.pixel_pairs(labels)  
n_foreground = fastremap.foreground(labels) # number of nonzero voxels

# computes the cutout.tobytes(order) of each chunk and returns
# the binaries indexed by fortran order in the order specified (C or F)
# If the input image is F contiguous and F is requested, or C and C order,
# and the image is larger than a single chunk, this will be significantly
# faster than iterating and using tobytes.
binaries = fastremap.tobytes(labels, (64,64,64), order="F")
```

## All Available Functions 
- **unique:** Faster implementation of `np.unique`.
- **renumber:** Relabel array from 1 to N which can often use smaller datatypes.
- **remap:** Custom relabeling of values in an array from a dictionary.
- **refit:** Resize the data type of an array to the smallest that can contain the most extreme values in it.
- **mask:** Zero out labels in an array specified by a given list.
- **mask_except**: Zero out all labels except those specified in a given list.
- **component_map**: Extract an int-to-int dictionary mapping of labels from one image containing component labels to another parent labels.  
- **inverse_component_map**: Extract an int-to-list-of-ints dictionary mapping from an image containing groups of components to an image containing the components.  
- **remap_from_array:** Same as remap, but the map is an array where the key is the array index and the value is the value.
- **remap_from_array_kv:** Same as remap, but the map consists of two equal sized arrays, the first containing keys, the second containing values.
- **asfortranarray:** Perform an in-place matrix transposition for rectangular arrays if memory is contiguous, standard numpy otherwise.
- **ascontiguousarray:** Perform an in-place matrix transposition for rectangular arrays if memory is contiguous, standard numpy algorithm otherwise.
- **minmax:** Compute the min and max of an array in one pass.
- **pixel_pairs:** Computes the number of adjacent matching memory locations in an image. A quick heuristic for understanding if the image statistics are roughly similar to a connectomics segmentation.
- **foreground:** Count the number of non-zero voxels rapidly.
- **point_cloud:** Get the X,Y,Z locations of each foreground voxel grouped by label.
- **tobytes**: Compute the tobytes of an image divided into a grid and return the resultant binaries indexed by their gridpoint in fortran order with the binary in the order requested (C or F).

## `pip` Installation

```bash
pip install fastremap
```

*If not, a C++ compiler is required.*

```bash
pip install numpy
pip install fastremap --no-binary :all:
```

## Manual Installation

*A C++ compiler is required.*

```bash
sudo apt-get install g++ python3-dev 
mkvirtualenv -p python3 fastremap
pip install numpy

# Choose one:
python setup.py develop  
python setup.py install 
```

## The Problem of Remapping

Python loops are slow, so Numpy is often used to perform remapping on large arrays (hundreds of megabytes or gigabytes). In order to efficiently remap an array in Numpy you need a key-value array where the index is the key and the value is the contents of that index. 

```python 
import numpy as np 

original = np.array([ 1, 3, 5, 5, 10 ])
remap = np.array([ 0, -5, 0, 6, 0, 0, 2, 0, 0, 0, -100 ])
# Keys:            0   1  2  3  4  5  6  7  8  9    10

remapped = remap[ original ]
>>> [ -5, 6, 2, 2, -100 ]
```

If there are 32 or 64 bit labels in the array, this becomes impractical as the size of the array can grow larger than RAM. Therefore, it would be helpful to be able to perform this mapping using a C speed loop. Numba can be used for this in some circumstances. However, this library provides an alternative.

```python
import numpy as np
import fastremap 

mappings = {
  1: 100,
  2: 200,
  -3: 7,
}

arr = np.array([5, 1, 2, -5, -3, 10, 6])
# Custom remapping of -3, 5, and 6 leaving the rest alone
arr = fastremap.remap(arr, mappings, preserve_missing_labels=True) 
# result: [ 5, 100, 200, -5, 7, 10, 6 ]
```

## The Problem of Renumbering 

Sometimes a 64-bit array contains values that could be represented by an 8-bit array. However, similarly to the remapping problem, Python loops can be too slow to do this. Numpy doesn't provide a convenient way to do it either. Therefore this library provides an alternative solution.

```python
import fastremap
import numpy as np

arr = np.array([ 283732875, 439238823, 283732875, 182812404, 0 ], dtype=np.int64) 

arr, remapping = fastremap.renumber(arr, preserve_zero=True) # Returns uint8 array
>>> arr = [ 1, 2, 1, 3, 0 ]
>>> remapping = { 0: 0, 283732875: 1, 439238823: 2, 182812404: 3 }

arr, remapping = fastremap.renumber(arr, preserve_zero=False) # Returns uint8 array
>>> arr = [ 1, 2, 1, 3, 4 ]
>>> remapping = { 0: 4, 283732875: 1, 439238823: 2, 182812404: 3 }

arr, remapping = fastremap.renumber(arr, preserve_zero=False, in_place=True) # Mutate arr to use less memory
>>> arr = [ 1, 2, 1, 3, 4 ]
>>> remapping = { 0: 4, 283732875: 1, 439238823: 2, 182812404: 3 }
```

## The Problem of In-Place Transposition 

When transitioning between different media, e.g. CPU to GPU, CPU to Network, CPU to disk, it's often necessary to physically transpose multi-dimensional arrays to reformat as C or Fortran order. Tranposing matrices is also a common action in linear algebra, but often you can get away with just changing the strides.

An out-of-place transposition is easy to write, and often faster, but it will spike peak memory consumption. This library grants the user the option of performing an in-place transposition which trades CPU time for peak memory usage. In the special case of square or cubic arrays, the in-place transpisition is both lower memory and faster.

- **fastremap.asfortranarray:** Same as np.asfortranarray but will perform the transposition in-place for 1, 2, 3, and 4D arrays. 2D and 3D square matrices are faster to process than with Numpy.
- **fastremap.ascontiguousarray:** Same as np.ascontiguousarray but will perform the transposition in-place for 1, 2, 3, and 4D arrays. 2D and 3D square matrices are faster to process than with Numpy.

```python
import fastremap
import numpy as np 

arr = np.ones((512,512,512), dtype=np.float32)
arr = fastremap.asfortranarray(x)

arr = np.ones((512,512,512), dtype=np.float32, order='F')
arr = fastremap.ascontiguousarray(x)
```

## C++ Usage

The in-place matrix transposition is implemented in ipt.hpp. If you're working in C++, you can also use it directly like so:

```cpp
#include "ipt.hpp"

int main() {

  int sx = 128;
  int sy = 124;
  int sz = 103;
  int sw = 3;

  auto* arr = ....;

  // All primitive number types supported
  // The array will be modified in place, 
  // so these functions are void type.
  ipt::ipt<int>(arr, sx, sy);            // 2D
  ipt::ipt<float>(arr, sx, sy, sz);      // 3D
  ipt::ipt<double>(arr, sx, sy, sz, sw); // 4D

  return 0;
}
```

--  
Made with <3


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/seung-lab/fastremap/",
    "name": "fastremap",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7,<4.0",
    "maintainer_email": "",
    "keywords": "",
    "author": "William Silversmith",
    "author_email": "ws9@princeton.edu",
    "download_url": "https://files.pythonhosted.org/packages/27/65/c7890a77c208f345d25b5c6f3cef32de203f9cbb78250e2accef10688865/fastremap-1.14.1.tar.gz",
    "platform": null,
    "description": "[![Build Status](https://travis-ci.org/seung-lab/fastremap.svg?branch=master)](https://travis-ci.org/seung-lab/fastremap) [![PyPI version](https://badge.fury.io/py/fastremap.svg)](https://badge.fury.io/py/fastremap)  \n\n# fastremap\n\nRenumber and relabel Numpy arrays at C++ speed and physically convert rectangular Numpy arrays between C and Fortran order using an in-place transposition.   \n\n```python\nimport fastremap\n\nuniq, cts = fastremap.unique(labels, return_counts=True) # may be much faster than np.unique\nlabels, remapping = fastremap.renumber(labels, in_place=True) # relabel values from 1 and refit data type\nptc = fastremap.point_cloud(labels) # dict of coordinates by label\n\nlabels = fastremap.refit(labels) # resize the data type of the array to fit extrema\nlabels = fastremap.refit(labels, value=-35) # resize the data type to fit the value provided\n\n# remap all occurances of 1 -> 2\nlabels = fastremap.remap(labels, { 1: 2 }, preserve_missing_labels=True, in_place=True)\n\nlabels = fastremap.mask(labels, [1,5,13]) # set all occurances of 1,5,13 to 0\nlabels = fastremap.mask_except(labels, [1,5,13]) # set all labels except 1,5,13 to 0\n\nmapping = fastremap.component_map([ 1, 2, 3, 4 ], [ 5, 5, 6, 7 ]) # { 1: 5, 2: 5, 3: 6, 4: 7 }\nmapping = fastremap.inverse_component_map([ 1, 2, 1, 3 ], [ 4, 4, 5, 6 ]) # { 1: [ 4, 5 ], 2: [ 4 ], 3: [ 6 ] }\n\nfastremap.transpose(labels) # physically transpose labels in-place\nfastremap.ascontiguousarray(labels) # try to perform a physical in-place transposition to C order\nfastremap.asfortranarray(labels) # try to perform a physical in-place transposition to F order\n\nminval, maxval = fastremap.minmax(labels) # faster version of (np.min(labels), np.max(labels))\n\n# computes number of matching adjacent pixel pairs in an image\nnum_pairs = fastremap.pixel_pairs(labels)  \nn_foreground = fastremap.foreground(labels) # number of nonzero voxels\n\n# computes the cutout.tobytes(order) of each chunk and returns\n# the binaries indexed by fortran order in the order specified (C or F)\n# If the input image is F contiguous and F is requested, or C and C order,\n# and the image is larger than a single chunk, this will be significantly\n# faster than iterating and using tobytes.\nbinaries = fastremap.tobytes(labels, (64,64,64), order=\"F\")\n```\n\n## All Available Functions \n- **unique:** Faster implementation of `np.unique`.\n- **renumber:** Relabel array from 1 to N which can often use smaller datatypes.\n- **remap:** Custom relabeling of values in an array from a dictionary.\n- **refit:** Resize the data type of an array to the smallest that can contain the most extreme values in it.\n- **mask:** Zero out labels in an array specified by a given list.\n- **mask_except**: Zero out all labels except those specified in a given list.\n- **component_map**: Extract an int-to-int dictionary mapping of labels from one image containing component labels to another parent labels.  \n- **inverse_component_map**: Extract an int-to-list-of-ints dictionary mapping from an image containing groups of components to an image containing the components.  \n- **remap_from_array:** Same as remap, but the map is an array where the key is the array index and the value is the value.\n- **remap_from_array_kv:** Same as remap, but the map consists of two equal sized arrays, the first containing keys, the second containing values.\n- **asfortranarray:** Perform an in-place matrix transposition for rectangular arrays if memory is contiguous, standard numpy otherwise.\n- **ascontiguousarray:** Perform an in-place matrix transposition for rectangular arrays if memory is contiguous, standard numpy algorithm otherwise.\n- **minmax:** Compute the min and max of an array in one pass.\n- **pixel_pairs:** Computes the number of adjacent matching memory locations in an image. A quick heuristic for understanding if the image statistics are roughly similar to a connectomics segmentation.\n- **foreground:** Count the number of non-zero voxels rapidly.\n- **point_cloud:** Get the X,Y,Z locations of each foreground voxel grouped by label.\n- **tobytes**: Compute the tobytes of an image divided into a grid and return the resultant binaries indexed by their gridpoint in fortran order with the binary in the order requested (C or F).\n\n## `pip` Installation\n\n```bash\npip install fastremap\n```\n\n*If not, a C++ compiler is required.*\n\n```bash\npip install numpy\npip install fastremap --no-binary :all:\n```\n\n## Manual Installation\n\n*A C++ compiler is required.*\n\n```bash\nsudo apt-get install g++ python3-dev \nmkvirtualenv -p python3 fastremap\npip install numpy\n\n# Choose one:\npython setup.py develop  \npython setup.py install \n```\n\n## The Problem of Remapping\n\nPython loops are slow, so Numpy is often used to perform remapping on large arrays (hundreds of megabytes or gigabytes). In order to efficiently remap an array in Numpy you need a key-value array where the index is the key and the value is the contents of that index. \n\n```python \nimport numpy as np \n\noriginal = np.array([ 1, 3, 5, 5, 10 ])\nremap = np.array([ 0, -5, 0, 6, 0, 0, 2, 0, 0, 0, -100 ])\n# Keys:            0   1  2  3  4  5  6  7  8  9    10\n\nremapped = remap[ original ]\n>>> [ -5, 6, 2, 2, -100 ]\n```\n\nIf there are 32 or 64 bit labels in the array, this becomes impractical as the size of the array can grow larger than RAM. Therefore, it would be helpful to be able to perform this mapping using a C speed loop. Numba can be used for this in some circumstances. However, this library provides an alternative.\n\n```python\nimport numpy as np\nimport fastremap \n\nmappings = {\n  1: 100,\n  2: 200,\n  -3: 7,\n}\n\narr = np.array([5, 1, 2, -5, -3, 10, 6])\n# Custom remapping of -3, 5, and 6 leaving the rest alone\narr = fastremap.remap(arr, mappings, preserve_missing_labels=True) \n# result: [ 5, 100, 200, -5, 7, 10, 6 ]\n```\n\n## The Problem of Renumbering \n\nSometimes a 64-bit array contains values that could be represented by an 8-bit array. However, similarly to the remapping problem, Python loops can be too slow to do this. Numpy doesn't provide a convenient way to do it either. Therefore this library provides an alternative solution.\n\n```python\nimport fastremap\nimport numpy as np\n\narr = np.array([ 283732875, 439238823, 283732875, 182812404, 0 ], dtype=np.int64) \n\narr, remapping = fastremap.renumber(arr, preserve_zero=True) # Returns uint8 array\n>>> arr = [ 1, 2, 1, 3, 0 ]\n>>> remapping = { 0: 0, 283732875: 1, 439238823: 2, 182812404: 3 }\n\narr, remapping = fastremap.renumber(arr, preserve_zero=False) # Returns uint8 array\n>>> arr = [ 1, 2, 1, 3, 4 ]\n>>> remapping = { 0: 4, 283732875: 1, 439238823: 2, 182812404: 3 }\n\narr, remapping = fastremap.renumber(arr, preserve_zero=False, in_place=True) # Mutate arr to use less memory\n>>> arr = [ 1, 2, 1, 3, 4 ]\n>>> remapping = { 0: 4, 283732875: 1, 439238823: 2, 182812404: 3 }\n```\n\n## The Problem of In-Place Transposition \n\nWhen transitioning between different media, e.g. CPU to GPU, CPU to Network, CPU to disk, it's often necessary to physically transpose multi-dimensional arrays to reformat as C or Fortran order. Tranposing matrices is also a common action in linear algebra, but often you can get away with just changing the strides.\n\nAn out-of-place transposition is easy to write, and often faster, but it will spike peak memory consumption. This library grants the user the option of performing an in-place transposition which trades CPU time for peak memory usage. In the special case of square or cubic arrays, the in-place transpisition is both lower memory and faster.\n\n- **fastremap.asfortranarray:** Same as np.asfortranarray but will perform the transposition in-place for 1, 2, 3, and 4D arrays. 2D and 3D square matrices are faster to process than with Numpy.\n- **fastremap.ascontiguousarray:** Same as np.ascontiguousarray but will perform the transposition in-place for 1, 2, 3, and 4D arrays. 2D and 3D square matrices are faster to process than with Numpy.\n\n```python\nimport fastremap\nimport numpy as np \n\narr = np.ones((512,512,512), dtype=np.float32)\narr = fastremap.asfortranarray(x)\n\narr = np.ones((512,512,512), dtype=np.float32, order='F')\narr = fastremap.ascontiguousarray(x)\n```\n\n## C++ Usage\n\nThe in-place matrix transposition is implemented in ipt.hpp. If you're working in C++, you can also use it directly like so:\n\n```cpp\n#include \"ipt.hpp\"\n\nint main() {\n\n  int sx = 128;\n  int sy = 124;\n  int sz = 103;\n  int sw = 3;\n\n  auto* arr = ....;\n\n  // All primitive number types supported\n  // The array will be modified in place, \n  // so these functions are void type.\n  ipt::ipt<int>(arr, sx, sy);            // 2D\n  ipt::ipt<float>(arr, sx, sy, sz);      // 3D\n  ipt::ipt<double>(arr, sx, sy, sz, sw); // 4D\n\n  return 0;\n}\n```\n\n--  \nMade with <3\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Remap, mask, renumber, unique, and in-place transposition of 3D labeled images. Point cloud too.",
    "version": "1.14.1",
    "project_urls": {
        "Homepage": "https://github.com/seung-lab/fastremap/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "845cb8697bcf69f4e791b6db933a30c200b6a18c26b137f1394149643da90c5e",
                "md5": "fb3fbc74bfb1141f27ea00d2982d7253",
                "sha256": "36cf8e90dd6000c4cdefba353659f0a5bf0de23bda918edded4dca58e627994a"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "fb3fbc74bfb1141f27ea00d2982d7253",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7,<4.0",
            "size": 1471805,
            "upload_time": "2023-12-18T21:35:44",
            "upload_time_iso_8601": "2023-12-18T21:35:44.729316Z",
            "url": "https://files.pythonhosted.org/packages/84/5c/b8697bcf69f4e791b6db933a30c200b6a18c26b137f1394149643da90c5e/fastremap-1.14.1-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a8112c1bea3e4beb52a3ac2b6e76ccf46a3e023d4e4d4b3af1c91b25193a544",
                "md5": "291438368098eee7ef1a03490a140845",
                "sha256": "c0b2723cee9ffd034479cab10662245faf256396a30a129f8a24bb7468fcdeba"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "291438368098eee7ef1a03490a140845",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7,<4.0",
            "size": 5881543,
            "upload_time": "2023-12-18T21:35:50",
            "upload_time_iso_8601": "2023-12-18T21:35:50.638546Z",
            "url": "https://files.pythonhosted.org/packages/8a/81/12c1bea3e4beb52a3ac2b6e76ccf46a3e023d4e4d4b3af1c91b25193a544/fastremap-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "596484693ce7eb01c2ef42e3c9fb6139e19d976f751df7d96a623a7d3722e328",
                "md5": "205bc67167ad769e221c1c69d2514502",
                "sha256": "ccd70c1e2ec83ebd9ae8681f9610f44f8766238e3550563318e09e20b5420aec"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "205bc67167ad769e221c1c69d2514502",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7,<4.0",
            "size": 5681079,
            "upload_time": "2023-12-18T21:35:54",
            "upload_time_iso_8601": "2023-12-18T21:35:54.909602Z",
            "url": "https://files.pythonhosted.org/packages/59/64/84693ce7eb01c2ef42e3c9fb6139e19d976f751df7d96a623a7d3722e328/fastremap-1.14.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38d44186ca695a83fb757c08c1b670ead31fe45299a544ca41e37537081951b8",
                "md5": "d2e83bba720f4b15e62475811bda70c4",
                "sha256": "7562dc6ad1757615fb976a45b4dae8dd60d2058d33863e4b5779c1e9afa0896b"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d2e83bba720f4b15e62475811bda70c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7,<4.0",
            "size": 5991390,
            "upload_time": "2023-12-18T21:36:00",
            "upload_time_iso_8601": "2023-12-18T21:36:00.242584Z",
            "url": "https://files.pythonhosted.org/packages/38/d4/4186ca695a83fb757c08c1b670ead31fe45299a544ca41e37537081951b8/fastremap-1.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "090abb45021529b37a4c0f709b56b1d3bb9a8c15acec4c611cd89f682ec5cfdb",
                "md5": "377196544d8c2dbeacbe53e6c7b1d1d9",
                "sha256": "6f15e8387cf0278be892300b9654a4ccae88e2d086712af1c889cd689129f778"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "377196544d8c2dbeacbe53e6c7b1d1d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7,<4.0",
            "size": 462423,
            "upload_time": "2023-12-18T21:36:02",
            "upload_time_iso_8601": "2023-12-18T21:36:02.743061Z",
            "url": "https://files.pythonhosted.org/packages/09/0a/bb45021529b37a4c0f709b56b1d3bb9a8c15acec4c611cd89f682ec5cfdb/fastremap-1.14.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1516bc38ab5986e105b6987f2c513a8c351071132b23616de5d1f2ce92eb77e2",
                "md5": "9f8ea87e8642a9cc2a24580ed389e209",
                "sha256": "4333c0ddd210fada5e5544e047d544fb53c48e8e7cc6ea7d8bea633409323d1a"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9f8ea87e8642a9cc2a24580ed389e209",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7,<4.0",
            "size": 627713,
            "upload_time": "2023-12-18T21:36:04",
            "upload_time_iso_8601": "2023-12-18T21:36:04.939737Z",
            "url": "https://files.pythonhosted.org/packages/15/16/bc38ab5986e105b6987f2c513a8c351071132b23616de5d1f2ce92eb77e2/fastremap-1.14.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd7478618638d03d9bcbbc4ecff0a711aaca6af20a7f5e1b172e72639afe3e58",
                "md5": "5e622f7ba090aed16b989f19267b7b4d",
                "sha256": "90525811a7f142a75e94c356dba7759e10b49fa37deece8abac49e7fae6f53d0"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "5e622f7ba090aed16b989f19267b7b4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7,<4.0",
            "size": 1472955,
            "upload_time": "2023-12-18T21:36:07",
            "upload_time_iso_8601": "2023-12-18T21:36:07.522793Z",
            "url": "https://files.pythonhosted.org/packages/dd/74/78618638d03d9bcbbc4ecff0a711aaca6af20a7f5e1b172e72639afe3e58/fastremap-1.14.1-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa24a8daed8840842c61fe14a19ebbd8ff69c3599b2636da4fab04e276dea0d8",
                "md5": "67db4db82b6a9b103c38a672576db4b5",
                "sha256": "5dcb8df5b4f7d5c37e436bdb55493558477a77c07d2dba46c87eeaba9667a31a"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "67db4db82b6a9b103c38a672576db4b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7,<4.0",
            "size": 5935839,
            "upload_time": "2023-12-18T21:36:10",
            "upload_time_iso_8601": "2023-12-18T21:36:10.798465Z",
            "url": "https://files.pythonhosted.org/packages/fa/24/a8daed8840842c61fe14a19ebbd8ff69c3599b2636da4fab04e276dea0d8/fastremap-1.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c158544e5ab49163f4f22b5735dc95ebfcaeb14a8958a98aae62e0bbd554adb",
                "md5": "3eac86fe33dd0005f3d1a4c2dc2145b3",
                "sha256": "2d83c02626b9cc5da3b34abf879dc07a33c02c4ae8234e1085ed0f2114034bda"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3eac86fe33dd0005f3d1a4c2dc2145b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7,<4.0",
            "size": 5746428,
            "upload_time": "2023-12-18T21:36:16",
            "upload_time_iso_8601": "2023-12-18T21:36:16.791960Z",
            "url": "https://files.pythonhosted.org/packages/3c/15/8544e5ab49163f4f22b5735dc95ebfcaeb14a8958a98aae62e0bbd554adb/fastremap-1.14.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "030f5bfb6397acf6238305ae24db2035b8b57f2bcbc339240061a6d800c37cf7",
                "md5": "3ed32c1c6bf4018da26fa3b0f544765e",
                "sha256": "4ed8b0252419404a8fc08d5f4e1d6e6a9d4109fbb6cd0975cbe50abd4f6274d5"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ed32c1c6bf4018da26fa3b0f544765e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7,<4.0",
            "size": 6055560,
            "upload_time": "2023-12-18T21:36:21",
            "upload_time_iso_8601": "2023-12-18T21:36:21.684604Z",
            "url": "https://files.pythonhosted.org/packages/03/0f/5bfb6397acf6238305ae24db2035b8b57f2bcbc339240061a6d800c37cf7/fastremap-1.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1d0806c03d76b4d4feda9d5bd0e8387e7afb664ec5a8a4a90254a0f4e6e60fc",
                "md5": "8bdd0eba6faff16be956d0b59e7305c8",
                "sha256": "fd1ded92afc008166483b77881bcc537ef8fe9b373c705b2d89556a4d2ced0b0"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "8bdd0eba6faff16be956d0b59e7305c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7,<4.0",
            "size": 463347,
            "upload_time": "2023-12-18T21:36:23",
            "upload_time_iso_8601": "2023-12-18T21:36:23.500553Z",
            "url": "https://files.pythonhosted.org/packages/b1/d0/806c03d76b4d4feda9d5bd0e8387e7afb664ec5a8a4a90254a0f4e6e60fc/fastremap-1.14.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c74868d1a6d8931c1aae73ad6f9bfbaf8491af876fd3c0b814e4218ae0a827d2",
                "md5": "35948c35d8edd3deeef8e31d9b2a286a",
                "sha256": "e856bfe126aa0447cd22142b2f8ead38500cf43b6ffe56e4e5337c236ec73003"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "35948c35d8edd3deeef8e31d9b2a286a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7,<4.0",
            "size": 628376,
            "upload_time": "2023-12-18T21:36:24",
            "upload_time_iso_8601": "2023-12-18T21:36:24.989771Z",
            "url": "https://files.pythonhosted.org/packages/c7/48/68d1a6d8931c1aae73ad6f9bfbaf8491af876fd3c0b814e4218ae0a827d2/fastremap-1.14.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "500e84dc518560b40ed5cbae7010b29ee347a14cd14ff4b08773572cc4193d7b",
                "md5": "7f4c0d916ad326c29c99595de4034049",
                "sha256": "0e8d4ddcf17d688df975e3076d108d02ddc9ecf17c7139b3efa55ee496a8e257"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "7f4c0d916ad326c29c99595de4034049",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7,<4.0",
            "size": 1438878,
            "upload_time": "2023-12-18T21:36:27",
            "upload_time_iso_8601": "2023-12-18T21:36:27.710541Z",
            "url": "https://files.pythonhosted.org/packages/50/0e/84dc518560b40ed5cbae7010b29ee347a14cd14ff4b08773572cc4193d7b/fastremap-1.14.1-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38ce13690c6a6fc5333376d61607b1b8f70cf1703f11374dda6893c03b9914f8",
                "md5": "a5bdb1b17400774ed83a78af3eb014fc",
                "sha256": "907026ab7cc365fb6d947a2f4e32e64bd086e48186ed708d85d84cd64e3b2aa5"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a5bdb1b17400774ed83a78af3eb014fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7,<4.0",
            "size": 6034898,
            "upload_time": "2023-12-18T21:36:34",
            "upload_time_iso_8601": "2023-12-18T21:36:34.447024Z",
            "url": "https://files.pythonhosted.org/packages/38/ce/13690c6a6fc5333376d61607b1b8f70cf1703f11374dda6893c03b9914f8/fastremap-1.14.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "888ce5c8c4e15ba6221773677b2fb9c31ceed146e7ddb06a9aa29a3d441de870",
                "md5": "4124d9c0c0b3aeb55ce22f27348c50ae",
                "sha256": "cbbced671b0d4024810c9cef04f99601a69fd4cda757dc4eae7ed1e16227035f"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4124d9c0c0b3aeb55ce22f27348c50ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7,<4.0",
            "size": 6147566,
            "upload_time": "2023-12-18T21:36:40",
            "upload_time_iso_8601": "2023-12-18T21:36:40.179551Z",
            "url": "https://files.pythonhosted.org/packages/88/8c/e5c8c4e15ba6221773677b2fb9c31ceed146e7ddb06a9aa29a3d441de870/fastremap-1.14.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e3e87c9a7ea11d39ac079ab11b8743ea172b067fdded52f599db747bfa99e94",
                "md5": "c484b39c543467d72f0d7c7eff58229c",
                "sha256": "3318537edcee3b1b781fadd5106591e16b0b8e405e638216cfe29506fa2bc4b7"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "c484b39c543467d72f0d7c7eff58229c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7,<4.0",
            "size": 450318,
            "upload_time": "2023-12-18T21:36:42",
            "upload_time_iso_8601": "2023-12-18T21:36:42.135552Z",
            "url": "https://files.pythonhosted.org/packages/4e/3e/87c9a7ea11d39ac079ab11b8743ea172b067fdded52f599db747bfa99e94/fastremap-1.14.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e4c7244057f5deb9d02053d99305c865151d660e80ae3deee7ce473fcb3f127",
                "md5": "184ebb4c61c490f4d404fe171371216c",
                "sha256": "c047f8270fa1ed9db385e88cb1576a940ecc63e44ccbc70ec1b902dde395326f"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "184ebb4c61c490f4d404fe171371216c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7,<4.0",
            "size": 592989,
            "upload_time": "2023-12-18T21:36:43",
            "upload_time_iso_8601": "2023-12-18T21:36:43.657793Z",
            "url": "https://files.pythonhosted.org/packages/7e/4c/7244057f5deb9d02053d99305c865151d660e80ae3deee7ce473fcb3f127/fastremap-1.14.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5fc34051da15805be245a4b00bcbbd87db6013990a7de975face1f936f13c53",
                "md5": "b5c909af7359b2991061a9172b31eaea",
                "sha256": "bedd51db0d9d93897e9e7e1deabfe9370169b5cd69e60fc99deae9e1390494d9"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b5c909af7359b2991061a9172b31eaea",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7,<4.0",
            "size": 5244565,
            "upload_time": "2023-12-18T21:36:50",
            "upload_time_iso_8601": "2023-12-18T21:36:50.487510Z",
            "url": "https://files.pythonhosted.org/packages/c5/fc/34051da15805be245a4b00bcbbd87db6013990a7de975face1f936f13c53/fastremap-1.14.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d64efa650242585235b656a0704780bac7f18d625d9fd026a7753b424463fbb4",
                "md5": "46b7d85dd4468d4dbb023edcc05441bf",
                "sha256": "7ae47cbc4f7783a505e60b4c515d9985ae2b79b88a18ee6e138fe27e9bbdd2e3"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "46b7d85dd4468d4dbb023edcc05441bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7,<4.0",
            "size": 5025794,
            "upload_time": "2023-12-18T21:36:55",
            "upload_time_iso_8601": "2023-12-18T21:36:55.274305Z",
            "url": "https://files.pythonhosted.org/packages/d6/4e/fa650242585235b656a0704780bac7f18d625d9fd026a7753b424463fbb4/fastremap-1.14.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e69143b9f1be341e564b8f3b8d5a33e957abb4834cf291a62ddf59fd13ce275f",
                "md5": "5421db253d3892937655e1f8a36918d0",
                "sha256": "df4ae6e92dd67fbc77721e1db9631a4acfd27ea120cbf1ed6251bf91c4088ac1"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5421db253d3892937655e1f8a36918d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7,<4.0",
            "size": 5327146,
            "upload_time": "2023-12-18T21:36:58",
            "upload_time_iso_8601": "2023-12-18T21:36:58.080553Z",
            "url": "https://files.pythonhosted.org/packages/e6/91/43b9f1be341e564b8f3b8d5a33e957abb4834cf291a62ddf59fd13ce275f/fastremap-1.14.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e873fa1667c9af4b0df168c4ccf23629ff5999633f3f0895cb12f957a3291ef",
                "md5": "ffc95c2bf2f17efe62b27447f66f648a",
                "sha256": "c722c4c61054bae95e22cf82f85472025585ba8ace1386bdf905529e87a88351"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "ffc95c2bf2f17efe62b27447f66f648a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7,<4.0",
            "size": 451487,
            "upload_time": "2023-12-18T21:36:59",
            "upload_time_iso_8601": "2023-12-18T21:36:59.895795Z",
            "url": "https://files.pythonhosted.org/packages/3e/87/3fa1667c9af4b0df168c4ccf23629ff5999633f3f0895cb12f957a3291ef/fastremap-1.14.1-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21d7414e634067030d2eacd8581ad385bfcb19f25782b8ed30246c5b713418b2",
                "md5": "1959ed99a139067d005c611537b38dd1",
                "sha256": "bfd4ed7f0c436348ef815e9aecedf314c145f55328b32feea65b60b3ca43cf46"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1959ed99a139067d005c611537b38dd1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7,<4.0",
            "size": 569978,
            "upload_time": "2023-12-18T21:37:02",
            "upload_time_iso_8601": "2023-12-18T21:37:02.151464Z",
            "url": "https://files.pythonhosted.org/packages/21/d7/414e634067030d2eacd8581ad385bfcb19f25782b8ed30246c5b713418b2/fastremap-1.14.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0119f5e90b1db6bde0c9f236bef8f47f1b29be712e87e95a63b84dd9312b2836",
                "md5": "604c2378f61f3665d21ace42bfcfb1ad",
                "sha256": "fd0605b4da0fecc5a09da9714d074948b5f729bbcfb2144b50908f0369b42fbf"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp38-cp38-macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "604c2378f61f3665d21ace42bfcfb1ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7,<4.0",
            "size": 1453218,
            "upload_time": "2023-12-18T21:37:03",
            "upload_time_iso_8601": "2023-12-18T21:37:03.830560Z",
            "url": "https://files.pythonhosted.org/packages/01/19/f5e90b1db6bde0c9f236bef8f47f1b29be712e87e95a63b84dd9312b2836/fastremap-1.14.1-cp38-cp38-macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81a2bfb380e2f30d46ed2eca4b7acb64d21698d61b476b270abfe9eb73d08634",
                "md5": "45a2932338eb004d3353b011919f178f",
                "sha256": "17fcf3e4abd8577df5619726f8c8bce7e407f1e435e25acd4a4442dd6a62c553"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "45a2932338eb004d3353b011919f178f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7,<4.0",
            "size": 6096673,
            "upload_time": "2023-12-18T21:37:07",
            "upload_time_iso_8601": "2023-12-18T21:37:07.217840Z",
            "url": "https://files.pythonhosted.org/packages/81/a2/bfb380e2f30d46ed2eca4b7acb64d21698d61b476b270abfe9eb73d08634/fastremap-1.14.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae32ef070e7941375e53a1a9ba89101cddc5429f8b5a1729f87dc148cf77e7e7",
                "md5": "ffd36427ae6bc0ee20e1d585c0261425",
                "sha256": "102849233601e0dcb92952f91ea6e54d90107c6e62642ccc6d563bb727fe70af"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ffd36427ae6bc0ee20e1d585c0261425",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7,<4.0",
            "size": 5861610,
            "upload_time": "2023-12-18T21:37:10",
            "upload_time_iso_8601": "2023-12-18T21:37:10.684646Z",
            "url": "https://files.pythonhosted.org/packages/ae/32/ef070e7941375e53a1a9ba89101cddc5429f8b5a1729f87dc148cf77e7e7/fastremap-1.14.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0dd6638e625eae2e3ed794e689702ee70478f832ea02e240ac576ad78c35b4b",
                "md5": "62bbace7384c5bbe7388e6c17cac39f9",
                "sha256": "c87ec9442ec47ee29d4d1ba6bdc1258d9563567ec851590508133849a38be97d"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "62bbace7384c5bbe7388e6c17cac39f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7,<4.0",
            "size": 6209464,
            "upload_time": "2023-12-18T21:37:14",
            "upload_time_iso_8601": "2023-12-18T21:37:14.196987Z",
            "url": "https://files.pythonhosted.org/packages/f0/dd/6638e625eae2e3ed794e689702ee70478f832ea02e240ac576ad78c35b4b/fastremap-1.14.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b3572f8a3fbe1d3b54f88fedb3ed7f9532473f39d32b7fe013e92575f252d98",
                "md5": "76e3c890a636d71c19c0c6248b044904",
                "sha256": "20aea5c0baac25b6532514627bdec12651062a01d903652fb6787a8551ee1f02"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "76e3c890a636d71c19c0c6248b044904",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7,<4.0",
            "size": 465764,
            "upload_time": "2023-12-18T21:37:16",
            "upload_time_iso_8601": "2023-12-18T21:37:16.973847Z",
            "url": "https://files.pythonhosted.org/packages/7b/35/72f8a3fbe1d3b54f88fedb3ed7f9532473f39d32b7fe013e92575f252d98/fastremap-1.14.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "477cc737732c18181e08f988cd6b6ddbdff8ac31db3e86a6fbb23c463207fb6b",
                "md5": "dd1faca25131f79a3e78511d4a01c56d",
                "sha256": "b83202dcf6b61d42b90dfcf39253d979e6200c96cd86a2672b2add7e532b2924"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dd1faca25131f79a3e78511d4a01c56d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7,<4.0",
            "size": 631402,
            "upload_time": "2023-12-18T21:37:18",
            "upload_time_iso_8601": "2023-12-18T21:37:18.451359Z",
            "url": "https://files.pythonhosted.org/packages/47/7c/c737732c18181e08f988cd6b6ddbdff8ac31db3e86a6fbb23c463207fb6b/fastremap-1.14.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9efee64404c3573787955fb252752db2782a365fd27f89d9dbd9d3d86c7f6fd0",
                "md5": "d3cf845f0db437bd604a2287e96f9fff",
                "sha256": "f2cb17ebf607d0473d487422e9d8f856de94736fb77b6a4a44adfc39e8793049"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "d3cf845f0db437bd604a2287e96f9fff",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7,<4.0",
            "size": 1472236,
            "upload_time": "2023-12-18T21:37:22",
            "upload_time_iso_8601": "2023-12-18T21:37:22.288439Z",
            "url": "https://files.pythonhosted.org/packages/9e/fe/e64404c3573787955fb252752db2782a365fd27f89d9dbd9d3d86c7f6fd0/fastremap-1.14.1-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e72b37e9c5376469ab4f4d97a642eef916f54efc5e6be3ce3ef31452668bc69b",
                "md5": "e53bf39057249acfa11aab2060235945",
                "sha256": "20b53fca2dcbef0956ac9362ff1b487717532f5ad97a439876f5e2b3a1f4768b"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e53bf39057249acfa11aab2060235945",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7,<4.0",
            "size": 5887193,
            "upload_time": "2023-12-18T21:37:25",
            "upload_time_iso_8601": "2023-12-18T21:37:25.604912Z",
            "url": "https://files.pythonhosted.org/packages/e7/2b/37e9c5376469ab4f4d97a642eef916f54efc5e6be3ce3ef31452668bc69b/fastremap-1.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a7ccac71e46130cb8e8d22b5420e8e64b43a697f6d9f89a380d750357e187ea",
                "md5": "3d7cb1a8f9a5dcc65bb133e0f1e9dc4b",
                "sha256": "3fdc45f2609304ceba67ff088e925570cbcd84b54b0049813badc1fb6cfc0422"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3d7cb1a8f9a5dcc65bb133e0f1e9dc4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7,<4.0",
            "size": 5678816,
            "upload_time": "2023-12-18T21:37:28",
            "upload_time_iso_8601": "2023-12-18T21:37:28.436394Z",
            "url": "https://files.pythonhosted.org/packages/8a/7c/cac71e46130cb8e8d22b5420e8e64b43a697f6d9f89a380d750357e187ea/fastremap-1.14.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f863615cff058e863c09695476f891088bd12829182bff327f7f566364c81e1d",
                "md5": "20aff7401194656e2149f58807844809",
                "sha256": "44ee473b948e58df8dfe15107d99d6dcfa54c3ce0eb9ce0b0cfe98446ef0b6de"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "20aff7401194656e2149f58807844809",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7,<4.0",
            "size": 5986202,
            "upload_time": "2023-12-18T21:37:32",
            "upload_time_iso_8601": "2023-12-18T21:37:32.117684Z",
            "url": "https://files.pythonhosted.org/packages/f8/63/615cff058e863c09695476f891088bd12829182bff327f7f566364c81e1d/fastremap-1.14.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a66b35bf7cbe00db246409af9cb1690578bfc1f8a79d8a0373125fcc28ecd261",
                "md5": "0007d579f4a9861e48f5bc34d9fb9889",
                "sha256": "9430813cf0af429054923eedef608653a34bcdac7066568895b946eae7b69bbd"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "0007d579f4a9861e48f5bc34d9fb9889",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7,<4.0",
            "size": 462913,
            "upload_time": "2023-12-18T21:37:34",
            "upload_time_iso_8601": "2023-12-18T21:37:34.415416Z",
            "url": "https://files.pythonhosted.org/packages/a6/6b/35bf7cbe00db246409af9cb1690578bfc1f8a79d8a0373125fcc28ecd261/fastremap-1.14.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb803a1e5529b5170bca6ed38e7ada21ec421c05e8352e1c051c4149cd5d03f7",
                "md5": "e433a9c91481125f70c1720cb2d49421",
                "sha256": "964aad28d612614b84403d6da1406c2c9bb84dea043aba2ec152421a88429259"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e433a9c91481125f70c1720cb2d49421",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7,<4.0",
            "size": 627583,
            "upload_time": "2023-12-18T21:37:36",
            "upload_time_iso_8601": "2023-12-18T21:37:36.996212Z",
            "url": "https://files.pythonhosted.org/packages/fb/80/3a1e5529b5170bca6ed38e7ada21ec421c05e8352e1c051c4149cd5d03f7/fastremap-1.14.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2765c7890a77c208f345d25b5c6f3cef32de203f9cbb78250e2accef10688865",
                "md5": "e429eaba60bcf614511eded928f37d61",
                "sha256": "067d42d6cb3b1b0789889efd1d7fae58006c82ada4a8446d40e9e838b358ee7c"
            },
            "downloads": -1,
            "filename": "fastremap-1.14.1.tar.gz",
            "has_sig": false,
            "md5_digest": "e429eaba60bcf614511eded928f37d61",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7,<4.0",
            "size": 44564,
            "upload_time": "2023-12-18T21:37:38",
            "upload_time_iso_8601": "2023-12-18T21:37:38.332831Z",
            "url": "https://files.pythonhosted.org/packages/27/65/c7890a77c208f345d25b5c6f3cef32de203f9cbb78250e2accef10688865/fastremap-1.14.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-18 21:37:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "seung-lab",
    "github_project": "fastremap",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "appveyor": true,
    "requirements": [],
    "tox": true,
    "lcname": "fastremap"
}
        
Elapsed time: 0.18285s