Skip to main content

Cython implementation of Toolz: High performance functional utilities

Project description

Build Status Version Status

Cython implementation of the toolz package, which provides high performance utility functions for iterables, functions, and dictionaries.

toolz is a pure Python package that borrows heavily from contemporary functional languanges. It is designed to interoperate seamlessly with other libraries including itertools, functools, and third party libraries. High performance functional data analysis is possible with builtin types like list and dict, and user-defined data structures; and low memory usage is achieved by using the iterator protocol and returning iterators whenever possible.

cytoolz implements the same API as toolz. The main differences are that cytoolz is faster (typically 2-5x faster with a few spectacular exceptions) and cytoolz offers a C API that is accessible to other projects developed in Cython. Since toolz is able to process very large (potentially infinite) data sets, the performance increase gained by using cytoolz can be significant.

See the PyToolz documentation at https://toolz.readthedocs.io and the full API Documentation for more details.

LICENSE

New BSD. See License File.

Install

cytoolz is on the Python Package Index (PyPI):

pip install cytoolz

Dependencies

cytoolz supports Python 2.7+ and Python 3.4+ with a common codebase. It is developed in Cython, but requires no dependecies other than CPython and a C compiler. Like toolz, it is a light weight dependency.

Contributions Welcome

toolz (and cytoolz) aims to be a repository for utility functions, particularly those that come from the functional programming and list processing traditions. We welcome contributions that fall within this scope and encourage users to scrape their util.py files for functions that are broadly useful.

Please take a look at our issue pages for toolz and cytoolz for contribution ideas.

Community

See our mailing list. We’re friendly.

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

cytoolz-0.11.0.tar.gz (477.8 kB view details)

Uploaded Source

Built Distributions

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

cytoolz-0.11.0-cp39-cp39-win_amd64.whl (367.6 kB view details)

Uploaded CPython 3.9Windows x86-64

cytoolz-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

cytoolz-0.11.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

cytoolz-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl (369.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

cytoolz-0.11.0-cp38-cp38-win_amd64.whl (368.2 kB view details)

Uploaded CPython 3.8Windows x86-64

cytoolz-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

cytoolz-0.11.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

cytoolz-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl (399.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

cytoolz-0.11.0-cp37-cp37m-win_amd64.whl (358.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

cytoolz-0.11.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

cytoolz-0.11.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

cytoolz-0.11.0-cp37-cp37m-macosx_10_9_x86_64.whl (393.9 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

cytoolz-0.11.0-cp36-cp36m-win_amd64.whl (357.3 kB view details)

Uploaded CPython 3.6mWindows x86-64

cytoolz-0.11.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

cytoolz-0.11.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

cytoolz-0.11.0-cp36-cp36m-macosx_10_9_x86_64.whl (395.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

cytoolz-0.11.0-cp35-cp35m-manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.5m

cytoolz-0.11.0-cp35-cp35m-manylinux2010_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

cytoolz-0.11.0-cp35-cp35m-manylinux1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.5m

cytoolz-0.11.0-cp35-cp35m-macosx_10_6_x86_64.whl (396.8 kB view details)

Uploaded CPython 3.5mmacOS 10.6+ x86-64

File details

Details for the file cytoolz-0.11.0.tar.gz.

File metadata

  • Download URL: cytoolz-0.11.0.tar.gz
  • Upload date:
  • Size: 477.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0.post20200814 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for cytoolz-0.11.0.tar.gz
Algorithm Hash digest
SHA256 c64f3590c3eb40e1548f0d3c6b2ccde70493d0b8dc6cc7f9f3fec0bb3dcd4222
MD5 b10517fc4ed0c6c3706da8537e5222c4
BLAKE2b-256 58671c60da8ba831bfefedb64c78b9f6820bdf58972797c95644ee3191daf27a

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: cytoolz-0.11.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 367.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for cytoolz-0.11.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b61f23e9fa7cd5a87a503ab659f816858e2235926cd95b0c7e37403530d4a2d6
MD5 835d5d87b18b0b20bf5cdc4d14ae00b3
BLAKE2b-256 2914fcc22fcb849bbec6a89d800d3f3787b82d5116a5c0677575f4959b232294

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cytoolz-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb1b6bb4dee54fe62306d7330639f57a0dbb612520516b97b1c9dea5bc506634
MD5 0ffd8ea10c1707f2eb794464d8b32b44
BLAKE2b-256 b263e40fe177ce3ef70aedc8d043d82b91145a75a662dc37028519a5b78f1de2

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for cytoolz-0.11.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3159da30eaf214746215293fdba19b6b54af59b3b2ba979eb9e184c6c7a854d2
MD5 e28f6ac5fb9a8e3cd4dcc024674b33da
BLAKE2b-256 aba90036faeed2b3f6df3185001d2ab63f823d4b3d97f6c07c46e22c261589c1

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: cytoolz-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 369.5 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for cytoolz-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f85a8e164ebbe75e77a9c8a0b91bd2a3ceb5beeb0f1c180affe75318a41df98c
MD5 ee62817f2728b47b6118357653c64eed
BLAKE2b-256 bd302e269a17b1709144ba271f6211c897ca7c81a92ea93427f8f4f8a3d1fbb0

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: cytoolz-0.11.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 368.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for cytoolz-0.11.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d0fdf0186201f882274db95fc5644ef34bfb0593d9db23b7343b0e6c8c000a0a
MD5 cdf904204e4b3ed8d866091ea80c0bc5
BLAKE2b-256 bf7786bd5c6a1a585a090abb705163ecaac8e317363392a5357bad2f6acb0069

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cytoolz-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6e95de2fe891075f71edb0a56701eeaae04d43f44470c24d45e89f1ea801e85
MD5 3f08609f77dbe3a745e4a52466835a18
BLAKE2b-256 f911da8452a6bdf8ea0d532de7c830e0f62de97af3ea524e609b05eeb0e226c9

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for cytoolz-0.11.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b4a3eb96eda360b14fa6c7d2ce6faf684319c051f9ea620b009cb28a2878ed32
MD5 23f1bcea4a8b5d1ceb940995ac8f2e71
BLAKE2b-256 6564819413d5e33a9c7a2befd1dde6eecda330eccd188a95c7ef8304fe81c5d1

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: cytoolz-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 399.7 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for cytoolz-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c65635ad93bac9002e36d42603bd87514e8ea932910158054b409ceee05ff4fe
MD5 d4c33cdecdf7fe54f1ecd09abb27c2b5
BLAKE2b-256 07ebdfe14af0e8664517d390f6345021c1adc32fe1ef3d2bb8014792f6057f6c

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: cytoolz-0.11.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 358.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for cytoolz-0.11.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2f9963114029e78ddb626140cbb15b79ad0fd1563484b73fb29403a3d5bf3ed4
MD5 f629f38774954ac99f9d6c2d852676d2
BLAKE2b-256 110af747807c2c8e19ad7ec4bb3bfff46f424696b4fa816700b91ed642782458

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cytoolz-0.11.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8893b54f8d8d1bbc5a22dc4989d9b3eb269dd5ee1247993158e1f9ae0fbb9c88
MD5 2aae6f22f520ce230276f4436de92dd8
BLAKE2b-256 07f2f02e71e3ae5388ad36174df1d9217377e0cc19711810813ba14f4fd208f2

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for cytoolz-0.11.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 84519cf4f63308b0ce39162b7a341367338953cd9fbf7edd335cbc44dcd321e9
MD5 8423b6759734ccf6299f4777234cb341
BLAKE2b-256 4de79bbf54fcea551ba38aa059ae54290fc1d57a636922edf69fa4737df17700

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: cytoolz-0.11.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 393.9 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for cytoolz-0.11.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5692a100d657f9bc2fede44ff41649c0c577f251bc0bd06c699c177235a0f81c
MD5 ebbd317efefafe959ec648ded0cd420b
BLAKE2b-256 c36a633b431fc2a60bfee04d183ff1239e18617b353e510965ac1a819b6081d2

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: cytoolz-0.11.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 357.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.10

File hashes

Hashes for cytoolz-0.11.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 477f71b8b2c6fdd97aa3a421ba0cfd04b22ffed1b22dda3fea06db2756ee7097
MD5 e7d1b8911c81a80ebd5833987e64a972
BLAKE2b-256 507356e60dd2652e0f3a4fe8e2a46f3f317d60ec8ed61bbb4d1c628e31d07a06

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cytoolz-0.11.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2e7cbfec2681e8acfd0013e9581905f251455d411457a6f475ba1870d1685fc
MD5 f2cd096838cbd846a3c60130678ac663
BLAKE2b-256 b63d1b0767aebd52f56de3f55a476ccd3ce4a59ed3cf317e765d657734c12d2c

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for cytoolz-0.11.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 596a40ce920dd6cdab42d3dec5a4e8bb0bf258bb79426a4ed7658a27c214941b
MD5 6d22f137bafac034c531600e22491e62
BLAKE2b-256 765c2ec567c1bbc784967d171fe5e391a2df0c89fb094ed5a7046d4f42583de1

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: cytoolz-0.11.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 395.8 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for cytoolz-0.11.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7ed490f7f5c069a5082b73803ff4595f12ed0eb6b52ffa5ffe15d532acb71ed
MD5 056c151e971f67360b1d2fb4d3797b19
BLAKE2b-256 826343e22bc2ceed7637f6821eca76e7038b9776fc61b7c9a8e541334d3bc79c

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: cytoolz-0.11.0-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for cytoolz-0.11.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cba0572e3ad187e0ea0ddd20bb9c6aad794c23d997ed2b2aa2bbd109fe61f9f
MD5 129a34f0b490ad5d784cbffff73ec67f
BLAKE2b-256 989fedc240cda8051918f4355ef7166d393718a622d47a94368554317be13b9e

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: cytoolz-0.11.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for cytoolz-0.11.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c183237f4f0bac53238588e3567c0287130dd9ed6b6b880579a5cca960a89f54
MD5 a2651aa2e647c0ee0d612d134550d224
BLAKE2b-256 fa6ae74de614be6923b7aefa832f1a3a734f4da0d39423a67c7c093c108041e3

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: cytoolz-0.11.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for cytoolz-0.11.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 140eaadcd86216d4a185db3a37396ee80dd2edc6e490ba37a3d7c1b17a124078
MD5 983f46c6cfdba3abb0e727383399e20f
BLAKE2b-256 ab120cc8c790595ac4227f4116058c47da77d13dc6c6661c5760dc8ee8a7648c

See more details on using hashes here.

File details

Details for the file cytoolz-0.11.0-cp35-cp35m-macosx_10_6_x86_64.whl.

File metadata

  • Download URL: cytoolz-0.11.0-cp35-cp35m-macosx_10_6_x86_64.whl
  • Upload date:
  • Size: 396.8 kB
  • Tags: CPython 3.5m, macOS 10.6+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for cytoolz-0.11.0-cp35-cp35m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 c50051c02b23823209d6b0e8f7b2b37371312da50ca78165871dc6fed7bd37df
MD5 6f01dc730ad85be1f3efb9b7cb354657
BLAKE2b-256 b6c86fbe5fd03f09f881dc8a4b1777ac828ece660d1202e1fcd8ed995d381df1

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