Skip to main content

Blosc data compressor

Project description

A Python wrapper for the extremely fast Blosc compression library

Author:

The Blosc development team

Contact:

blosc@blosc.org

Github:

https://github.com/Blosc/python-blosc

URL:

https://www.blosc.org/python-blosc/python-blosc.html

PyPi:

version

Anaconda:

anaconda

Gitter:

gitter

Code of Conduct:

Contributor Covenant

What it is

Note: There is a more modern version of this package called Python-Blosc2 which supports many more features and is more actively maintained. Visit it at: https://github.com/Blosc/python-blosc2

Blosc (https://blosc.org) is a high performance compressor optimized for binary data. It has been designed to transmit data to the processor cache faster than the traditional, non-compressed, direct memory fetch approach via a memcpy() OS call.

Blosc works well for compressing numerical arrays that contains data with relatively low entropy, like sparse data, time series, grids with regular-spaced values, etc.

python-blosc a Python package that wraps Blosc. python-blosc supports Python 3.9 or higher versions.

Installing

Blosc is now offering Python wheels for the main OS (Win, Mac and Linux) and platforms. You can install binary packages from PyPi using pip:

$ pip install blosc

Documentation

The Sphinx based documentation is here:

https://blosc.org/python-blosc/python-blosc.html

Also, some examples are available on python-blosc wiki page:

https://github.com/blosc/python-blosc/wiki

Lastly, here is the recording and the slides from the talk “Compress me stupid” at the EuroPython 2014.

Building

If you need more control, there are different ways to compile python-blosc, depending if you want to link with an already installed Blosc library or not.

Installing via setuptools

python-blosc comes with the Blosc sources with it and can be built with:

$ python -m pip install -r requirements-dev.txt
$ python setup.py build_ext --inplace

Any codec can be enabled (=1) or disabled (=0) on this build-path with the appropriate OS environment variables INCLUDE_LZ4, INCLUDE_SNAPPY, INCLUDE_ZLIB, and INCLUDE_ZSTD. By default all the codecs in Blosc are enabled except Snappy (due to some issues with C++ with the gcc toolchain).

Compiler specific optimisations are automatically enabled by inspecting the CPU flags building Blosc. They can be manually disabled by setting the following environmental variables: DISABLE_BLOSC_SSE2 and DISABLE_BLOSC_AVX2.

setuptools is limited to using the compiler specified in the environment variable CC which on posix systems is usually gcc. This often causes trouble with the Snappy codec, which is written in C++, and as a result Snappy is no longer compiled by default. This problem is not known to affect MSVC or clang. Snappy is considered optional in Blosc as its compression performance is below that of the other codecs.

That’s all. You can proceed with testing section now.

Compiling with an installed Blosc library

This approach uses pre-built, fully optimized versions of Blosc built via CMake.

Go to https://github.com/Blosc/c-blosc/releases and download and install the C-Blosc library. Then, you can tell python-blosc where is the C-Blosc library in a couple of ways:

Using an environment variable:

$ export USE_SYSTEM_BLOSC=1                 # or "set USE_SYSTEM_BLOSC=1" on Windows
$ export Blosc_ROOT=/usr/local/customprefix # If you installed Blosc into a custom location
$ python setup.py build_ext --inplace

Using flags:

$ python setup.py build_ext --inplace -DUSE_SYSTEM_BLOSC:BOOL=YES -DBlosc_ROOT:PATH=/usr/local/customprefix

Testing

After compiling, you can quickly check that the package is sane by running the doctests in blosc/test.py:

$ python -m blosc.test  (add -v for verbose mode)

Once installed, you can re-run the tests at any time with:

$ python -c "import blosc; blosc.test()"

Benchmarking

If curious, you may want to run a small benchmark that compares a plain NumPy array copy against compression through different compressors in your Blosc build:

$ PYTHONPATH=. python bench/compress_ptr.py

Just to whet your appetite, here are the results for an Intel Xeon E5-2695 v3 @ 2.30GHz, running Python 3.5, CentOS 7, but YMMV (and will vary!):

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
python-blosc version: 1.5.1.dev0
Blosc version: 1.11.2 ($Date:: 2017-01-27 #$)
Compressors available: ['blosclz', 'lz4', 'lz4hc', 'snappy', 'zlib', 'zstd']
Compressor library versions:
  BloscLZ: 1.0.5
  LZ4: 1.7.5
  Snappy: 1.1.1
  Zlib: 1.2.7
  Zstd: 1.1.2
Python version: 3.5.2 |Continuum Analytics, Inc.| (default, Jul  2 2016, 17:53:06)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)]
Platform: Linux-3.10.0-327.18.2.el7.x86_64-x86_64 (#1 SMP Thu May 12 11:03:55 UTC 2016)
Linux dist: CentOS Linux 7.2.1511
Processor: x86_64
Byte-ordering: little
Detected cores: 56
Number of threads to use by default: 4
  -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Creating NumPy arrays with 10**8 int64/float64 elements:
  *** ctypes.memmove() *** Time for memcpy(): 0.276 s (2.70 GB/s)

Times for compressing/decompressing with clevel=5 and 24 threads

*** the arange linear distribution ***
  *** blosclz , noshuffle  ***  0.382 s (1.95 GB/s) / 0.300 s (2.48 GB/s)     Compr. ratio:   1.0x
  *** blosclz , shuffle    ***  0.042 s (17.77 GB/s) / 0.027 s (27.18 GB/s)   Compr. ratio:  57.1x
  *** blosclz , bitshuffle ***  0.094 s (7.94 GB/s) / 0.041 s (18.28 GB/s)    Compr. ratio:  74.0x
  *** lz4     , noshuffle  ***  0.156 s (4.79 GB/s) / 0.052 s (14.30 GB/s)    Compr. ratio:   2.0x
  *** lz4     , shuffle    ***  0.033 s (22.58 GB/s) / 0.034 s (22.03 GB/s)   Compr. ratio:  68.6x
  *** lz4     , bitshuffle ***  0.059 s (12.63 GB/s) / 0.053 s (14.18 GB/s)   Compr. ratio:  33.1x
  *** lz4hc   , noshuffle  ***  0.443 s (1.68 GB/s) / 0.070 s (10.62 GB/s)    Compr. ratio:   2.0x
  *** lz4hc   , shuffle    ***  0.102 s (7.31 GB/s) / 0.029 s (25.42 GB/s)    Compr. ratio:  97.5x
  *** lz4hc   , bitshuffle ***  0.206 s (3.62 GB/s) / 0.038 s (19.85 GB/s)    Compr. ratio: 180.5x
  *** snappy  , noshuffle  ***  0.154 s (4.84 GB/s) / 0.056 s (13.28 GB/s)    Compr. ratio:   2.0x
  *** snappy  , shuffle    ***  0.044 s (16.89 GB/s) / 0.047 s (15.95 GB/s)   Compr. ratio:  17.4x
  *** snappy  , bitshuffle ***  0.064 s (11.58 GB/s) / 0.061 s (12.26 GB/s)   Compr. ratio:  18.2x
  *** zlib    , noshuffle  ***  1.172 s (0.64 GB/s) / 0.135 s (5.50 GB/s)     Compr. ratio:   5.3x
  *** zlib    , shuffle    ***  0.260 s (2.86 GB/s) / 0.086 s (8.67 GB/s)     Compr. ratio: 120.8x
  *** zlib    , bitshuffle ***  0.262 s (2.84 GB/s) / 0.094 s (7.96 GB/s)     Compr. ratio: 260.1x
  *** zstd    , noshuffle  ***  0.973 s (0.77 GB/s) / 0.093 s (8.00 GB/s)     Compr. ratio:   7.8x
  *** zstd    , shuffle    ***  0.093 s (7.97 GB/s) / 0.023 s (32.71 GB/s)    Compr. ratio: 156.7x
  *** zstd    , bitshuffle ***  0.115 s (6.46 GB/s) / 0.029 s (25.60 GB/s)    Compr. ratio: 320.6x

*** the linspace linear distribution ***
  *** blosclz , noshuffle  ***  0.341 s (2.19 GB/s) / 0.291 s (2.56 GB/s)     Compr. ratio:   1.0x
  *** blosclz , shuffle    ***  0.132 s (5.65 GB/s) / 0.023 s (33.10 GB/s)    Compr. ratio:   2.0x
  *** blosclz , bitshuffle ***  0.166 s (4.50 GB/s) / 0.036 s (20.89 GB/s)    Compr. ratio:   2.8x
  *** lz4     , noshuffle  ***  0.142 s (5.26 GB/s) / 0.028 s (27.07 GB/s)    Compr. ratio:   1.0x
  *** lz4     , shuffle    ***  0.093 s (8.01 GB/s) / 0.030 s (24.87 GB/s)    Compr. ratio:   3.4x
  *** lz4     , bitshuffle ***  0.102 s (7.31 GB/s) / 0.039 s (19.13 GB/s)    Compr. ratio:   5.3x
  *** lz4hc   , noshuffle  ***  0.700 s (1.06 GB/s) / 0.044 s (16.77 GB/s)    Compr. ratio:   1.1x
  *** lz4hc   , shuffle    ***  0.203 s (3.67 GB/s) / 0.021 s (36.22 GB/s)    Compr. ratio:   8.6x
  *** lz4hc   , bitshuffle ***  0.342 s (2.18 GB/s) / 0.028 s (26.50 GB/s)    Compr. ratio:  14.2x
  *** snappy  , noshuffle  ***  0.271 s (2.75 GB/s) / 0.274 s (2.72 GB/s)     Compr. ratio:   1.0x
  *** snappy  , shuffle    ***  0.099 s (7.54 GB/s) / 0.042 s (17.55 GB/s)    Compr. ratio:   4.2x
  *** snappy  , bitshuffle ***  0.127 s (5.86 GB/s) / 0.043 s (17.20 GB/s)    Compr. ratio:   6.1x
  *** zlib    , noshuffle  ***  1.525 s (0.49 GB/s) / 0.158 s (4.70 GB/s)     Compr. ratio:   1.6x
  *** zlib    , shuffle    ***  0.346 s (2.15 GB/s) / 0.098 s (7.59 GB/s)     Compr. ratio:  10.7x
  *** zlib    , bitshuffle ***  0.420 s (1.78 GB/s) / 0.104 s (7.20 GB/s)     Compr. ratio:  18.0x
  *** zstd    , noshuffle  ***  1.061 s (0.70 GB/s) / 0.096 s (7.79 GB/s)     Compr. ratio:   1.9x
  *** zstd    , shuffle    ***  0.203 s (3.68 GB/s) / 0.052 s (14.21 GB/s)    Compr. ratio:  14.2x
  *** zstd    , bitshuffle ***  0.251 s (2.97 GB/s) / 0.047 s (15.84 GB/s)    Compr. ratio:  22.2x

*** the random distribution ***
  *** blosclz , noshuffle  ***  0.340 s (2.19 GB/s) / 0.285 s (2.61 GB/s)     Compr. ratio:   1.0x
  *** blosclz , shuffle    ***  0.091 s (8.21 GB/s) / 0.017 s (44.29 GB/s)    Compr. ratio:   3.9x
  *** blosclz , bitshuffle ***  0.080 s (9.27 GB/s) / 0.029 s (26.12 GB/s)    Compr. ratio:   6.1x
  *** lz4     , noshuffle  ***  0.150 s (4.95 GB/s) / 0.027 s (28.05 GB/s)    Compr. ratio:   2.4x
  *** lz4     , shuffle    ***  0.068 s (11.02 GB/s) / 0.029 s (26.03 GB/s)   Compr. ratio:   4.5x
  *** lz4     , bitshuffle ***  0.063 s (11.87 GB/s) / 0.054 s (13.70 GB/s)   Compr. ratio:   6.2x
  *** lz4hc   , noshuffle  ***  0.645 s (1.15 GB/s) / 0.019 s (39.22 GB/s)    Compr. ratio:   3.5x
  *** lz4hc   , shuffle    ***  0.257 s (2.90 GB/s) / 0.022 s (34.62 GB/s)    Compr. ratio:   5.1x
  *** lz4hc   , bitshuffle ***  0.128 s (5.80 GB/s) / 0.029 s (25.52 GB/s)    Compr. ratio:   6.2x
  *** snappy  , noshuffle  ***  0.164 s (4.54 GB/s) / 0.048 s (15.46 GB/s)    Compr. ratio:   2.2x
  *** snappy  , shuffle    ***  0.082 s (9.09 GB/s) / 0.043 s (17.39 GB/s)    Compr. ratio:   4.3x
  *** snappy  , bitshuffle ***  0.071 s (10.48 GB/s) / 0.046 s (16.08 GB/s)   Compr. ratio:   5.0x
  *** zlib    , noshuffle  ***  1.223 s (0.61 GB/s) / 0.093 s (7.97 GB/s)     Compr. ratio:   4.0x
  *** zlib    , shuffle    ***  0.636 s (1.17 GB/s) / 0.126 s (5.89 GB/s)     Compr. ratio:   5.5x
  *** zlib    , bitshuffle ***  0.327 s (2.28 GB/s) / 0.109 s (6.81 GB/s)     Compr. ratio:   6.2x
  *** zstd    , noshuffle  ***  1.432 s (0.52 GB/s) / 0.103 s (7.27 GB/s)     Compr. ratio:   4.2x
  *** zstd    , shuffle    ***  0.388 s (1.92 GB/s) / 0.031 s (23.71 GB/s)    Compr. ratio:   5.9x
  *** zstd    , bitshuffle ***  0.127 s (5.86 GB/s) / 0.033 s (22.77 GB/s)    Compr. ratio:   6.4x

Also, Blosc works quite well on ARM processors (even without NEON support yet):

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
python-blosc version: 1.4.4
Blosc version: 1.11.2 ($Date:: 2017-01-27 #$)
Compressors available: ['blosclz', 'lz4', 'lz4hc', 'snappy', 'zlib', 'zstd']
Compressor library versions:
  BloscLZ: 1.0.5
  LZ4: 1.7.5
  Snappy: 1.1.1
  Zlib: 1.2.8
  Zstd: 1.1.2
Python version: 3.6.0 (default, Dec 31 2016, 21:20:16)
[GCC 4.9.2]
Platform: Linux-3.4.113-sun8i-armv7l (#50 SMP PREEMPT Mon Nov 14 08:41:55 CET 2016)
Linux dist: debian 9.0
Processor: not recognized
Byte-ordering: little
Detected cores: 4
Number of threads to use by default: 4
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  *** ctypes.memmove() *** Time for memcpy():   0.015 s (93.57 MB/s)

Times for compressing/decompressing with clevel=5 and 4 threads

*** user input ***
  *** blosclz , noshuffle  ***  0.015 s (89.93 MB/s) / 0.010 s (138.32 MB/s)    Compr. ratio:   2.7x
  *** blosclz , shuffle    ***  0.023 s (60.25 MB/s) / 0.012 s (112.71 MB/s)    Compr. ratio:   2.3x
  *** blosclz , bitshuffle ***  0.018 s (77.63 MB/s) / 0.021 s (66.76 MB/s)     Compr. ratio:   7.3x
  *** lz4     , noshuffle  ***  0.008 s (177.14 MB/s) / 0.009 s (159.00 MB/s)   Compr. ratio:   3.6x
  *** lz4     , shuffle    ***  0.010 s (131.29 MB/s) / 0.012 s (117.69 MB/s)   Compr. ratio:   3.5x
  *** lz4     , bitshuffle ***  0.015 s (89.97 MB/s) / 0.022 s (63.62 MB/s)     Compr. ratio:   8.4x
  *** lz4hc   , noshuffle  ***  0.071 s (19.30 MB/s) / 0.007 s (186.64 MB/s)    Compr. ratio:   8.6x
  *** lz4hc   , shuffle    ***  0.079 s (17.30 MB/s) / 0.014 s (95.99 MB/s)     Compr. ratio:   6.2x
  *** lz4hc   , bitshuffle ***  0.062 s (22.23 MB/s) / 0.027 s (51.53 MB/s)     Compr. ratio:   9.7x
  *** snappy  , noshuffle  ***  0.008 s (173.87 MB/s) / 0.009 s (148.77 MB/s)   Compr. ratio:   4.4x
  *** snappy  , shuffle    ***  0.011 s (123.22 MB/s) / 0.016 s (85.16 MB/s)    Compr. ratio:   4.4x
  *** snappy  , bitshuffle ***  0.015 s (89.02 MB/s) / 0.021 s (64.87 MB/s)     Compr. ratio:   6.2x
  *** zlib    , noshuffle  ***  0.047 s (29.26 MB/s) / 0.011 s (121.83 MB/s)    Compr. ratio:  14.7x
  *** zlib    , shuffle    ***  0.080 s (17.20 MB/s) / 0.022 s (63.61 MB/s)     Compr. ratio:   9.4x
  *** zlib    , bitshuffle ***  0.059 s (23.50 MB/s) / 0.033 s (41.10 MB/s)     Compr. ratio:  10.5x
  *** zstd    , noshuffle  ***  0.113 s (12.21 MB/s) / 0.011 s (124.64 MB/s)    Compr. ratio:  15.6x
  *** zstd    , shuffle    ***  0.154 s (8.92 MB/s) / 0.026 s (52.56 MB/s)      Compr. ratio:   9.9x
  *** zstd    , bitshuffle ***  0.116 s (11.86 MB/s) / 0.036 s (38.40 MB/s)     Compr. ratio:  11.4x

For details on the ARM benchmark see: https://github.com/Blosc/python-blosc/issues/105

In case you find your own results interesting, please report them back to the authors!

License

The software is licensed under a 3-Clause BSD license. A copy of the python-blosc license can be found in LICENSE.txt.

Mailing list

Discussion about this module is welcome in the Blosc list:

blosc@googlegroups.com

https://groups.google.com/g/blosc


Enjoy data!

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

blosc-1.11.3.tar.gz (1.4 MB view details)

Uploaded Source

Built Distributions

blosc-1.11.3-cp313-cp313-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86-64

blosc-1.11.3-cp313-cp313-win32.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86

blosc-1.11.3-cp313-cp313-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

blosc-1.11.3-cp313-cp313-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

blosc-1.11.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

blosc-1.11.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

blosc-1.11.3-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

blosc-1.11.3-cp313-cp313-macosx_10_13_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

blosc-1.11.3-cp312-cp312-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86-64

blosc-1.11.3-cp312-cp312-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

blosc-1.11.3-cp312-cp312-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

blosc-1.11.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

blosc-1.11.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

blosc-1.11.3-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

blosc-1.11.3-cp312-cp312-macosx_10_13_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

blosc-1.11.3-cp311-cp311-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86-64

blosc-1.11.3-cp311-cp311-win32.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86

blosc-1.11.3-cp311-cp311-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

blosc-1.11.3-cp311-cp311-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

blosc-1.11.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

blosc-1.11.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

blosc-1.11.3-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

blosc-1.11.3-cp311-cp311-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

blosc-1.11.3-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86-64

blosc-1.11.3-cp310-cp310-win32.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86

blosc-1.11.3-cp310-cp310-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

blosc-1.11.3-cp310-cp310-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

blosc-1.11.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

blosc-1.11.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

blosc-1.11.3-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

blosc-1.11.3-cp310-cp310-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

blosc-1.11.3-cp39-cp39-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86-64

blosc-1.11.3-cp39-cp39-win32.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86

blosc-1.11.3-cp39-cp39-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

blosc-1.11.3-cp39-cp39-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

blosc-1.11.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

blosc-1.11.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

blosc-1.11.3-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

blosc-1.11.3-cp39-cp39-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file blosc-1.11.3.tar.gz.

File metadata

  • Download URL: blosc-1.11.3.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for blosc-1.11.3.tar.gz
Algorithm Hash digest
SHA256 89ed658eba7814a92e89c44d8c524148d55921595bc133bd1a90f8888a9e088e
MD5 d1515f54f58331e08e849619835b0aa4
BLAKE2b-256 e3ca3ec5a5d05e10ad200d887c8cfb9492d9a02e05f9f8f726aa178123b1711b

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: blosc-1.11.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for blosc-1.11.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 73721c1949f2b8d2f4168cababbfe6280511f0da9a971ba7ec9c56eab9603824
MD5 c30499edb2e402a3f1dffa44f662c99b
BLAKE2b-256 06d40c3cdaf34b3ef705fdab465ad8df4a3bce5bbdf2bca8f2515eae90ae28a0

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: blosc-1.11.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for blosc-1.11.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d3d72046580a50177811916c78130d6ae7307420733de6e950cb567c896b1ca5
MD5 8e7cb97187b9d3ec4dcba109eef7be1c
BLAKE2b-256 f10e3a5ed949e0e23eb576c08017bb39e8612607cf8f591d8149b0fb82469a03

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d57dde8c335378e8443757b69d0b29e90dfc53047d01311e952aecc815167dec
MD5 7faccae78574b3b6dc7533379c010821
BLAKE2b-256 790ec50458a1e038c0f0da70c3223d2a34ad702b86a79d0921f23a8ffaae035f

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 220865ffcac638f8f0f4b51259d4e4f3236165e5b43fffd1e836cd7cd29b9367
MD5 3ba515dca0049c45d448ceecf3a3fc2b
BLAKE2b-256 a0799ed273c9493e02f0bc5deacd3854ecabd6c6ba5371ed04b6c7702fd16f77

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e70216dbddb85b69a8d0f62a4a5c09b7a1fce9ca2f329793e799f8b6f9fa3ab0
MD5 1ad5f0b0220d1070c5bf4abc05875f9e
BLAKE2b-256 7cb8d21a1305356312ca0fc6bd54ad6fb91e7434f0efef545972eb72f040c815

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ece67bb34741a147e4120cff3ee3784121709a112d16795716b8f4239aaddfa4
MD5 b412a46cf4315544964835ff9770127d
BLAKE2b-256 1ecb7fdf0756e6a38d6a28c5063bc8ba8a8c8b1a1ab6980d777c52ca7dd942b1

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 291d153864f53960861a48c2a5f6706adc2a84a2bdd9c3d1c5353d9c32748a03
MD5 418171525decedeb6bad3c2f371dafe0
BLAKE2b-256 518fd8097dd6bf952d4bc1a31852f717d5a1157b32c1bea50dac723ed8e6bc8d

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9b474c70b9765587323dd1d7ff8e9fa9e9b35ccb3bee77e7658ce9faf2e05f7f
MD5 ed6cc1040991ce070102d902c248692f
BLAKE2b-256 a5236ee0e7270ad6299e73483dfad31b17f8acf66f7768094316a35ee0534f1d

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: blosc-1.11.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for blosc-1.11.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1a5cbcaa68d73e1115fed9ff09c20d35ab34d3b5e9bc6f0a2865156c363c0168
MD5 6180ea34daa84538f469dc2997292380
BLAKE2b-256 0aa953b1ecb81f0332ab6538e43555644e19ea08184b3ed3d36242847147103c

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52edad6b839b9ae2a7f1268fabe1570fd64bc5ba25c3f4f7aba5c5e555dd4a8a
MD5 6bb762fed0ffeaedbc9270a54ecbfa80
BLAKE2b-256 875977ea209329c7d1ed692dd7b44a81bc66817588940341372bdb3282a232ce

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f41e9202cd2d73238f2620725e84f668338aa45a53549a807d4c09fcf74e901f
MD5 096fb34296f371a8c443f43e6b57095e
BLAKE2b-256 64f218353bdfa9cd7af34f2b40c7da0ba919200688f41f4ebe7d4e9720af545d

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47dbe4ad431a773699a5779a98a982d8241eb412e4ddd1f19a4a869106d7a8d9
MD5 613a0a379f81d7250f5a81374cf28c9b
BLAKE2b-256 59089c133c628932bbaca9429a1a82759c5f07d8bbb0d856ca25ce9863f808c4

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9ec958830a22a20fea66f4d7f491e0993959974d68d104d3798c88f543dda14
MD5 e513dfcd15706221781adb95c4a8b7fe
BLAKE2b-256 2dedb01be8d05f970d48a3837a1e22796e934a72ad657ba1383f8e6d7893ae51

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5a63601d24bd722b2daa20b86380bc147969466471ea8bf7950ad2f5da19834
MD5 ca6958817d70ff879bcf578dbc15237c
BLAKE2b-256 86e81679a35c079f0b42d973cf4411152975710ff190273ddb507ee8a9d1baf0

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 075f7b57576e8197c3febbb0317a198b18911a6b882ac114de8c9e90d9058acb
MD5 b62c375a9a2adc7be6c4708a0c4c40b2
BLAKE2b-256 32cab7447cc735c5b5e364a74f33b2af1c3a5ca939f915d03045a021c3279152

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: blosc-1.11.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for blosc-1.11.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 171a3a6e9ce365b43978de65e93732c4d30dbf478f532cf41cfcc4d4a68e120a
MD5 551c42b144face82bade5053a8868fe5
BLAKE2b-256 ea78901d41c86ba0dccf5f422aa4e484f0be6fb643b73d7b83cdd2474f6b2ef6

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: blosc-1.11.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for blosc-1.11.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5c8586f13caf8848c676101259842d77f49fa0ba83e3e4e8fdd6a7f6f7b34b3e
MD5 84a888cc82204438e6de8d5dec50df48
BLAKE2b-256 1341d0d7d7b8aa1fc1d7526aa8deed79a3dd2bc80d882d41d1659ec711df52e7

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9ded3af5b49d1912dc087a700a20c001e5992bb9a31b1b6eb22d3c4372d3d02
MD5 bf9403f2a17db5654db3c0e196835a96
BLAKE2b-256 392325a2caedac53a5fe60c6a240f98684b95331ab8f3fe0eeb009d5feb34881

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8014b760e051fbbf6c4c75f342721d908494c4631fdfc738b177849966f38526
MD5 0f045bd220a8578564077ea29443dcaf
BLAKE2b-256 78c0a5229545f63c48a7ff1dee4182745509785471ab3d000e9984f0573e000f

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c3e148519bec17e05e5fa390d55d8c4270d18edba430bca7949ae1493fa79d4
MD5 3f3c84c5c79ada7e3d6c5117d07426db
BLAKE2b-256 38d56be838160326ff13a5e10aca0a82a33dd5eda2298574553247c2963f1c20

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89b57f7428e40329d2e2caa1c439078cef265b3bd91b64f05fd76ee845ec7b25
MD5 89b83ffb1107594d669bbbdbce8dfaba
BLAKE2b-256 e5d4c98f6ada26b31ecdf827c407f1069c44ea7a2626de8afaabdc134dc57147

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 953fa3bd263d0a23838598a91aaf623f3faa20160289ab5c53404d95814283ae
MD5 69836c973072ae5563f36031d44ee3cd
BLAKE2b-256 77c2a6fbc2d29c95b09f18fa92a2cbb59cfab62c1c21535420faac7e22a9715e

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e235534e09d428e3665d9bec8655913e1bd095b55436a11b5bc9a196e07d477
MD5 ac88d7014491ee6029de02fcab6bb45a
BLAKE2b-256 27bd887108b6d3f50f1fbfc796470630920197635a27856ea0c097867780b827

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: blosc-1.11.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for blosc-1.11.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b70a2f7ccbbc7b8c37f16816947ae3f15e05e1cb443b37c3bb21c4a472e7de0c
MD5 eccf286862677044704f251d101f2b87
BLAKE2b-256 2960ef9fd034a4c9027cc2e19392acd70749e90f615754230588c702994e1a2d

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: blosc-1.11.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for blosc-1.11.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 179e7030cd3088cec9f9235eb54740db8eb6abfca2f3f80d62921dc5fe56d2dd
MD5 fad521e47086ceb6cd52b888c9b5f9d1
BLAKE2b-256 524c08824d1277441777619d49e3a6b016bd4e82b63a19fad4c51aeb0fcb49fa

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0dfed36910623db800ed98c2ef3ba24e2d65aa6972aafd10b9f0db550ec197fc
MD5 36027f8f4d8e8b920783e65ae8b83a21
BLAKE2b-256 93be9db8fadc453ca97ec3b6d0d5274d0dac0b3458e996cc86a99b96eca005ba

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f5aa57e574762fed475daa9172a53053e3eeb1f72979f7dd1739289472c475c
MD5 545f3c5b130523fc1b9110017075b84b
BLAKE2b-256 769e23291ae6ea2ae39815ed6b2a832372a0ac4927975751039ee524a9ea3e6f

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed133aabada36fc04f5b435592a95498277441a0b8d6e106006879ec4d094e05
MD5 cac91b0aa81335493e2d58bcfa56480d
BLAKE2b-256 c7e420f13078cb0ae69bb59dee170e50fee38c033cede76259066f78572c4444

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db3593bbe73fd9877feee6b97e12a16973fa16c2e4cb21286b64369724482b5e
MD5 d2621c88cdf92c04ea61c2dff8ab1439
BLAKE2b-256 3b504e030a8b8f878b047b62e2838528ecf5c120471aa69ec1cc3b78b95d313b

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f993509c04335426d140e44d33011604a35aeff48873a86158393cfb4cadba41
MD5 594574ed3f65543c32e283903dac7208
BLAKE2b-256 cf10d722417e3606c51297490edf3f6b60afb35bba44726925a04be69d18256e

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b96333a29cbd7c23811f84afb406eeefde668d1b30b52d8cf97619f1a6e2218
MD5 1242b84d4512f2f749891d1943af7551
BLAKE2b-256 f73f23d182b246d1e877f57c21e1136ecc232b6d817015358770424509ad8ec7

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: blosc-1.11.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for blosc-1.11.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1edf02436f7fb3220ff377e11c6973af33f4ce85f213d42e876662daaa9c5320
MD5 d5c619fa90c4e86b68c5b817daba7a77
BLAKE2b-256 74c388df94aba52d8d1e2960b9d137ceb4e48d0393bdf57a426557f4ad0c363e

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: blosc-1.11.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for blosc-1.11.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cbaa7c3be6ce86c7e5845530976f80536d0334a62d85e03509c21afefe22abec
MD5 6fbd4a06f5fe41842cd12ff037e32f1a
BLAKE2b-256 08e2309c30ff004caac6a744ebb165c95757532cc5bfb0e675853b489a03362d

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a1b22b0ea2c5d9e9cacf7d1105dd2238058955570ca5d172fb9b77a746256dc
MD5 d6aa08aac9ba46d0887f466464bae3f3
BLAKE2b-256 d2a6ecdd0c6648e335adb49e01d4145d74a2f2eb77bd47cff7dc0043f6a13afa

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72dbe1dcadf7703019465937713cb7144491d834564a17af0a971a7916274922
MD5 8b64cf43e629997f6fab62733b37e247
BLAKE2b-256 ccf73ae3acb4cd49a4cecf63d7603c930e2a7667a950cd3e4be2cb8f85b37874

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2eea36ebcd89e4f263224f51ac2135e5e669f2ba33dc0757e88c34ae1cd4950
MD5 85194674ecb087446346bfd0f307793a
BLAKE2b-256 da48f0396b994d898fe1270c80487b89983f8c8e1620ad4ee7c844968afbb2ff

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d02137c38493013e7f7eee27fa9f7637d7efa72d03b2c985a1a9fb59887db7a0
MD5 d2010e912223de97e2e23111a38bc875
BLAKE2b-256 f2f52abe49ef66b08452f7d68fed108b9160ec57c4cc01cb6835bfddaf37db31

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a8dc50e2532be15d77f0b4a66c54fa778f997ada1cfad38b6b7b93806b54b7e
MD5 50c5c70fd983c981ef8d1fced2e461cb
BLAKE2b-256 35edef55fec7b6db0a69d61d141e5f7603b17e9e435d6822eefbe89b689201b9

See more details on using hashes here.

File details

Details for the file blosc-1.11.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for blosc-1.11.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d894ed85184ca02b29d291a7c944a10b587fa1962f8e9341dc99253e01fe343e
MD5 6aa4683aeaa54fddec65cb8a55e6c713
BLAKE2b-256 1d7d8f5c2db6851ceb0d7e1d908c9564ad3c8bf1509f663a4c7091e4e2608312

See more details on using hashes here.

Supported by

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