Skip to main content

Time series downsampling in rust

Project description

tsdownsample

PyPI Latest Release support-version Downloads CodeQL Testing Testing Discord

Extremely fast time series downsampling 📈 for visualization, written in Rust.

Features ✨

  • Fast: written in rust with PyO3 bindings
    • leverages optimized argminmax - which is SIMD accelerated with runtime feature detection
    • scales linearly with the number of data points
    • multithreaded with Rayon (in Rust)
      Why we do not use Python multiprocessing Citing the PyO3 docs on parallelism:
      CPython has the infamous Global Interpreter Lock, which prevents several threads from executing Python bytecode in parallel. This makes threading in Python a bad fit for CPU-bound tasks and often forces developers to accept the overhead of multiprocessing.
      In Rust - which is a compiled language - there is no GIL, so CPU-bound tasks can be parallelized (with Rayon) with little to no overhead.
  • Efficient: memory efficient
    • works on views of the data (no copies)
    • no intermediate data structures are created
  • Flexible: works on any type of data
    • supported datatypes are
      • for x: f32, f64, i16, i32, i64, u16, u32, u64, datetime64, timedelta64
      • for y: f16, f32, f64, i8, i16, i32, i64, u8, u16, u32, u64, datetime64, timedelta64, bool
      !! 🚀 f16 argminmax is 200-300x faster than numpy In contrast with all other data types above, f16 is *not* hardware supported (i.e., no instructions for f16) by most modern CPUs!!
      🐌 Programming languages facilitate support for this datatype by either (i) upcasting to f32 or (ii) using a software implementation.
      💡 As for argminmax, only comparisons are needed - and thus no arithmetic operations - creating a symmetrical ordinal mapping from f16 to i16 is sufficient. This mapping allows to use the hardware supported scalar and SIMD i16 instructions - while not producing any memory overhead 🎉
      More details are described in argminmax PR #1.
  • Easy to use: simple & flexible API

Install

pip install tsdownsample

Usage

from tsdownsample import MinMaxLTTBDownsampler
import numpy as np

# Create a time series
y = np.random.randn(10_000_000)
x = np.arange(len(y))

# Downsample to 1000 points (assuming constant sampling rate)
s_ds = MinMaxLTTBDownsampler().downsample(y, n_out=1000)

# Select downsampled data
downsampled_y = y[s_ds]

# Downsample to 1000 points using the (possible irregularly spaced) x-data
s_ds = MinMaxLTTBDownsampler().downsample(x, y, n_out=1000)

# Select downsampled data
downsampled_x = x[s_ds]
downsampled_y = y[s_ds]

Downsampling algorithms & API

Downsampling API 📑

Each downsampling algorithm is implemented as a class that implements a downsample method. The signature of the downsample method:

downsample([x], y, n_out, **kwargs) -> ndarray[uint64]

Arguments:

  • x is optional
  • x and y are both positional arguments
  • n_out is a mandatory keyword argument that defines the number of output values*
  • **kwargs are optional keyword arguments (see table below):
    • parallel: whether to use multi-threading (default: False)
      ❗ The max number of threads can be configured with the TSDOWNSAMPLE_MAX_THREADS ENV var (e.g. os.environ["TSDOWNSAMPLE_MAX_THREADS"] = "4")
    • ...

Returns: a ndarray[uint64] of indices that can be used to index the original data.

*When there are gaps in the time series, fewer than n_out indices may be returned.

Downsampling algorithms 📈

The following downsampling algorithms (classes) are implemented:

Downsampler Description **kwargs
MinMaxDownsampler selects the min and max value in each bin parallel
M4Downsampler selects the min, max, first and last value in each bin parallel
LTTBDownsampler performs the Largest Triangle Three Buckets algorithm parallel
MinMaxLTTBDownsampler (new two-step algorithm 🎉) first selects n_out * minmax_ratio min and max values, then further reduces these to n_out values using the Largest Triangle Three Buckets algorithm parallel, minmax_ratio*

*Default value for minmax_ratio is 4, which is empirically proven to be a good default. More details here: https://arxiv.org/abs/2305.00332

Handling NaNs

This library supports two NaN-policies:

  1. Omit NaNs (NaNs are ignored during downsampling).
  2. Return index of first NaN once there is at least one present in the bin of the considered data.
Omit NaNs Return NaNs
MinMaxDownsampler NaNMinMaxDownsampler
M4Downsampler NaNM4Downsampler
MinMaxLTTBDownsampler NaNMinMaxLTTBDownsampler
LTTBDownsampler

Note that NaNs are not supported for x-data.

Limitations & assumptions 🚨

Assumes;

  1. x-data is (non-strictly) monotonic increasing (i.e., sorted)
  2. no NaNs in x-data

👤 Jeroen Van Der Donckt

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

tsdownsample-0.1.5.tar.gz (550.4 kB view details)

Uploaded Source

Built Distributions

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

tsdownsample-0.1.5-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

tsdownsample-0.1.5-cp314-cp314-win32.whl (766.9 kB view details)

Uploaded CPython 3.14Windows x86

tsdownsample-0.1.5-cp314-cp314-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tsdownsample-0.1.5-cp314-cp314-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tsdownsample-0.1.5-cp314-cp314-manylinux_2_24_s390x.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ s390x

tsdownsample-0.1.5-cp314-cp314-manylinux_2_24_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ppc64le

tsdownsample-0.1.5-cp314-cp314-manylinux_2_24_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARMv7l

tsdownsample-0.1.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tsdownsample-0.1.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

tsdownsample-0.1.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tsdownsample-0.1.5-cp314-cp314-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tsdownsample-0.1.5-cp314-cp314-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tsdownsample-0.1.5-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

tsdownsample-0.1.5-cp313-cp313-win32.whl (766.3 kB view details)

Uploaded CPython 3.13Windows x86

tsdownsample-0.1.5-cp313-cp313-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tsdownsample-0.1.5-cp313-cp313-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tsdownsample-0.1.5-cp313-cp313-manylinux_2_24_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ s390x

tsdownsample-0.1.5-cp313-cp313-manylinux_2_24_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ppc64le

tsdownsample-0.1.5-cp313-cp313-manylinux_2_24_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARMv7l

tsdownsample-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tsdownsample-0.1.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

tsdownsample-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tsdownsample-0.1.5-cp313-cp313-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tsdownsample-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tsdownsample-0.1.5-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

tsdownsample-0.1.5-cp312-cp312-win32.whl (767.2 kB view details)

Uploaded CPython 3.12Windows x86

tsdownsample-0.1.5-cp312-cp312-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tsdownsample-0.1.5-cp312-cp312-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tsdownsample-0.1.5-cp312-cp312-manylinux_2_24_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ s390x

tsdownsample-0.1.5-cp312-cp312-manylinux_2_24_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ppc64le

tsdownsample-0.1.5-cp312-cp312-manylinux_2_24_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARMv7l

tsdownsample-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tsdownsample-0.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

tsdownsample-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tsdownsample-0.1.5-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tsdownsample-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tsdownsample-0.1.5-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

tsdownsample-0.1.5-cp311-cp311-win32.whl (775.0 kB view details)

Uploaded CPython 3.11Windows x86

tsdownsample-0.1.5-cp311-cp311-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tsdownsample-0.1.5-cp311-cp311-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tsdownsample-0.1.5-cp311-cp311-manylinux_2_24_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

tsdownsample-0.1.5-cp311-cp311-manylinux_2_24_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

tsdownsample-0.1.5-cp311-cp311-manylinux_2_24_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

tsdownsample-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tsdownsample-0.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

tsdownsample-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tsdownsample-0.1.5-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tsdownsample-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tsdownsample-0.1.5-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

tsdownsample-0.1.5-cp310-cp310-win32.whl (773.9 kB view details)

Uploaded CPython 3.10Windows x86

tsdownsample-0.1.5-cp310-cp310-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tsdownsample-0.1.5-cp310-cp310-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tsdownsample-0.1.5-cp310-cp310-manylinux_2_24_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

tsdownsample-0.1.5-cp310-cp310-manylinux_2_24_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

tsdownsample-0.1.5-cp310-cp310-manylinux_2_24_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

tsdownsample-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tsdownsample-0.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

tsdownsample-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tsdownsample-0.1.5-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tsdownsample-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

tsdownsample-0.1.5-cp39-cp39-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86-64

tsdownsample-0.1.5-cp39-cp39-win32.whl (775.5 kB view details)

Uploaded CPython 3.9Windows x86

tsdownsample-0.1.5-cp39-cp39-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

tsdownsample-0.1.5-cp39-cp39-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

tsdownsample-0.1.5-cp39-cp39-manylinux_2_24_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

tsdownsample-0.1.5-cp39-cp39-manylinux_2_24_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

tsdownsample-0.1.5-cp39-cp39-manylinux_2_24_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

tsdownsample-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

tsdownsample-0.1.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

tsdownsample-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

tsdownsample-0.1.5-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

tsdownsample-0.1.5-cp39-cp39-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

tsdownsample-0.1.5-cp38-cp38-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86-64

tsdownsample-0.1.5-cp38-cp38-win32.whl (774.5 kB view details)

Uploaded CPython 3.8Windows x86

tsdownsample-0.1.5-cp38-cp38-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

tsdownsample-0.1.5-cp38-cp38-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

tsdownsample-0.1.5-cp38-cp38-manylinux_2_24_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

tsdownsample-0.1.5-cp38-cp38-manylinux_2_24_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

tsdownsample-0.1.5-cp38-cp38-manylinux_2_24_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

tsdownsample-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

tsdownsample-0.1.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

tsdownsample-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

tsdownsample-0.1.5-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

tsdownsample-0.1.5-cp38-cp38-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file tsdownsample-0.1.5.tar.gz.

File metadata

  • Download URL: tsdownsample-0.1.5.tar.gz
  • Upload date:
  • Size: 550.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for tsdownsample-0.1.5.tar.gz
Algorithm Hash digest
SHA256 1c338ce491599403b007f9b67f4a154d002ecfbd1550c99fad29aace36ebaedc
MD5 cf3e346fa2e00cf2110b2f5a4b1370eb
BLAKE2b-256 91745259fe49641a769ab235949d5e5879a67c836025e1475473413f9b6dd764

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ae9f9349b203e3b6e742448dd6991790e2cf6eb11655dee5853593b98b1a603a
MD5 04ff0b71f9c3099ed8e59e1517ee5297
BLAKE2b-256 ad4060c9e66ef8e50bd38ec01ac099399b958c2aecce1f4c0ac1fe604291ec8f

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp314-cp314-win32.whl.

File metadata

  • Download URL: tsdownsample-0.1.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 766.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for tsdownsample-0.1.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 dda823e5a3036265fff2cf391f9adec0a79811663c3c5bf57408a557d626dab2
MD5 9589d85d878b187bde53f2e080af9541
BLAKE2b-256 96f78478c995140eacff6b0f8a80842a222fa6b8210bcd490feea6824a9b3dff

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7f4dc88e3b78f4160bc5a7c64d5f9bd5e67758971aee9d0eac3540755861f4eb
MD5 8a7bb80739c714b472b68a60694c1603
BLAKE2b-256 4f0bffe780f84db40ab2e6fa42cf43fce49b4cca8a4bd27aed6d231f27bb351e

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 10fa892c19f8b7c11cb82d3fe1c1cca4d29ac72b718ae926afa11752b0dbf541
MD5 d25ad1a24f627d6d0b09c0501ca14f20
BLAKE2b-256 ddd54bf9d5ccbba8068b4a7724153cf27ff20d9c769c6534b35197b28818932b

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp314-cp314-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp314-cp314-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 6afc42569b2b4ed7278f129d33656492ff0d11367470dfd9ffb85df1f2178666
MD5 44914847657b65b6c61535042dd5c9cf
BLAKE2b-256 cf54a0de1d4ee23156983b10483c973619b623a61d5d1e547960cdc0137e6e58

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp314-cp314-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp314-cp314-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 e592e9f4bd22c991640c63170a00e2f9f950dd7fbe832cd7234b82b34819aed8
MD5 0f8d2b6b34b384a962c97930619854b4
BLAKE2b-256 6caa5ba55cd38a6baa1926d352867352e58f7405d2f09beb26a5ff6a0c7cd5cf

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp314-cp314-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp314-cp314-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 66bf5b8635c2df8a2c217adb307b02af55c5f7c62ec9ea8bcc402140ae6b7948
MD5 aea2c50bb66b059e1da9be6d83a19ae6
BLAKE2b-256 a4dabcd0afccc45fc2aee505efe2985c374b84de93682c87c2b928089c1fe2a9

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dedffe2dfb541d7d6a002c64ea69eef2782e99f27c264a82683b3023e12b9cb0
MD5 29ee6f4c4c181160356e00138318d319
BLAKE2b-256 7e158535ececf682b9b4fdd038690e2cad48cc534cea5e099a0e1c1e6d1daf89

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e9516bd14494d8171b604300dab035158f0a9e091d45f3d9a3a8222a5addb24
MD5 0ec283f8024dda04d0d43e0d22d9d808
BLAKE2b-256 33c51d708a985adab42b60ab0064024d4f448e20ba39a60faccf1b59546065fe

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26fc93629a1ec27ba018eb10b6a396367a92a54686e435920604fc9db0352e68
MD5 7ffd11db0590ff160aaa20f6395b3078
BLAKE2b-256 6088d9259f904b358995c48cf2680948e1a417eedf4f011e5f7de03c6b0a6686

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdb27f02e1cf51968e326fd792a9c6066d9e3dc8be48f503a69f969e9727f430
MD5 8fb90aed69178c758b887a62f7b04802
BLAKE2b-256 26c7a2b458b79690c375320b9c0cac2192c63c9206f21b4bdd5d9d5fd0282afd

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 520d0651058c869fb0fe7825e2f6fdb126973a8739c764b6d169538aa9cd3169
MD5 d6d68cd7f9685ee5f4acd1ca703379f4
BLAKE2b-256 9c55c183cbd753d79467a33b2759b90105acfc626dcbb192d2c3f8a501dc1231

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b79aff5bbc4fb5df04fa1adf8bad5a1f51577cb04a2b9aca57da46d91cd729d3
MD5 f1ae1ba9d2ed3b57fd9364f025d88396
BLAKE2b-256 081e68188c7b4e86fa8932fc31d0529bf76feb072eb36cb6c4fb289738cb0de5

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: tsdownsample-0.1.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 766.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for tsdownsample-0.1.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 31c525ea737350748a39fa19adf38fcddcfcca347dba87349b24ccb3357471d6
MD5 aad0a0395fafb4be8c27910190631a72
BLAKE2b-256 0464e99f6ddae8cfb2112bd531bd67b507a572f937e32317bf5244d60b5a3535

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1abd0f561e9fa173f69335f4bb71bceccae184187ca0c234d859045e892d1f56
MD5 859277d014a77beae7ed8d922dd7162f
BLAKE2b-256 dafb0982236765fddfdd2e914c8e877616f0d526a93c2134404f1d1571b6e82a

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 24cbabc6be1ae09b7e9a637bf2da990056810aa267344c1fe7d159e9bc589dee
MD5 67ff23a091f0e0de9597b37e24a8027b
BLAKE2b-256 51203f39687c158fe00585762c223d2520dd1354ee9556945dd20d5180754714

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp313-cp313-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp313-cp313-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 dbd5d24fa12d47d229918e392b71af70a01725a6934c50c01b7d7a1f6a4e24a8
MD5 a3a07c2a029526d157157eb4c59ab05f
BLAKE2b-256 22403ebfabb9ba2fd0d15a3ed14ce5c0474cd3bc71d6c13037a15ca2328571c0

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp313-cp313-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp313-cp313-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 ab20acc2b4d1d7c23ef9acf40b4c45d0b93a57e85ff6c7fa67e45ea03d5abda3
MD5 39816bf31d8a3876a4cc8e9a27d221a8
BLAKE2b-256 688ec4e44e868d3557c42da64263ff5fc012b7e1f5f387d12785d4e1eb752c29

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp313-cp313-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp313-cp313-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 5396a7178e9673e9366fd74e122011afd6ccc947be29296f9e1ca8a03faebf1b
MD5 b3a705118ae4f81afe6cd66b7b322061
BLAKE2b-256 d654732431dc75e875c2cbb3a592ed5972b1ede7b95ed69c75e76ec0c6d30bf4

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db669fe2a0498c7f6832e71569c937dcea6edf20c96bff6537257aff0e1f1038
MD5 407661e7940c7c188d0514c7747afb3e
BLAKE2b-256 80149267a0d249a453969487e67855b5d4b376529200a948902b4d8858d01783

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3636d6c5ea17ed6acbdf1f7e094787ea98bee99705df2dbd16eb1eece38cfc13
MD5 574be7bbe4da2e03aea6073744760215
BLAKE2b-256 82bbe62397736b2b118b7bf4018e544f53d4e778c59ab886fd9aa73e2d2c1663

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b168fec92b9cf95f2ee719c872cec1e72546e250e0753cd2565a063bb63303f2
MD5 22b96bece608ebf3fcf9a9285250f523
BLAKE2b-256 5e1cbe148ae5ff2d60876d547d337e72b9b80b468f609355ded66eded1edee48

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c94a0002c109e53b65ca43dd9a8793631bc10bdaa3fe142f016c4fe31d9a9450
MD5 f5e775bcc06d7ac5c6bf640c0385d485
BLAKE2b-256 9496ed5135af4cf67e9fb4143dbe3a1f35d622fcb6e092af3eb99f2d601d086d

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 201325759370e3a4b21157f471ef12eff5ad908641480a03b99b0607609498ed
MD5 d7a61d9da0cfc4533ca9408993d93327
BLAKE2b-256 758b61832c8936ed4734485ba26a43de95e001d32e33171a18f5e1d886ebfe75

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 afa3efb278ad0c4dc819b8bfa330694b677cbe558df82072db5c98c6b8dd4e54
MD5 b0c8d9623c33c71d670c1fe2212448a7
BLAKE2b-256 d9d53fe61901cc793a1b50f6c419d9b323408e762c66e7192dcc4da832e14ed8

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: tsdownsample-0.1.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 767.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for tsdownsample-0.1.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a3d3bf98e4676ced55edd63b4288aa0243e2ba7977cf0e89ede6c4eb888bd7ba
MD5 884daabbd01cf34748af99736eb832dc
BLAKE2b-256 b48d06fcba36e43133a9ffd81f49334cdd09acb92c641e57cb1239eaf424c8b6

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c5140f429b2187cee3ef4f8ff2383e9e980af9bc90942420e1005083bc5ab31c
MD5 7d009c44065675c9fbfe97fe8a896f72
BLAKE2b-256 73f560505f0512e2941fca45b8bd4085abcf108b8d2cb973499c110c69f8211f

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b1eaa3dafd61b64b9852f38d489913bdfb49b0762dbfbf93e12555ead5407a0e
MD5 72540a2d59c8c1f1f6babf1eada9db16
BLAKE2b-256 14dda6b5da62a4bd375a7607d86cca37dfe4a41f544b5af2e464075573c1a473

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp312-cp312-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp312-cp312-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 4ad99d96c6888c0e1b6a0acf75fe2bc1c0a876d212c05fe17179446199cc1a4c
MD5 47c17f2261acf64fb80f4fba7aa64439
BLAKE2b-256 78ea25f1c6a8d5769f5054296ba53dd003c7d24fb74f24a36c74c2cfce7fa66a

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp312-cp312-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp312-cp312-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 ac0b86bb08dc317aa9dae4e0e5d60935885672a7c182e1d3e89fe55049962df9
MD5 95cc42518332f1c71165fc5671381d0f
BLAKE2b-256 41ee0752146d3b899712a815d1a028adb663d75cba481e7200c8c7c020a77557

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp312-cp312-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp312-cp312-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 a1ce7a9ec5b48d1185a4112a4ff19110397071762685a4a291d362ca95f37981
MD5 f372e98b2d58a8d7d0e4da42ed340346
BLAKE2b-256 743b412ec007604977e41289997cde5ad3b872c311438549f2ee174935350994

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85ae8fb3d1ffad14116882043180ebd461cf8be9e8ae7c72970593fb4a6e1bf5
MD5 f6e738d918cd603436cd009506ccfd69
BLAKE2b-256 7e15e915c910e65ef8cb9459c02ab54f118c597b9ac6be6b592576ff102e7c9e

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f64cd79b03d0d4d7afb69d151cd8f5f407751ca1bfb83339fa722c8c93fd9a1b
MD5 1a663ed6dab84326ed3e7c2d7017f8e3
BLAKE2b-256 6998f3953dacbbb09f851b3dbf1a49b6e5294808e73b4ff6eef9fb10ad1b3e21

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 761bd1d0da5e7f18e090fc2c5b723e8aa0b6325baf9ab782f55c716c4f49a4d5
MD5 44fcb3963dab181493b21b451bfbeb65
BLAKE2b-256 4102b36098f3966e96e1b77c3b1929a6cebb9b07ba68e99ba1876fa7cdf4da4f

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c40c97d95e8bb0fa39b1efc203917933aca06a087cf00510eab52212baa83e5
MD5 042d1326614280f3841a9e9329a299ef
BLAKE2b-256 c4d96d3a80935e5d7152ddfaab3d38ee66ba8f444383a8ce7d4c805ddb67d4f4

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 063340a4b0e805ba2356aac7c0082565c5c69b55f93382210049820367d02db3
MD5 202ddaa823f978db26d00b2f683ab59f
BLAKE2b-256 bf5871a7c89267bb755590cbaa102ca8385ddb4879f7968f837183374495f940

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3e78f3545e18239101c359cc3b37ed8cbc15f14acbe11924ba160924992c12b0
MD5 336e5066dca1e933f4da86e659c59ba1
BLAKE2b-256 f39f021205235c71e11ceb58d33de656be1ee92a8cf4fac48c5f4fbc11292cd4

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp311-cp311-win32.whl.

File metadata

  • Download URL: tsdownsample-0.1.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 775.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for tsdownsample-0.1.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 970fb91dff83160720c539316b4e44859c349ed31f41da5afbd5edf1e1ec0c52
MD5 011e88f252446b2d6447f389814b9dcf
BLAKE2b-256 40bfdfeff753c07ca29968abc93a6a189cc26d8461a283bacc343934ec9dc449

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 af04453b1748698395540bf02db41ba95cfe3ec025105c12d456d0f37d9e8006
MD5 86647349483059c8b646298b7dedd1bf
BLAKE2b-256 b29b421ce2d8a9724a033d34161928e1d4d6feaaa80c065af0e5846899c055a2

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cd40d8af677456ba3d40d25037df48145e731334b7c0a823105374d82fde8436
MD5 d31bcb9c9977a2137f48d710d3e17b7f
BLAKE2b-256 55d5f9c398a4ee134264b536fd30414a976c7964f36fb0d2c0a4d1c7d53ca411

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp311-cp311-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 c18ff5915e4930836f5210a96c8dc980ff6bada01146d98bb6e3cb9e9abb7eea
MD5 bee95f4a4701e4499b9b37bbe3476f19
BLAKE2b-256 bf49a2296497b76f7ffd8145a09465c9c1f63a4efa3af781abcf274b446aa83d

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp311-cp311-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 cde254b02f3b703fdb7b18da36a5c3b395d899cc714df5a684c3012b9425a0a1
MD5 0343908609faf3eea9772d04cf40118e
BLAKE2b-256 b6faebb6fe39e1b91e2b5c96bde5cf7b3d3d2744437ab0ccbf71e4e3529783bf

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp311-cp311-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 f81adb0cff5917a04555a4b9d79a2ac6d6776946195852731048a9b7c927c37b
MD5 035ab0400021f884565f5ebef0c8083f
BLAKE2b-256 6e41860693482ae01aef2dfbd16302baaad43bc7592300e92c55186ef25fbe8d

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2a16e01117e1d9abee0c2a53136053233f0cb713cb1a81ab9975c00aa9f90c2
MD5 c06c2204f72c2e013afe7aedbba1dc38
BLAKE2b-256 5f1e85760c1e8c884fe2927d1ebc1351cfbb5f188c943a6bbf429d14f4877757

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c211668de84dd711aa8250331708cf2f36f1f596268502758d5cf5fa98f8a8e0
MD5 1273eb83413f6bf0b8e8ae3dc5fcd1f5
BLAKE2b-256 76f4f6d1842e02b82c18d805bdc55741c5006661fc99ca01d65e55b463accd01

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d0570cebc56524866a1027bfe7d33d9671ddb5fe004e7a6fee4401a87b608dd
MD5 8e54c0de9241dd6441328694ca465a83
BLAKE2b-256 faa1a0d324a20df096100778b8057948cfa2fcda04b7bd4e144f5e70cba21327

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b734ebc845a57c9960c9d51510cf15179f9fc2f085a75695fa3a27a92b34ec3e
MD5 5cf5ade5bdc83b6a47322baf48cbaa3a
BLAKE2b-256 43682f39f8198a81d2e26d5941b78d08d3105c4f24f738b60a7bfdc95391ff7a

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f22f96b2e051e34cf229a39173547d36316fd88089a3ed43bd03f7806925bc8d
MD5 28253bac0c92869be49cc8a8d1ec58bf
BLAKE2b-256 1ff2fac496e067f2ca10a1e958d304cacf8d92c7a3185ad61fc8d33987630e46

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b6becff0bce49003d16302f577e59d0155b3c8b686159c5a2ce958c0b921448e
MD5 ae1fb682df2707511198f2a8984067d2
BLAKE2b-256 1007217f8374ee5bd2d5016ca9171d9689cc524342c068b8e9a9b7c3394061e7

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: tsdownsample-0.1.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 773.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for tsdownsample-0.1.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8aab65047f41006ee4f285042a765afe89bfd557859395c281b9859b1e4594f6
MD5 5fb1bb2a8d0f8e70fb81a033acacac46
BLAKE2b-256 6552a78ba2816110a43bf271ba31841cde4c1902ce5cf170cb5b45c2300f9a41

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c6c71f4acc3e5991227e3d1384c8b52dd394647bab7f25424500aa0cea9c9c21
MD5 95b0ce2de82403de0059507978a8150e
BLAKE2b-256 fc76bd8755cfaa1658471732926712fa1d5bf4126318a7eab98fff2259540f8f

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4ee48ed8d1fc51e8801ea96564190e79c2c25c14d7f25b5f163fa963e5cce601
MD5 431d64bb1210de2dd68ac3a8fe9b01cb
BLAKE2b-256 81dda09483b42d83f75ee1d5facb0b4ec9225b0d7c62505c307b69d58ca5a783

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp310-cp310-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 5bb48badf027d594287f3977c74d0f3463ffdd2d8434a68d4d5c583efdf60321
MD5 c7e4ee2ece7ae504ac08f51e1614df49
BLAKE2b-256 7757ad89221386e73c47cc4a208643a51b629802e74407a4980fe19961761b3f

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp310-cp310-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 e4bf9b7e068719e1fcc095ce4c40e68b5fd44ad7890239ad27903dcd653eaa42
MD5 cded552cea3570098b67a276d77a08fd
BLAKE2b-256 4d01460ad4841a8314e4c91f7b36e67c2405e29a1061b4268a696718422cdde8

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp310-cp310-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 4ee569d89d0e522ae8698a0e6160bfac41d762582a33c991f40aa1c139e809ab
MD5 9bb5c1e4386abccbfc870a4747e8fa4d
BLAKE2b-256 b55e687628dfc9c8c194b07de1e1862ca0a730765e9923d34f0dac3adf74bd02

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc0519b4f93be20a3bdd5fb180d1816a1fe553cfc3e72a344fde01db9ea7b34d
MD5 f0f01beff6f8f6590beee5a2da3256b1
BLAKE2b-256 2540dc75fe6f8ad9965c417f345f80078ccf54b9145e2adc1148e0333df8d835

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e873330e9296b4fd3a1e924e50939553750e01242e4818443c6d0cd007ad3a1
MD5 2356fcc083eb75bd63402f4a4fbec093
BLAKE2b-256 b248699b0a74b02621ac13892384a46f323f70750c497a8e87563141252583bc

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 820c2392343654e5d2d56ef56e87e938c6643fd017222ca9388c91822c97356e
MD5 1da4dc67e7b26f1a57901cda3f034642
BLAKE2b-256 3653c56232b7b917fb1d660a501d640eb310ce6047a9d237b77c412a580d9084

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58c8a923bfb60233fde743f22e5cb4b678a023c99fe449e214a4e79f2c71fa8d
MD5 f6bce982035cc39668b7325686d59939
BLAKE2b-256 9bb17478b90cc4124002f8d67fe1d96932cfcc2257e6d1e1b69a7f0b1e5dad68

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9c0bcec3f5bf58027123bf41e27196f152899b537145f52687b266c79012a0c0
MD5 c5f0db3267cbe3d0613969130b987093
BLAKE2b-256 335b8472d5d291f07fd0d26a13ff08fdbcbbf1f83fdd50bc2cba5657cb8cef4e

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: tsdownsample-0.1.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for tsdownsample-0.1.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 575582b49041f836c617a418cc7b3478e975497de37ea43bf8fd15669016e375
MD5 2423777ecb3bf2ef0eb72aa266da10c2
BLAKE2b-256 10da7f7588ef8641cfe52aa88bd66a0e08606b2937ba147552a9c7ee6a3c2d61

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: tsdownsample-0.1.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 775.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for tsdownsample-0.1.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9ff08815aad165999d623e8f9197542f67cc9031441c306bf5a7698840c02827
MD5 259df22bc22f952a8a725fb5c2f2483a
BLAKE2b-256 d52abb94a2d769a40e04330a703849727d5cc6b4f41431c3cc94f50acc45e7d8

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0f3bc9956bcbe0ab8e5350660c62879ea7edba35f22205bd805d483fb42d112e
MD5 c9a5c4bcb8ff04ea989ff127cdefd058
BLAKE2b-256 ac210e0d2bb68acf48e2bf401f3472292f624be8a82dbd471377427b1b90b90d

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 db5d8076d9d8cec2d54619b1468dc1eecd48afd4e0b10886bcb304424992ec0a
MD5 6a59563feea39623d2a8d9e08e523513
BLAKE2b-256 0506d907b92a645bee91ddfadca87bd756cdd54cabf165a15f8f302c773c88d6

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp39-cp39-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 82edab301157664d53fa017dd303b0be495b2732521398159616f65317443b44
MD5 3e4750b42b6d2e42b2288757d4803d06
BLAKE2b-256 d6e4d314bc71c48a7affd6ea056052e4f04c4dd2febb115b2b6ea167772834e7

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp39-cp39-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 683130095bdc36ce3aa189b9dcf55f5ee6a19ba27e886007330b768dd2ad1a8c
MD5 217952fd2de04d6821a6ff24a73ba9bd
BLAKE2b-256 4729234cd42aad8d8454b9e932c76e3db44e73fcd98e1fa575cf6496d858e119

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp39-cp39-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 1aa368867a53ed7b785582c88c3d837c25b3eb4a70d04b277f33bdb3de652c31
MD5 86b09a6c87bef9e8dee0e6f413b3782e
BLAKE2b-256 dfef322b3a75e81baec5bafff516d6e1b320bdfb091bc32a051f07ed5771ee38

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cd5145aff4c65104c44503a0e7ef702dd1e91992df68796cfbfc44263591a69
MD5 0a84f4b3e0b608e6ea7e5b27ffd926bb
BLAKE2b-256 5a3adecde5eea18030c4281a6f5813ef29dc900046feacb29ca7c5fbf34d3b58

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 630b57bed6ceed6b04be04ab35434b1063685c5a79edd385527cfc31a0efb10f
MD5 3625b0d5f70bcd78e9289852d0d1e4c9
BLAKE2b-256 929dcb880fe630630d0165e7ec61738ca2b445e10183a5b2d73f17fb36e273f2

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85dff5810f4066c491a3046e98acb1d38cc2fdbecc7c3be59b978e5ce6fb166c
MD5 2197a9c5bec4f5d327827a2cf2ca00c3
BLAKE2b-256 249dd7157c0f65d7a19b2a0a2b10e46efe27e732930b9821777f53c080d7497e

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88056dcf3088b0398ea5a902155f4b5c73dbddf9ad8de2d7632a799af165201b
MD5 c882db088724f55b8eec91b7e97392f7
BLAKE2b-256 b07ca8866e73932302a7afbe5575ce27b8eeafd87ec833c20278a9841dd0bb78

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7724ce45ca38a631cfed121bbe3aa1bf89b96b7aafde0d85cfdbd2a426fe8a25
MD5 bd9465992287149d8eaf2df34be02720
BLAKE2b-256 9b133fee76006f2a521afdceb532e4225ced355a9ae8c86289ee0929d7ea2f1a

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: tsdownsample-0.1.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for tsdownsample-0.1.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c051fe71064985606dab318590d3423bdb113f0e372308309d878f1860b8828c
MD5 c97700ccd917361963da9935ce5499a1
BLAKE2b-256 c7c9cc6f6595431cce1832c5093768349bf5f059dacf01b244c0df560ffb1768

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: tsdownsample-0.1.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 774.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for tsdownsample-0.1.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 54f4531559676de7e998af13a99da9910558051a2e4b44e0744b4b5f838cbfef
MD5 fe7d9e89eca52183389f13595d9aa67e
BLAKE2b-256 1ef183fb34722fc27ffd95fe6a9d75efd4f979dba4b6133bb831fef5ea2e74f9

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5d81aba70dbd00b63e92bd5a2d36c73c1c0e0c2ce5b8ef45f61d76be94a052af
MD5 040a8e6fa87a19fef57dc0ac7d6e5c0e
BLAKE2b-256 7ae118036bd6b68c37ffaf10ee5c664f464e03c6afe8a331778392919c00d787

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ada9563779189bedf8d8ecf9a76a639c6e1edd9f570e26a6357fed07c179fccf
MD5 325050c1fbc25b81675fb59d33117f63
BLAKE2b-256 088cbfd1a06635884f0b58f332e913f2258c999f1259bd7502e0bd153b178222

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp38-cp38-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 a5d283e7d93b7f8a1a958c1a6e21ba5f882009413f05a4dac85288c656b899ef
MD5 6bd18fc1f440f2347b1fabe425b986e4
BLAKE2b-256 5231263108ba802b0156dfef493e98871a8ca645c6fc4cc4e645f452daab9456

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp38-cp38-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 27ec5214f60e324664d0dc2cb559ea1d9fd96c409039839bcfbf984ba49c5c8c
MD5 5d2f1021ed30fca094ccc959217d3d0f
BLAKE2b-256 5e371230f605dd80d58ab8d3aa40e8d8665ef8a560f7a8b67ca0d6d5d9264fa1

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp38-cp38-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 3e259a34ac18a631cb59bcc5c5bd9da1064520b1c42a1c79f1cb67c080c31afa
MD5 0197a6cebb032e9766676c1917c7812f
BLAKE2b-256 6e46f9849f54ed0b837f32115b6a2a402ef01c787496761eac61620b8020d54e

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee7c6176f795fde7aaedf96a09d54ac559b02a95878f36c1325c18e38980630a
MD5 2b73cd35c81538ba74123b0364c108d6
BLAKE2b-256 fcf6d326d34faa075ca9cd84060d318998a5ddbca23a16117fccac2d0c10848b

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b34a5d407ee049199d92d9c3e53c71eb3e631bd7c91e91a82c84b6bc4eb9b8e9
MD5 cfbdf020c22a4feaf06f29909508f665
BLAKE2b-256 a46d9e67f91174f8b41c4d3c8c88c5b84d4940412c6b44bb79b5852a10e210a3

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d88268388f544cfcea1b789e81723371377f3b8b6a269033635789656826a8b6
MD5 97d7c35544e1358ab32b8fd92cab90b7
BLAKE2b-256 f66748be8b41aa3c6270ff5a6eec28fc1c8dc5fce96f1405766ddc7f4ce7a74c

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e53dbd78d1acf98b7c2eb83412f2331bd7456ca89151a50261a93bc9d6c1aa96
MD5 fb6655a8a5288d444ba7604b914e1469
BLAKE2b-256 63cef2b38628065cfd6869602155661df7d7e9be513d2e3c5d40fbe3dce365fe

See more details on using hashes here.

File details

Details for the file tsdownsample-0.1.5-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tsdownsample-0.1.5-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8badbc453b7637ea0fec9e857a3dcc3c89cb763d770aa49e1b437ce40ea6180e
MD5 16abc1da27702e2bea1a8f7abf11edfd
BLAKE2b-256 cf88c9ef1feed08d02b0fbd04da6de2ade8b54d5ba0c99f5528437f5863cc3f4

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