Skip to main content

Neuroglancer compressed_segmentation codec.

Project description

PyPI version

Compress Seg Picture

Library for compressing and decompressing image segmentation (adapted from neuroglancer)

import compressed_segmentation as cseg

sx, sy, sz = (128,128,128)
dtype = np.uint64
order = 'C'

labels = np.arange(0, sx*sy*sz, dtype=dtype).reshape((sx,sy,sz), order=order)
compressed = cseg.compress(labels, order=order)
recovered = cseg.decompress(
    compressed, (sx,sy,sz) dtype=dtype, order=order
)

arr = CompressedSegmentationArray(
    compressed, shape=(sx,sy,sz), dtype=dtype
)
label = arr[54,32,103] # random access to single voxels w/o decompressing
uniq_labels = arr.labels() # get all distinct values w/o decompressing
binary2 = arr.remap({ 1: 2 }, preserve_missing_labels=False) # remap labels in segmentation w/o decompressing
recovered = arr.numpy() # decompress to a numpy array, same as decompress
124213 in arr # test if a value is in the array
cseg compress connectomics.npy
cseg decompress connectomics.npy.cseg --volume-size 512,512,512 --bytes 4

NOTE: This repository is the PyPI distribution repo but is based on work done by Jeremy Maitin-Shepard (Google), Stephen Plaza (Janelia Research Campus), and William Silversmith (Princeton) here: https://github.com/janelia-flyem/compressedseg

This library contains routined to decompress and compress segmentation and to manipulate compressed segmentation data defined by the neuroglancer project. compressed_segmentation essentially renumbers large bit width labels to smaller ones in chunks. This provides for large reductions in memory usage and higher compression.

Note that limitations in the compressed_segmentation format restrict the size of the chunk that can be compressed. As this limitation is data dependent, for example a random array with 1024 labels passes testing at 256x256x128, but 256x256x256 often does not.

Features

  • Compression and decompression
  • Random access to voxels without decompression
  • Read out unique values without decompression
  • Remap labels without decompression
  • Command line interface for numpy files
  • (TBD) Interface to relabel and manipulate segmentation from the compressed data
  • C++, Python, and Go interface (see original repo for Golang)

C++ Compilation

Compiling as a shared library. Feel free to subsititute e.g. clang for the C++ compiler.

g++ -std=c++11 -O3 -fPIC -shared -I./include src/compress_segmentation.cc src/decompress_segmentation.cc -o compress_segmentation.so

Python Installation

pip Binary Installation

$ pip install compressed-segmentation

$ python
>>> import compressed_segmentation as cseg
>>> help(cseg)

If there are pre-built binaries available for your architecture this should just work.

pip Source Installation

If you need to build from source, you will need to have a C++ compiler installed:

$ sudo apt-get install g++ python3-dev 
$ pip install numpy
$ pip install compressed-segmentation

$ python
>>> import compressed_segmentation as cseg
>>> help(cseg)

Direct Installation

Requires a C++ compiler such as g++ or clang.

Works with both Python 2 and 3. Encodes from / decodes to 3D or 4D numpy ndarrays.

$ sudo apt-get install g++ python3-dev 
$ pip install -r requirements.txt
$ python setup.py install

$ python
>>> import compressed_segmentation as cseg
>>> help(cseg)

License

Please see the licenses in this repo.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

compressed_segmentation-2.2.1.tar.gz (26.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

compressed_segmentation-2.2.1-cp311-cp311-win_amd64.whl (125.6 kB view details)

Uploaded CPython 3.11Windows x86-64

compressed_segmentation-2.2.1-cp311-cp311-win32.whl (111.9 kB view details)

Uploaded CPython 3.11Windows x86

compressed_segmentation-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

compressed_segmentation-2.2.1-cp311-cp311-musllinux_1_1_i686.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

compressed_segmentation-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

compressed_segmentation-2.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (990.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

compressed_segmentation-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (997.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

compressed_segmentation-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl (173.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

compressed_segmentation-2.2.1-cp311-cp311-macosx_10_9_universal2.whl (305.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

compressed_segmentation-2.2.1-cp310-cp310-win_amd64.whl (126.6 kB view details)

Uploaded CPython 3.10Windows x86-64

compressed_segmentation-2.2.1-cp310-cp310-win32.whl (112.8 kB view details)

Uploaded CPython 3.10Windows x86

compressed_segmentation-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

compressed_segmentation-2.2.1-cp310-cp310-musllinux_1_1_i686.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

compressed_segmentation-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (969.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

compressed_segmentation-2.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (941.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

compressed_segmentation-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (944.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

compressed_segmentation-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl (177.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

compressed_segmentation-2.2.1-cp310-cp310-macosx_10_9_universal2.whl (314.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

compressed_segmentation-2.2.1-cp39-cp39-win_amd64.whl (128.4 kB view details)

Uploaded CPython 3.9Windows x86-64

compressed_segmentation-2.2.1-cp39-cp39-win32.whl (114.4 kB view details)

Uploaded CPython 3.9Windows x86

compressed_segmentation-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

compressed_segmentation-2.2.1-cp39-cp39-musllinux_1_1_i686.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

compressed_segmentation-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (974.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

compressed_segmentation-2.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (948.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

compressed_segmentation-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (954.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

compressed_segmentation-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl (177.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

compressed_segmentation-2.2.1-cp39-cp39-macosx_10_9_universal2.whl (312.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

compressed_segmentation-2.2.1-cp38-cp38-win_amd64.whl (128.3 kB view details)

Uploaded CPython 3.8Windows x86-64

compressed_segmentation-2.2.1-cp38-cp38-win32.whl (114.4 kB view details)

Uploaded CPython 3.8Windows x86

compressed_segmentation-2.2.1-cp38-cp38-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

compressed_segmentation-2.2.1-cp38-cp38-musllinux_1_1_i686.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

compressed_segmentation-2.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (983.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

compressed_segmentation-2.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (955.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

compressed_segmentation-2.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (959.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

compressed_segmentation-2.2.1-cp38-cp38-macosx_11_0_universal2.whl (303.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ universal2 (ARM64, x86-64)

compressed_segmentation-2.2.1-cp38-cp38-macosx_10_9_x86_64.whl (171.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

compressed_segmentation-2.2.1-cp37-cp37m-win_amd64.whl (126.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

compressed_segmentation-2.2.1-cp37-cp37m-win32.whl (112.3 kB view details)

Uploaded CPython 3.7mWindows x86

compressed_segmentation-2.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

compressed_segmentation-2.2.1-cp37-cp37m-musllinux_1_1_i686.whl (1.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

compressed_segmentation-2.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (914.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

compressed_segmentation-2.2.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (883.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

compressed_segmentation-2.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (893.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

compressed_segmentation-2.2.1-cp37-cp37m-macosx_10_9_x86_64.whl (171.0 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

compressed_segmentation-2.2.1-cp36-cp36m-win_amd64.whl (126.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

compressed_segmentation-2.2.1-cp36-cp36m-win32.whl (112.2 kB view details)

Uploaded CPython 3.6mWindows x86

compressed_segmentation-2.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

compressed_segmentation-2.2.1-cp36-cp36m-musllinux_1_1_i686.whl (1.5 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

compressed_segmentation-2.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (915.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

compressed_segmentation-2.2.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (885.8 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

compressed_segmentation-2.2.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (892.9 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

compressed_segmentation-2.2.1-cp36-cp36m-macosx_10_9_x86_64.whl (170.4 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file compressed_segmentation-2.2.1.tar.gz.

File metadata

  • Download URL: compressed_segmentation-2.2.1.tar.gz
  • Upload date:
  • Size: 26.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1.tar.gz
Algorithm Hash digest
SHA256 d3b3bc8fef403a80a95a5b7998551f251a8ebff2a53d63b846f180a2244ee951
MD5 9fad47cce61a7c840e10c573b54df793
BLAKE2b-256 8ba397d51d3fe8609508b7bb498cb26c631df011cf4bfd0f18245d7a6f51a70b

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 125.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 07401eafa4a038120965126ecfe8a2efd7fe054833d489e65b4002e7607a627b
MD5 8f9c77f756afd448c53f24ec5ff473eb
BLAKE2b-256 1f44f69026d94cf0fa0bd32a9c40704bfa622854ca23509f2d1c2a45b0cd16ea

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 111.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fb8f296854b704546fab50dc0b51147df822814c47a9ccd2f59beda222388018
MD5 9c261608be524ab33092bf7d5a15fd71
BLAKE2b-256 91f650ddfae028882ce649645a2018bb11a2acc422b1f98543085c7ee5e396fd

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1164388d6f1179d844e5a5aea9c065d7c68ff41ae457fca6f59755e92e63ea6b
MD5 0a40b1cd504175ae31cdcfcd799e9f30
BLAKE2b-256 bfe263c6ca5baf3bb54329e071d8207f15fd201ace4bc84e1015f69e17404c68

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp311-cp311-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 495ae9235a8f2fe31efd58d01d71b860d8a70ec658f8399fe64f67cc6fd847bc
MD5 7e5253f086380033b94d5496f2caf7c7
BLAKE2b-256 1973c6fbcd6f3522f13c098347c4bd3b832056fdb20b5a115c7b27f29b5fab57

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fd09f343e3630bad29795a41f82374ab83603bf414188d5aee9e907d40c35b1
MD5 fdd7531aa389bbb811541dfdcfbe23fe
BLAKE2b-256 7b5668cb53a424f6696abb4f28542b882199dadffb5fe78afbe944c69257be90

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 680902a499f40ebf42fd9d2134165fefb4fee44ff036a6425eb87f72b26a1dc0
MD5 7d9a66565f43dfb1f6ffef25652e14f8
BLAKE2b-256 658584751b98647c1069cf670a9f29d02bff87f55d4b63cb76aa46d8bf8ef3db

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24e4347992d23b5446299a8ecdf2fa2ba26b6f12588913dc83234c08f2e9ed94
MD5 b26237730802c7cc36c46d010932855c
BLAKE2b-256 65927589e3c35d028897b8a13b167794f17f10c844f365d9d4ceeeb0a821d810

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 173.1 kB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a89deacbf89bde3dfb398e7884d46cad0e7c428914925180b5bcf1547e6b9f7b
MD5 b0439ee789837202650e1ef2616bc40f
BLAKE2b-256 61a7f12529a37c3298062e85787700e3bb25a3d06a198b902660e2ea866801de

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp311-cp311-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 305.7 kB
  • Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 839b108fa1d3a4586dfb59ecd5dd387a6bce51b6a13c936f0f8ddc4e152fc614
MD5 62bcda3f53e3e3078f7d37248e340ab2
BLAKE2b-256 76e3fa3f11aa4c573de1c08589f7b1cb0c440533da716921f66104a7c749f71e

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 126.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1e85b40bf93fc71fc413d183adf60328eb75a13d2f4600bd5eaf66e45cc9e784
MD5 06c3fa6d69e08ed228941950a662885d
BLAKE2b-256 1aeb7a4109fce121485d49a353b209da692f4945032b08e128ea390a73e3ef2d

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 112.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6e2fca635ae96e3bb9b0ca7b4dd831c260ea7832738746f0b43da9a5b42562aa
MD5 fbe9e3ef847d09d37da9b4a66c9390af
BLAKE2b-256 924c30c7c8e135ef2a978aa1f2e59cd7ad27392a11ed6600596241e0da268c2b

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2e35d27e4098845d6e84e4e4978b8b0b73991281c3c64ff8ab70320f70dd832b
MD5 ac8e6682cc6bb5541b06683406417f56
BLAKE2b-256 0bd08049ed4aa2f0d58d03079098ab51e8cebc2d65ca4954a11c256aad901244

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 68f00ec9d7eb1b205e2958780fd9f966440b26e2c1248723bbd2d4fcac273d13
MD5 31b17943550358d7639321bbaeb54471
BLAKE2b-256 fab33c5e99dbb8d04c5b74b5bcff903634cc817023c16160d999aaaf7809b3fd

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fef301a2f95c92abe298e4a0bc3d595720c259e1d009a518c1ea3e27cd2bc687
MD5 545506553188f5254739c993566c179f
BLAKE2b-256 c4e0ae602fa2ae258563f08af03da2774b0b76901d70fe115ec02644774a4d1b

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e7cb259f11e7a2160fc6af3ee3e374c1e5b9e814a7079b9613f37bff1ae9610
MD5 d7019c4585fb3885b8fb7e1cace1a589
BLAKE2b-256 23f8593318793f6b1604988c370db967f70290f729d2ef3b73f69bc6c806b0f1

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bc704fe615f5b4e602839b392e9a2191e133f6af4ff42083a9a53b13f900927
MD5 79b8668f04d56002cceba51951662ad0
BLAKE2b-256 401ba35657d25e9eeb9e78de0d993150406f8ccab72afb98537f957200be1d52

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 177.4 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d48815adb3d56ef5c85304586eaceea98c8c75a1b6447804f18b200967a6c79e
MD5 d09c098ab2f9d813a3bdae119a32fb26
BLAKE2b-256 d1b08b04f1896a52bb3b0c4bb237974e4a94731a91cd6686a2ac81f4b8ebcb47

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 314.6 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 51d17c06e48ecc47547b48f1385c81b9470824b9d13b792ac3b800561968cfdb
MD5 0b8a3963e4819bfd42a554ee0dfdfd8c
BLAKE2b-256 2198d93f06f53ef4acc9a2061d3cc73b397a787c71b400cc1aa276c914953a72

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 128.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a6ea7aad4444afad9326d087062bd2755e3be6e8557c0732d429b7a17cf64242
MD5 e3a021e9cdea91ef44017fb6d3b566e2
BLAKE2b-256 4bb80205c5c1c4032a587446e38ba51875b367b6993440cfebb904b230749376

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 114.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a342ea6248e7ccf51cafb6ae7cebcfb7bd1c33e3a512cc0dc22ca2f9b4691c72
MD5 426f4cf8cf041a4caf198ccbdf2ca5a7
BLAKE2b-256 c8c9dc90587dad0467f66b2e3a049465f2f7948d1c8203b9f3918ebb51d4d0bb

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fe959a51cbd187eff5093774d8a60ed126fd93e550f0256db00380d88ed02d2b
MD5 8fecbd6252d0e8a05fa3c44fc8f0b2ec
BLAKE2b-256 2d862d091965d6030689320e8d4708a60107a594e1f594b536c99298c54a4d8e

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 365bf9ddd69e758d3817119b6b287095f3fe2f10a2e8029868cc1c0f952de4c3
MD5 df4ec94e10bc698776135cf8336d911d
BLAKE2b-256 c7e8d147d27d15d7970783ee886f9f0af25db2a975ba65ea2505a3d0fdb27ec8

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4df76f5331422242b751ee759c292d943afe43a2a65bbd476444e9a728913e95
MD5 a9e7e968d20326a4158754f3f881d00c
BLAKE2b-256 fa29464d8b4f93fe90126b98c8945006418bc221174e2c1f7cdd4b702c04c875

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1af5e2f0d2ddf6dc931af7bfd892a7953aeeed97c627cf968234abc638a51776
MD5 1941ac96cb492bc9e80b85cfc94d6ece
BLAKE2b-256 311775802aa8da565ca4e4534c9fc80799426303e1c04e482ca3b6916cacfae8

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2530b4708b7ae02c4deedb7afb2da8b0416c8d4917e87e03a28ed872f8ac5e55
MD5 1d5e4e52040055c85b42d9e7618b3f73
BLAKE2b-256 18c6c609401fffdffc0538e31f86c96e7d2eb2014baf4c62486084ccbf89783d

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 177.1 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 81b044df674f451c23808590c025181f49f684a8882b26a2d63ab3cd9b342ecb
MD5 96bf30ee6e894ab74d96c540cbb96a45
BLAKE2b-256 6e3247f89b30424fc0ffce1241438c3c12ca6082acf5380152aede85dc5a4077

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 312.0 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d5798330d9416d30459f6787e3124d116f21863742c8e9c6c998947df51739e3
MD5 3d75f5e26b3de2c18ac3c184ce8f4539
BLAKE2b-256 b432ec56cbd22a6dd0d4323397446b78ce6e726b1ef32bdc69c8c633c2f2325e

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 128.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5b43471a8a51d44af79ef9a18f9d3019e8aa9ba78b4a555e1e38345794a83237
MD5 9d5c4c50162710bd717defb77f815eaf
BLAKE2b-256 b45f528c8f54e6ea58bbf62531f5771ff13495ae68ccc3c572dec2e341149c3f

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 114.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e597c8dcb05c90dffeb58d08c2ac7e2280a4d92b9fe802d91c40bdef616de3b3
MD5 88c7193a5db37fe583c307024da273e2
BLAKE2b-256 6cb44729d733084b6aeda50a20341f6afb9a553ecbc80b7cc0d6b8ee14049404

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 720e6cd730efbab76433bc8a3d9902db7457ee41cbdcce017f5d4c9b245166de
MD5 20502c3450e7cd3abefb77fa927552c9
BLAKE2b-256 61d4fc6d7d3406f2697752d1c2adba360858a7c5c438116b48e26ae5a558c9e2

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 180699afff120662053717c7b1cf4badfbc9a4ab9f7cbe76b7afe4494b8441bc
MD5 3e6f9afc8f871c77388bc621fd688921
BLAKE2b-256 276f6070c3941f19e156b14994faf4a7e80b61527a46a4fc6f0a8ef59011c378

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e88a69cfd365551dcb623e96facb57d4ad1acf057e602b939e2b0e15152a32b2
MD5 569ce5359e17f24549f87939dce33156
BLAKE2b-256 99f1827818c793b036af65139a8cb568d964f91d92e800cf8af2c16a4c386027

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d73b642c19072965dfdad29f086dc6ea848e3e75cc45fd6f21c69b64f70693a4
MD5 37ea968b0fc66e0dc55f48207d807a23
BLAKE2b-256 6aaf9be3d136fa63f07bec7e1e16a74aa7e5b228b1ad7e93b258a44c2c459ea6

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f1e441d3c5cd13ab3708170836533bd94dfd48c25dee8f91cb219787776f362
MD5 099acd3322c24a551eed443eaf9fa4fc
BLAKE2b-256 b9b736e730dcbc7f40f4ad1e64554cd37e144cbd8d38f760df282c53a67d9ff6

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp38-cp38-macosx_11_0_universal2.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp38-cp38-macosx_11_0_universal2.whl
  • Upload date:
  • Size: 303.8 kB
  • Tags: CPython 3.8, macOS 11.0+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 91333d231df58f42dfd3d352a3d96f97b5fd5c01df8526b13cfa6fc7e9023cee
MD5 d24ec094ad28164e17b93402f0cf9426
BLAKE2b-256 a753a8ac7a1935d758a944b99a683dd04371521a9ffff0a3fbbe61b8aac92de5

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 171.9 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12d55b22741a37d2200bcc1a95019fdc224b99232e3234163d54f605562871ce
MD5 26b8b652ac66519199638135c86fc89f
BLAKE2b-256 9d09360dc3c4e75631ea66fa509d1785532ebff9c24d4a0a0fd32137aa9f912e

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 126.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 af52030e3e83ec9eaadac86fd1ba91a4a01d06304a7f186bbd1e539bb1bed764
MD5 58ce136e3dafacde16cf1e774bff259a
BLAKE2b-256 4870c800d2f5728034cac2d69e0512a7cf360b677e7357237c748e33ee26ce18

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 112.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 27358c00d4e33be04fcddd9096bc6f654b9a3bdb4972f0e70e28bb7b437d280d
MD5 e3f39987bac2cdc4f8b9be2d77e8d0da
BLAKE2b-256 2a9fa91f4457c49b741cd90d878fd825da22eaa31b9f80e730baeedc504d8275

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d27b52714eadfc8a81cbe14fb05e06968e43a5bbc563779e00c57fdf7cd8c10f
MD5 5568bf648284c32fd1f9be0891886c6b
BLAKE2b-256 2609f064a20b871da27e712c61d9211bda916318d7c62a7e24a27573df216562

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 179087943293ebd707ca339e7f8b8bebeb45e3063b4ab4120b5c6a7ba5debc04
MD5 2b70be62a02928e88ab4f59f6321d7e2
BLAKE2b-256 783df047facd5128a0e5f5729cd73896e7c149927f27fed8d44bce126e60030d

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41b9728b9d7e9da907f7b376ef1ae324742e3c9ff71ffada6680f3fc44774641
MD5 3f3de0ed65aa8c8d31214355eabd8e3b
BLAKE2b-256 53f7b23da8d07ca47d29f81216f4fca697d4b45279f3b19eb15574e3f5f59213

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7afdb60eb37d8d9fd7b88f5f0d96074df6f69e6eb449be295de93f99de1672fd
MD5 276a4ab856d1906c4d108b29de9b39e9
BLAKE2b-256 884ecfbd349d596746fa24c4fadda17127d5a9b56787b6e566eb3a40bdceb849

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79388bc7c9a560cba31e239404568984cafa0efedc5f8314127c30d24b3e3d90
MD5 72aba9bb9b755a195ec6bbafcd6a1a65
BLAKE2b-256 04e00a535ecb2ba1d09c8becef64a1bfe27b4965911bf2196b4fd24dfa2e7b75

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 171.0 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf06b4266d854575ad8a81d277858705234673d781a9e2dc75cffc1467311ed4
MD5 a5c7480a68ff888281878c4befe2eac7
BLAKE2b-256 9438da9d889c3ff465823cb3e74ccb1084ed5837a51405db177d949c126ab920

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 126.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a2699c4c2ca28ec7f0b249f6b6edcd1b3c845f79ca65216574e6eec74236f412
MD5 d8e60d3ef297b39a0e78091c0fd1a852
BLAKE2b-256 ee270373564dee9bec883f60a72ef8e6494c6fc181532edf37b2d533b912bbf1

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 112.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 fb207d01047653becd7c1f653f66f2ff7ea2851dd2805570322624fef43627c5
MD5 bbb18ea891f5cf3d235482b97aed4574
BLAKE2b-256 9afeceb49ec8178b370393ac969ad191dd28afbaae09135e4ce8631659c3b226

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d7bea961720613c00896a134d8adac5c0de006544ee693042501f44fba6ad1e8
MD5 6f0cf298c67c78897790da33d128867d
BLAKE2b-256 9e5ce3f120adcf5d175700e33140d0dcb421d040acb424c2cf833200dfebbd19

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 25f59a321e1ed27f3c6c82fe12b18fb9e89b04b418781a7e20adbf7ef2bf9399
MD5 f9faa4a99952e86c73b54c5cc51d3e26
BLAKE2b-256 fd8680f705dc3e08029b696a548280f4f456c4a6ea9b808c5f41fca00f7d8d47

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf74aa428b9a515d1ff170cc060ce2dd407174b8e30a8e610a6a309d15614dcc
MD5 9645d926c2d35e9a319b5ea2357b2595
BLAKE2b-256 57a5d3e1a7417913f6fae1b4e52c2c03c5d929b8429ab83c710faab8d9c5d27e

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f320d6261f488482f37c8a96cef7332f34e63c759c13bd41dd8de73f3e80a88d
MD5 70ccced1281958073293095a2ca31c6f
BLAKE2b-256 cb5c0e5ee8cdb8609d6e1423788d910e2e7a23bb0a280c61dae77d4938a5b73c

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for compressed_segmentation-2.2.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7516119f50ceb8c8bd372496fab9cc2ff4c69b3a85e5bbd2d69e35c6f47b2b89
MD5 bea3796d2c2da06d05ac39bdb50a30d1
BLAKE2b-256 7275eb3a91c303cbf8499d4724322ba9bffd660bd4b193053dc1d1dfde9f980d

See more details on using hashes here.

File details

Details for the file compressed_segmentation-2.2.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: compressed_segmentation-2.2.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 170.4 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for compressed_segmentation-2.2.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2e07fbfce69d1df613658f3ec8ab179f6d9c7d658be4d946405b441a788bb7d
MD5 c13565e840d3f5e1f0a61e77f56f1fd8
BLAKE2b-256 a2be405cd553ba82093965e3700088f286699f34151d87b46897c1289dda14dc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page