Skip to main content

A Python library for the Binary Indexed Tree data structure.

Project description

Binary-Indexed-Tree (Fenwick Tree)

PyPI version License: MIT

A high-performance Rust (via PyO3) implementation of a Binary Indexed Tree (Fenwick Tree), designed for efficient prefix sum queries and point updates in Python.

Features

  • O(log n) point updates and prefix sum queries.
  • 0-based indexing (for intuitive Python compatibility).
  • Supports negative values in the tree.
  • Rust backend for blazing-fast operations.

Why Use a Fenwick Tree?

Fenwick Trees are ideal for problems requiring dynamic prefix sums or frequent updates, where a static array would be too slow. Common use cases include:

  1. Real-time prefix sums:
    • Compute sums over arbitrary ranges in logarithmic time (e.g., financial tracking, scoring systems).
  2. Coordinate compression in algorithms:
    • Used in competitive programming for problems like inversion counting or range updates.
  3. Efficient updates:
    • Unlike prefix sum arrays (which require O(n) updates), Fenwick Trees handle updates in O(log n).
  4. Low memory overhead:
    • Uses only O(n) space, unlike segment trees which require O(4n).

Comparison to Alternatives

Structure Build Time Update Time Prefix Sum Time Space Use Case
Binary Indexed Tree O(n log n) O(log n) O(log n) O(n) Dynamic prefix sums
Prefix Sum Array O(n) O(n) O(1) O(n) Static arrays (no updates)
Segment Tree O(n) O(log n) O(log n) O(4n) Flexible range operations but heavier
pip install bit_ds

Usage

There are 2 classes defined by the library:

  1. BIT: A class for creating a Binary Indexed Tree (Fenwick Tree) using a list of integers.
  2. NdBIT: A class for creating a multi-dimensional Binary Indexed Tree (Fenwick Tree) using a numpy list of integers.

Requirements

  • Python 3.12+

Optional:

  • numpy (for NdBIT)
  • Rust 1.70+ (for building from source)

Basic Operations (0-based Indexing)

from bit_ds import BIT

# Initialize a BIT using a list of integers
bit = BIT([1, 2, 3, 4, 5])

# Point update: Add 5 to index 2 (0-based)
bit.update(2, 5)

# Prefix sum: Sum from index 0 to 2 (inclusive, 0-based) 
print(bit.query(2))  # Output: 6 

# Range sum: Sum from index 2 to 4 (inclusive, 0-based)
print(bit.range_query(2, 4))  # Output: 12

API Reference (0-based Indexing)

BIT(input: list)

  • Creates a new BIT instance using an input list of integers.

Methods

Method Description Time Complexity
update(index: int, delta: int) Updates the value at index (0-based) by delta. O(log n)
query(index: int) -> int Returns the sum from [0, index] (inclusive). O(log n)
range_query(l: int, r: int) -> int Returns the sum from [l, r] (inclusive). O(log n)

Key Notes

  1. 0-based Indexing:
    • update(0, x) affects the first element.
    • query(3) returns the sum from the first to the fourth element.
  2. Range Queries:
    • range_query(l, r) is equivalent to query(r) - query(l-1) (handles bounds automatically).
  3. Negative Deltas:
    • Use update(i, -5) to subtract values.

Benchmarks

WIP

Contributing

Pull requests welcome! For major changes, open an issue first.

License

MIT

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

bit_ds-0.1.2.tar.gz (38.8 kB view details)

Uploaded Source

Built Distributions

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

bit_ds-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (497.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bit_ds-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (525.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bit_ds-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (590.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bit_ds-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (505.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (374.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (394.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (327.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (326.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (348.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

bit_ds-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (498.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bit_ds-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (525.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bit_ds-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (590.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bit_ds-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (505.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (375.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (394.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (327.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (348.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

bit_ds-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (499.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bit_ds-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (526.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bit_ds-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (591.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bit_ds-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (506.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bit_ds-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (375.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bit_ds-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (395.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bit_ds-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (328.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bit_ds-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (328.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bit_ds-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl (497.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

bit_ds-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl (524.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

bit_ds-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl (590.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

bit_ds-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl (504.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

bit_ds-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (373.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

bit_ds-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (394.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

bit_ds-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (327.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

bit_ds-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (326.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

bit_ds-0.1.2-cp313-cp313-win_amd64.whl (184.5 kB view details)

Uploaded CPython 3.13Windows x86-64

bit_ds-0.1.2-cp313-cp313-win32.whl (175.4 kB view details)

Uploaded CPython 3.13Windows x86

bit_ds-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (498.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

bit_ds-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (523.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

bit_ds-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (590.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

bit_ds-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (505.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bit_ds-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

bit_ds-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (374.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

bit_ds-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (395.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

bit_ds-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (327.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

bit_ds-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (326.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

bit_ds-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (346.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

bit_ds-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (287.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bit_ds-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (296.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

bit_ds-0.1.2-cp312-cp312-win_amd64.whl (184.5 kB view details)

Uploaded CPython 3.12Windows x86-64

bit_ds-0.1.2-cp312-cp312-win32.whl (175.2 kB view details)

Uploaded CPython 3.12Windows x86

bit_ds-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (498.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bit_ds-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (523.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

bit_ds-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (590.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

bit_ds-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (504.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bit_ds-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bit_ds-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (374.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

bit_ds-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (395.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

bit_ds-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (327.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

bit_ds-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (326.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

bit_ds-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (347.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

bit_ds-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (287.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bit_ds-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (296.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

bit_ds-0.1.2-cp311-cp311-win_amd64.whl (184.0 kB view details)

Uploaded CPython 3.11Windows x86-64

bit_ds-0.1.2-cp311-cp311-win32.whl (175.1 kB view details)

Uploaded CPython 3.11Windows x86

bit_ds-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (498.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bit_ds-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (525.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

bit_ds-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (591.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

bit_ds-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (504.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bit_ds-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bit_ds-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (375.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

bit_ds-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (394.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

bit_ds-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (328.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

bit_ds-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (326.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

bit_ds-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (348.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

bit_ds-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (290.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bit_ds-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (300.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

bit_ds-0.1.2-cp310-cp310-win_amd64.whl (184.1 kB view details)

Uploaded CPython 3.10Windows x86-64

bit_ds-0.1.2-cp310-cp310-win32.whl (175.2 kB view details)

Uploaded CPython 3.10Windows x86

bit_ds-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (498.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bit_ds-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (525.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

bit_ds-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (591.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

bit_ds-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (505.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bit_ds-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bit_ds-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (376.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

bit_ds-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (395.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

bit_ds-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (328.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

bit_ds-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (326.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bit_ds-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (348.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

bit_ds-0.1.2-cp39-cp39-win_amd64.whl (185.7 kB view details)

Uploaded CPython 3.9Windows x86-64

bit_ds-0.1.2-cp39-cp39-win32.whl (176.1 kB view details)

Uploaded CPython 3.9Windows x86

bit_ds-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (499.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

bit_ds-0.1.2-cp39-cp39-musllinux_1_2_i686.whl (527.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

bit_ds-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl (592.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

bit_ds-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (507.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

bit_ds-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (329.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

bit_ds-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (376.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

bit_ds-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (396.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

bit_ds-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (329.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

bit_ds-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (328.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

bit_ds-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (350.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

bit_ds-0.1.2-cp38-cp38-win_amd64.whl (185.0 kB view details)

Uploaded CPython 3.8Windows x86-64

bit_ds-0.1.2-cp38-cp38-win32.whl (175.8 kB view details)

Uploaded CPython 3.8Windows x86

bit_ds-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (499.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

bit_ds-0.1.2-cp38-cp38-musllinux_1_2_i686.whl (526.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

bit_ds-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl (591.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

bit_ds-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl (506.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

bit_ds-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (329.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

bit_ds-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (377.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

bit_ds-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (396.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

bit_ds-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (328.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

bit_ds-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (328.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

bit_ds-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (349.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file bit_ds-0.1.2.tar.gz.

File metadata

  • Download URL: bit_ds-0.1.2.tar.gz
  • Upload date:
  • Size: 38.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.4

File hashes

Hashes for bit_ds-0.1.2.tar.gz
Algorithm Hash digest
SHA256 8b9387ed198971f3a56a5798df5dde2376f07a46b6f7b1c434e1c237acab1208
MD5 b2b965fbc30e555773dc3244e9ce6e4d
BLAKE2b-256 f0456f29d000c03700223310df3c833503fc049c9a9fcdf8c21997d59bc93716

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef3746324f4f79b35e4ed4ce09b05e1f2e457dcf70bc81646e7d70164393114c
MD5 f1731d89d55713bcd5fd7120c58faf68
BLAKE2b-256 ce4d3d66a297072f8bcacb39374c60400858cfe14ea5f541d9413ab7f9c06387

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5677683ac178f319f25579d9cc5be2fe04db222e19366c0baa7d3fdc63956790
MD5 2b86c193f3f4ffcaf6c0d3d3c8441040
BLAKE2b-256 597083c145363504b02af2640ec07d8471d42082f870da225bfd7d1023333918

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b828ac3fcade84c4907a9b53939f525baee917f4287b2bdef6124a8adfeb9ce3
MD5 0ac197f233e4409892964e9498475c16
BLAKE2b-256 33d7c5701f5311fd412f2ed273f74c1c212cd9f55cf404cba1c85e2f69b3f44a

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 933ac1dd56993da0fb952859d96643eb881686bdc8438fef28f2b39c45882c56
MD5 6fb0acda80d69910d4b11f005b43c886
BLAKE2b-256 866443c864d556287b07732572d4c3072525bc2250eab64c2b14b5b9dd217231

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cb3df7a53b6d1d8d7b883788444de0e3eca573891ef61506868a8fdad511a07
MD5 3b0d21ea2446d6f9481f90df0c47fea4
BLAKE2b-256 15cd926ba39b96f4494efa9abb82639a85d0fb83a65ab59ca8dcca4305af912b

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 65e4348adff879797a758d8cf7f5de1122b0e1af9f52c59f6c360ed8210465a9
MD5 df64b8a8fef0f39b8f30713c87e4822d
BLAKE2b-256 c9cf1d4afe27dc2f0febe330fe4728341f76ecbb2f431223db4248d5ec2fc1c1

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a49e0df4d0faf8ea5c189c203e6422395c3e33cca50f1af2a76d5b04ad2e0f9b
MD5 11270f5db0f0c88e1d743a5951588233
BLAKE2b-256 69da62fbb2afe7529d91d75d6f7219219b5e2644a6ad5378f6b16b02ea80348a

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a86e857b99d4f201cbe80e6085d4151479e3e28c9d20559b8ae1fa9b1c0acaef
MD5 d1284bd48913cb01b943b174ee9c77ef
BLAKE2b-256 32a85149f7642dfd0800235b26938a34e7319a58d2544c4bb286bf041d7d0d0a

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 469b7d33122a6d9c73678d75a803198e5435a556ad3fe1edbe1c7ac4e217dde5
MD5 310723308683e0c0991224ba7fa1e3dc
BLAKE2b-256 3fc47156f9ed45db2f37a5f43a19ca686b13735107046b613ccbd558007feb30

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 97b6bc0081602dc1ea5372e74514b4cb2405b35e36fe4be27c6a9c84d8b11978
MD5 4ff432777280ebafb8d59fdd4f59e4dd
BLAKE2b-256 5614289c4b7822e762a4ad084ce836d17d97c70b4158600728dec9b089883132

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b65d68ea2638319e756cb88c782a4e6d65652c58646dc69d3e013cfdf4ba21e
MD5 f23b71b68615837d7429fd713e69c21b
BLAKE2b-256 ce466660b4d3aab9bbc22576d0c0dcad282adce99fd1c0010a7c2db1afa5baff

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a2d29bdc55a7a244e4f9ba1c4113ec4f96cef2c2c5adbf5045c30352ae4867c
MD5 de4798de3d7c934f210ababf42a88f21
BLAKE2b-256 415a02bccb3b420ebbacac4d1a0d679cd4787df8cf64173fe478b3489b5418d0

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4fd118951e263eeda836c577d0933505f80fbc72f05d650ca46bc4cae03658b2
MD5 090501ccae42456ad9c9caf893c48b77
BLAKE2b-256 082ab6d1884d4956f35908ef407996b6918cd15014e52d8ec53c81622112d149

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f32aab0dcfe77608916474794e31aee047eed68a9698b46c54314b2a3dd43f1
MD5 6adc71dcbe72b4b0c85fc2dc38172b4b
BLAKE2b-256 c0328754e25f5f1598b06ee80d3b5ec71306c1e6c7a4578a20c13b1f32155424

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b944ea048e97dab8af9e6ea91e6b280020c0847cd5370eb2b00a14ce0095127d
MD5 109ff210e70bded61b3a20a52e893927
BLAKE2b-256 d4cb40b827f5781008b3f46a25fe9080ffbd8385d41d9154f049fc288500e835

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04bb51b1d39fb2994b7bf7eea6ed8c871a92239a995b9c0e00863b4a03b981e2
MD5 1fd347d84e30b55de5bdfc02cd1d1064
BLAKE2b-256 ff8f487dcbe089f54ce5882bc7f0f95975f4a76c2fba92e7886ec6cbbad4b523

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa1039807dc899ef69357ef693ef549b6b7a615a3ac43bc907aab88a05c123ed
MD5 7cd7b818cf59156ff1c9db4a2f37a236
BLAKE2b-256 d21016a89a2759153bcfa2900dfb03ce81ab34ea1b706d9b35bc395df535756e

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98dfdbbf963689cb06de1d4ed7ebe72a9217e2650b70c6dbeb80dffb579ecccf
MD5 2c3feee78f8bf5356c966624f837eb7a
BLAKE2b-256 312b63ecef5f54193f35a5f73a591d95c25b9cc0a39b4249255b51086d20fa6b

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f403c5df4f6ddf0ad65e1dcde1cfca669428142d0c371852956968c246f8da69
MD5 41f588216d3e3a34faf98286a702710c
BLAKE2b-256 5db9e3b93115606000b5dcb68a4c3e577c158736ec3b658283cb6857d5a98eb9

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 69d59ca9b1006bdb513c8365d78f7cc08036b97a77b6079c012371e2f723c144
MD5 316a5af2a006d263a7e06c67728f2bcd
BLAKE2b-256 cac1a32174f0b257a50d961e4fb66adb7bcce4eb145a1c7e0f8454ad028ac26f

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0d56cb24b60024dbfbd5fb01ed08ce7f48f86062967866d84981d41a15286f2
MD5 c4fdc2b1af429fea3fe8048c703fe6fc
BLAKE2b-256 7b0dcee66087e75db125b5e37d628beddd283848b128ecfcab913f39b2537987

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5f6f340c7655b730209546fdd76435f887b1eeb0e8691af06460756c6a46395
MD5 833b63ad78a79108a6601891960781f3
BLAKE2b-256 4dc59684f0cbda195175cc3424149dfd979c9c51df4346426120f4e00c085e1f

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 083206741aebabd6b3c84f08f41982544c9582f053ce7abc7bb47be58e4de167
MD5 0bf03c66f598dab137e5d45d19c13831
BLAKE2b-256 09dda95d9332c21faa36a9c56342c27e3dea80140ba626db0039f484b474138c

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02187c74746b73c19b5604f751ba9f03a7fda243df8e8cb5c575925538580f27
MD5 970ca14150680403b13ae12a3ac6b449
BLAKE2b-256 b767b2989053745ad8e673eb79fd437c0df4dbd077fa4599c3e51d2bfef9d317

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c764bfc782df0c0b93b7c0e13b78bfe93fe0fed252915d1ac91ccd959c9d78c6
MD5 12c9a103fca8b25860c9adfcd0491267
BLAKE2b-256 966e4bf2fd3b8d7517b6ab6caa6836b454407caf677ff1ca1f942bdf03d24bd6

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0c161d568ebe03155a5e9715c948e86d619f19662bf7c0a9623fd8c5d4c8395
MD5 880363358eb2277b375bd5af1abda7cc
BLAKE2b-256 ec38e99ea4a35fefde3b391068ac80424ed9eca85fcfccc517f0d0ca2ff6b2df

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff85a7bbf993225dd43d0ff503a77a8c8b29c01cbffb53c3567baa4e8497f200
MD5 e3e350979695b1c6a165eaaa9599ada1
BLAKE2b-256 b20ce11ce49aef1f9ed991b6f8c85e60e839b6fa17c31d3c5cb52c49ce2c7702

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 865abe1b3c03550c630225c1238133fecccc6cb5b60250086bd7dc8f5a40d1e4
MD5 c4286b280bda5d6144e2b61324b7da33
BLAKE2b-256 a11d53dd21ec3483ddfe4c751e63b3297a8250b42f57252d15936e6670de9630

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 612f0f7d003f5939e04f8a61edc31c54b74943b877728563a112466ef11adf71
MD5 51fceb70530787fd6b4855b3837b9291
BLAKE2b-256 85e0f08bddf907ee70c976f37c90e1d42d723e7e9a21cc075794f9c9ffa825fe

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 81ca1a571e7d3f74035accd45f5b8561db582f66458154050b2af7be58d179c2
MD5 f8027b7106f98322fd51fabca7a9ce83
BLAKE2b-256 e5390c72d387e4fac11faae6125c38e6f0e83531c3054469c7f034e0be9ae50d

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d53100f71cbe57c56698edc2860531112c24b6288777c1530a7c484ef382984
MD5 655f4340a807dfc449bcd7ea83d18d13
BLAKE2b-256 430129c5cc603596b919538e1e6447fb8d11018ed7c9b52c95290eb2666e1c96

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01e85e235ff28fc3b3cf65476b8ab97e1b675fdeba74fe6c1559d75946d29da1
MD5 be408942fd75c9a3289a374b1cdf1529
BLAKE2b-256 f1b052408836e1926d9c5731c94d2e6181bd4a64c4c9b7f3a657e8a99b3a2673

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4cd39c41edb3d62d91d049a9f1137f4f7a7fce1c4bf40d021abfa304f0c21808
MD5 e9c03e4588709732110f1dc27a980f5b
BLAKE2b-256 49531e5745c49685b324b8f16d3a77fee507cf03ae3bd6ee872f49b9834a4879

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7bce72ab19c4bb52af9f9c1dc54066ec928017a011d8350c7024204bf68deb62
MD5 b59e0f5e08cc577833c566cf1a6f280d
BLAKE2b-256 3a0fc54df5b807c35d4aa2ceaec89823b9f10fd17968ed0d1f54a33d2642598c

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4fd34ec36f969c0990ccb246708926a4664be9cf4707f721dcec6a8d425f4dc7
MD5 bd05399526c48faf532a4d3a10d0577e
BLAKE2b-256 e77471178d732e4adf38c0cbf886be862c70a6b87c99266b98d3fe0927cbc914

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e64a923b4e3562ac7629e7b2a6b4cebc04497009092e24b410f78fe9fe4c0477
MD5 91e599f50de4e601ac41f5d0efe99974
BLAKE2b-256 4f35d89892c45a2cac8378ba4a292b0f07a17fbea967843dba07d1b7c994d4df

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: bit_ds-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 184.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.4

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d777db567007b408e0867f3a978b5065a79d8390c6198dbf3bb8e5d4316d3781
MD5 5440225b2537a4fe1fe8ad573910a269
BLAKE2b-256 ddfcf0e67a57df9b949d3f3b6dad54ad3fe28f143a557525631c658acee8b8ad

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: bit_ds-0.1.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 175.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.4

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 22ddd874fb4ae5bf8514585433ef663f4db1b55182882aa9e4c69e7bba9b48e3
MD5 5fe7bc1fc3dda53df69deae81ccef2a6
BLAKE2b-256 7d357f22d22d7689a6c03e32adc5df758e222c08311feefdf5165188942b2c44

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cbf720c4fe7c0145121956c92dc88845d5da421698ef650d067652af4707146e
MD5 e2ba4d0d459e33b7c018658980df60f9
BLAKE2b-256 e9ae4e3d90dd0009c8446c791c98d87ffa52b2d443e2ecfd891e30f44e5e03e7

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 60bd1380f672982ec9e00e7f6a5e00d01581fc4ea5d74ee01a7d3982d9f90e35
MD5 083bebb7286a8db91d8c5778a884944f
BLAKE2b-256 49d558147062e3e385ef399342b1ce8a2ea9ddfa4f9a7f42470f9b35a4d123ed

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 024ad733e83bce7abe149edf132b54f9910282c4cfa962ef7357a7a917785f35
MD5 e854539d0534a28b200c5ad50974275b
BLAKE2b-256 65b0228335127134ae6c370eca66fa0a01c1e24f9b9b587e8cbd28b8cedcdb1a

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2185db6cae837ef6776f34b8a062823a250d2b901f24e66f7d3b2189e12c773
MD5 5d6bb9904ad61c9219382c2914401e50
BLAKE2b-256 5de40da762d3c26069d30b71c2dd36e6fe25bb0731d22b8a9aacca016197ba86

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77c0b0e864368edf35371f56742c729793fe043f45de46a48ab888d928ad442a
MD5 959ccc098b9b8ef1802b07a02d3392c1
BLAKE2b-256 0d8309d9a5d4d49561539f1be4cc0f9051e4bf6313cbf71b632a776a8acd3fdd

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7964946e543bdee000970a7386bf5d63b91fbebdcced8670dc6f57665de4622e
MD5 b78e976078692abcea8a6946760e1c70
BLAKE2b-256 7238cafb1cbc0a4acb9670adccbfcf9cc25af6ae93fff0d9dfabd33372bce30f

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cbc03d11fdc076dd8ac6fcdf072f8f96ec24f6c8e9309c77af833e0864d49406
MD5 b86c5f82b30895c778b26d267986a7e8
BLAKE2b-256 c9ebffaabb6377c5c6361bd701cc0322adfcf806966fafa521a58caa7897e936

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d069bb8b971c397c483455cfad654542976e37fa4f037ba07d7d28780f0c83e9
MD5 8e391ac9e1eeb80dbac0760e0ccd6306
BLAKE2b-256 5cddc03c071265542dfd217177ae5d045a90e8454ea92240bea9d33de6738690

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23fd77690ec0c423b72a78aff54b3cdb434757a88461ab44b92f018279fe500c
MD5 a0e6cc22d738ec04fcc221062ca4d7cc
BLAKE2b-256 acb219420f1626d19c48e89731603881ef2a90e4c269eca5ce65fd6b71a51802

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 88b71d3563b777269c93cb74555a014492c184cdb48bf051ddc68577e1e02a5e
MD5 cfca6a9ce560b48c64536fbecf304cb1
BLAKE2b-256 1c7308fc8a4044dbd336861456425634027ebc63e3b14738b266c73894c21aac

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 826257c233d148d2b23eaf55455470d35957ac9fc13b180a4099b94d4923b9ef
MD5 f466ce990d36222ad35802ee4e7c4442
BLAKE2b-256 e23a05513fe9c34cd1db5623249045f43efc5d07733a1425dbd3243776bb181e

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 57c962d6546747484cbd341bc96f261a97ddfa612f322dbcff5fb90be4f50b8c
MD5 8265dfa295a6bdc8f9e216b263477aff
BLAKE2b-256 89feb6c99f9c3e81375f15eb312bb00cfa3f04476988ecc6708035bfe1d22c47

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: bit_ds-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 184.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.4

File hashes

Hashes for bit_ds-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b1c3d29a66f57b7f95aa15518392b51e1c45ffa67c543b8bbbb203ec0d1a2e50
MD5 c626640646bb48be0085fd354ce864e4
BLAKE2b-256 d275da84f3b9683b821668e7557112cab94362ad32c67f47372d31fc9ab0aa7f

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: bit_ds-0.1.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 175.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.4

File hashes

Hashes for bit_ds-0.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d94a068863d9bae698e4b0c512a1c62e1d1b346312ef3167875f9e6204ea1905
MD5 200719e7e2d305cd4644b571eac87051
BLAKE2b-256 b63281113095963695723b7520fc4d8b386a08824b56eef587cbf2544602e584

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26a3440d4b419346498d912c44c26d2a22b4ae57b12659e51100b8b21098e6d9
MD5 d9d0e7cfaabad93e1642c483ebd02898
BLAKE2b-256 50a770585153f51b8dae8370000f24551ad7a88733f875939bbd4253ec7ab98e

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c7ff0ae3464894469c2c6de502c0ffaa51ee37054e4ccd8a443fe8ca0e269eed
MD5 f08ebf8bdf0eabab2729726dcfe1f91d
BLAKE2b-256 f9b521cac95054728352a5d2750e57b33c440111c4ee9a566f4ff518f6a89346

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5f3b20807b2d1d3b16c1b2edacafae362924e33e43d04d1a18a7c51877b35d17
MD5 464c9b00400b47e37333fde4ae66b883
BLAKE2b-256 773da823c6fe1ed1a918b778fc62b647c233c7b7942cadb2d45d5faac61ba3c1

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63295a6855c04c6e109ea2241dbe9013d2462c510e48191aca845fe058d55c6e
MD5 c83b46bbb0b70e37cfebdc657f65477d
BLAKE2b-256 f79c574c420709ac70963011c94f244ad2f47e26a2c04559a99712b96a461673

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25038ed0d8d084a00461b5e9a55aacc0ece01f81928327436b79fd182962e9df
MD5 9bbc194ae45a63ebf72f8c9f25a8c2bf
BLAKE2b-256 4cbf8fc20876ef9104c396787c12fe8f912d8a4ddae3972c9e9b0028eae4632e

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e1908c262232bf93d30ba75868ea4d2e439738f3a793dbcd73e972396a309bdb
MD5 e649567d2e74ff90666541aed6a9cc9d
BLAKE2b-256 5a54877512112045c47c09557ecc9150e5fe1e9f6a6fcd7781c6bcd60c352373

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f12af779299525e20ef12b5b5fd83318ad7c8ee4b17cebc575f211cfebb499c1
MD5 4d8f3ae9dacb2b42b2c30932154644d8
BLAKE2b-256 4a2f58876b00bd6f17e5b74206c3e5bf9231ce02a68a0b7758062a3346de48e4

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7a0a4d8059a07099a3ee82a7b9c5db93d7199112f12fb39b553e07b965a9c59
MD5 d4945500b903c827565dd671b1356fa8
BLAKE2b-256 2f881d37f63d715d68708beeb9f11ec894a8511da7c39e1385ecb7b5a14682ea

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36909fb0a5084317dfa47d28a73dee3bcb4fd9c52f43cbfb49a706a2d023cd98
MD5 139a415854e4622031bf7f710779e440
BLAKE2b-256 9ca674e388ce71692af31afa27651e481ce2bf52eb1539f6b06804f7d073ac42

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 866eeeaf71ae0b8c3306b38a22ada145d70ddfe2bb4225b33ffd31c514b7d353
MD5 d9163391ffd3024a2540337f7ebe0e6b
BLAKE2b-256 13c10975a89b07212e996deec28212fc880097ca552359bae8a38cb1cde5468d

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f973736feb83e3d88d16f70ca3262ce0e526833dae00aafe24644f94666f6f31
MD5 aaaf6b0cd760a779ee9fe9ac7ebb0601
BLAKE2b-256 6a77b04e061f687455f6a793871ff2e4837d65e5d4c153b0a1dd3c43ac6eebdc

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1cd34e546b7062fae47d2606b2b730373f0e494b33fd4df357db11899e47f037
MD5 c0cc78e2d2a9bd5ac27903e209299af3
BLAKE2b-256 04c6653a23a8dd79c5472024de4cddf54ba7e49e90bbe1825ec62100d165b6c7

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: bit_ds-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 184.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.4

File hashes

Hashes for bit_ds-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2968b38261e8ca61f75676b88760edd384623828a2d4ad3e2a2eb3dce2dbdcfe
MD5 9c93a922b16ecb77230c4577fda21ee1
BLAKE2b-256 d6be6175e8ee2eca2c309b060464393d528272e15f7d7ea5e9aaa50181fbbe11

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: bit_ds-0.1.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 175.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.4

File hashes

Hashes for bit_ds-0.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5f2d547db846cfac6ed24353f7085505b333812adcd12610868b20e59bdef8f2
MD5 95bf5a68da6055ac0fbacad47196f1b5
BLAKE2b-256 7c76f120cb6dbfcbf0af5ad62ce5bde87adc0360f5e378d125737cca6007a6d1

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ed8d99406f575f2b6ff7a8aa0955e90a6d747d1a37e617abd9d5cb58d4a2a9f
MD5 682d09e03067358b2348285c728d2e0d
BLAKE2b-256 dcf367da92e44314b34b178542012a17f4b88068496e34578374f55f9a916dd7

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2321dbf226213c6b1ab584d9fd9593e85c31dc858671990c26f9063d58a200b7
MD5 efd74ca095ef109560bfb5f7ec21c532
BLAKE2b-256 3ef95bb76ef54b35daaaab458bb451fb90edb0352ed27acb7b49f6a37b84edc9

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 122b4d4415212fbab1e8b2e7a74ced673f4e998f97b41efaee21bc9a1c83ad33
MD5 30681d1cabe08812d7057517aa839810
BLAKE2b-256 235e1bde4ad28885652859584685623c2bf6719c49027552c058aa156f5954f4

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b73b9677bee3ec0cc07beafac078a014cf8b4446ad45ba447b496b7f8f65d31a
MD5 3a781742313019606e86532c3ec0630a
BLAKE2b-256 57c51b99436ce4868946904fc483f885236ec987d1016f70017de2f4d2ff833c

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fed74bca539b2c4fceddc79d74729f8c9d01dc2f931762c97da18bfee0ef426
MD5 39ec8bac646895bf0e547645f1ccd33e
BLAKE2b-256 123bbd730d804131fd32216775d4718ad387dc5cec7a01db5c8949743feca17d

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8c35f11d5df00ed895081f7ac314c7c0bc6b25700840bc83e6e58d20cc65bff
MD5 fbc55484523d3c6f77eab9a1c36e838b
BLAKE2b-256 7606a0bac1a3abc4f385da660af851045e384e9de88be480c061b4246dbb52d5

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a01bb6d148e3ed45adf12e1d44870ca0c8d2e3552e170047cc08f7187e28dd2e
MD5 987212d2a6acfd2f2c1989d6dce02940
BLAKE2b-256 cd53ae9ea9080346bbc1360cc267c9d840e9f3f04fea0f5f4f1d8153ff456deb

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f27418990293e390de22b6e726f2e23bbe09887464663a50902f9757745f758
MD5 a37261e3929251b8ac376ed06ff1b535
BLAKE2b-256 6e924f2453ae1031a997a6b423e4e01460428e3d402c472d3bc78b70bd7f446a

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7917434f05eb26e88a7fea786e2439de44c496afd342d2c553c690af7ec1ca9e
MD5 cb915089ed77c2571cb257f87afa41e1
BLAKE2b-256 2e775bf784e90db345b826f099171dc619a4298b4f11bbe7c2b69c88726cfeb1

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6ba7c4e1870d167e81bae83c4f57ca96e437dc4e8c5274eeceec8b24d16efcb1
MD5 af368af51b51bf44f745f7f0b1eed8cb
BLAKE2b-256 b42072e5bd34c1b491e4c51a8e859ae481dc02f5744465569a5ebdbfd783672a

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be3565deb0ae540e08ea8cc148976ce1767c94090b78175a7e52eb25898be1b3
MD5 22b9b340cb6c95b8ed12142b850c3c7f
BLAKE2b-256 6b5cd6e2d75cf9b812c081f7b71c262dd86523046f99c111b2323635489ca642

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 815653a14034740de6021a301828df53408b87e3346edac94e876c6259497749
MD5 af2e353b88a5a9f26b9c0460d0892e68
BLAKE2b-256 f60860ff424b127498814776ca59c5dbb3cc012d4d5b91bea224607a324122de

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: bit_ds-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 184.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.4

File hashes

Hashes for bit_ds-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b5491470daa4dff88c6290cdfd18ab431231b52eea1b0eb45ce579921e5604dd
MD5 007707d0fe4afeedac066eb4839d337f
BLAKE2b-256 7340685833bafef57125bbede9146bf3d86b5bd194379e7d473b7f16d36908b8

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: bit_ds-0.1.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 175.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.4

File hashes

Hashes for bit_ds-0.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3b6fb207b207c64f3fac5a1c272148a48f9e4a1bb2ebc0b0fa76badb6faf8b12
MD5 316318375a0f4e3198f8b4a51a563554
BLAKE2b-256 aec4e0d0a4b37b1458c7028f7ad6215bf55bf67ad4d03518f2f65f8c4d55342c

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee4ab37f9cf3dde126bfdd38498b957444098dbc89c42d258de7e92bf2d285d2
MD5 790ad03dd4027a67151962ddcff7de85
BLAKE2b-256 a74591572fabd7878ae140be0c234d4e9c25437cd6e94cf62ad29083a654e12e

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 efce051a8f73b4eb8fcb302fb9cccda4d888ba1806ae249953129bd92cd99c4d
MD5 8c9032c7168f44373ec50c1a4a8b1311
BLAKE2b-256 2ef29573e952bcf4e6488f411280665b43cafa232c29aed715b128faafd8b9ba

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 21257126d42acb6a1bf48e0e928f5ebbd11344157695bd831f5ec7e127fb58ea
MD5 a0e6aaabfc58f755ce89eb4da0d87cdc
BLAKE2b-256 cf05ab8df2aed64a2f20f6692459e21a2cdf7c3401f4e57814ec368a2d5ec469

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 266af10a60741b2e76414927bdd5dc6d826051db9ea2fac92d283469cdd8d40a
MD5 9779a9bcc944bf6d708dd0ead7e7ff44
BLAKE2b-256 68fa2bd2dd01ca9b8e14576a5752cde6966f9fc1b909566e397943fdf3bc034c

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3020fed7f0007f87a781b1adac7ab701c7c63ede5b2982a0c71ed38cc50db7a
MD5 c5497079782720589d076018fa6bb77b
BLAKE2b-256 44a4d930ea2718bdd281e2d7a2e2c15796d1f4ba59476c9030217d98012135ac

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a703247b35f0cb4305244603c8a3ebb1fd1865ca7859dcc00bb471034dc4ec8e
MD5 fb63f82769c65323ca7c66dcedbf6f5d
BLAKE2b-256 195891557c229b769b6c87c921150a7d7db44411f3005bae8f8a04d99f29bd32

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4bd3563d0df4474c36859243bc4e052f976ce3bfb529e5a5b1acd139b76abbc4
MD5 ad2e2e061764e27a42398cfe56863f4c
BLAKE2b-256 215377c3b6c51954d1ef2b8d4526a38af28ca68ed4bd642941be7a36d5f5dec4

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e9791340c6bbb6db3caa48348e6e6e9dee2a5bff448deffc5324f145054a5e0e
MD5 2038e0fab75fbe7f9c2b3697a206d590
BLAKE2b-256 053ad36c9e3a7b21cec17ae40df15ce0ee55534b4d4f0f6cbb6d7abb93fd6044

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c931da5a918e837dbe26cc39f7468df46af001c42ba9c33a92ca61e65bf17cce
MD5 07d511e2135673c4c3adeac2d3126dd2
BLAKE2b-256 bc75c184325359e2b3845594a4ea627305b87a1e97874862f41b7d6b17da7ac0

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3b35989d7a019290cf2fbf97555cde36c0e16cf493073a7cae883499dab6f95a
MD5 b04ceaea766ff8a6236dd4698582f43a
BLAKE2b-256 6499c0a9390fe0169af2379e12892a5103a73de3641f696e5402628ec442065d

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: bit_ds-0.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 185.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.4

File hashes

Hashes for bit_ds-0.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4a1d78be453f4514b2a106c2536dd812626be08f3a8bbd0d70cdeb7e36b427c0
MD5 25fbf7c5965c4ac984464c24958c87be
BLAKE2b-256 3ee277293dd3e7faa093a44cd5c5fc9fe5ac044f37f12c8fa623422795e22af9

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: bit_ds-0.1.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 176.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.4

File hashes

Hashes for bit_ds-0.1.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7b87254e00e49b93d1c53b39c0748f783611ccfc45c0ad560e36e282f232271f
MD5 4315e4db2e7c81e5bc22785fdcfefaca
BLAKE2b-256 c3876e5c9e93f45b0cc0a39cca9d988db2dd3e91b89a143866344a0107b54899

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8215a8e86f4b10ff8e3d2e7b60953785d06a9c0e6d50585c8bc94f4869f5c55a
MD5 28ea13edcc7dd5a3884af2012d5be60c
BLAKE2b-256 78f03393a7d2cea094cd8d6fb2565ede1a32c90545faf61b03b7787f3f08c123

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61b1493caf2dcfddacbef221c9bc48b5bef1b9a6d88b8aa39e1ac3ae80a97117
MD5 027687823d1898856f5c4f0e87906676
BLAKE2b-256 fced064ec096b9d454a72501d0ed191aadaaf394fb164ba1bd5770429a8ebdf1

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dbedc63d9b4fd0a3470357164778af6239340a47dcd83e83e5a84ba9438dfafe
MD5 c71e2abd136c95bc16c6ea2ac2d8bc2a
BLAKE2b-256 ab46075b6e495eaa9ed7ef643b0fce4bb4121bc3b7f7bf8278f9ec4ef9630296

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa3ca5ec7e9776d8357d3659c2eed966b6b75414dce389209b6019d4b9d1da07
MD5 6e6e3e7f2285c858fe60c6d32f013144
BLAKE2b-256 4ef74e87b5ca0ce6c074061028322154ca18de3732cd681415b7452cc57ce512

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 924914454b2885678ad2184d24ba12336819f4a0ac2d9bd9e876970464636546
MD5 ddc8d6a51e3fd1df2399ab15de5e8d93
BLAKE2b-256 180b7107c3da63311e77edeed9f71dbf3e7dce8e7471182b2399b113025fbb8b

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ce74f450e487e851ee1d273b23b5c4e2f01f5f66385e9469c668f40b68aecae
MD5 95d6a1d8f35daf654b609a2ece26f454
BLAKE2b-256 23c10cbff004d6bcc0a8783b1ab58049990ded86352da5341f4e43d0ae5897e5

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e0265f7cf59125297c33a842be401bb0e8c858740f4718ad48c5c5db6fdb04a5
MD5 d296bec9c7ee1d0dd3648fcd65ed1229
BLAKE2b-256 512e7cc7b22564198efb7c80ac00c425077afb2c760ab6abd05b4707dce7250d

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f8d1f83a3e0b5778e3f8e1a99d148adf96e47ae39e4a61ee3700ec488650b78c
MD5 c13035ff60794ec32a0859bb370d6218
BLAKE2b-256 d76049b3297086e3031676c82f5fa704726792e46996e116c47f4dc29a083261

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7500626a8ba4527b37bc81cf472bc864a3f3d35fbd2c6f41bc0b79c9eed8f9bd
MD5 ac1847f8f50ebe7fce240664931564f6
BLAKE2b-256 caaec60289c145bb75e9ee68dd4a1c45f7619211d010e24564e712dd394a2e9a

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7255da5bb92e76c8492a7adcb474834765cd6a660c4d05a73322ad916b0f3123
MD5 96f2ba2bfbf58a3e1bfd1db47ed900c1
BLAKE2b-256 e230b1bfea1d0060ff60e018d62b723b34ec1893d5c84711b5e7709fbdd4193b

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: bit_ds-0.1.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 185.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.4

File hashes

Hashes for bit_ds-0.1.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 55fd1725f6c0d552653a66db1c3c2f5fc5828e6aed1f1e2cf0b3872e17ac80b5
MD5 193a0fef4a5d102437a8dabc7dd39d3f
BLAKE2b-256 55be03999c7ae104996dc7e444c4bce3efa140c24aa8d9c9fb38ed11ca95d5ec

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: bit_ds-0.1.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 175.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.4

File hashes

Hashes for bit_ds-0.1.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 249a9d163d764743231f9799787e7c6737fa7f88f9683cc878d703ef5c712c68
MD5 cc1e37b89b8cac623a77c031a029333c
BLAKE2b-256 01fb20ad21f0e1feaf8d56a17adc8d09f81d82b4e88e12c37d815dc308dee0c0

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c81ac03db9c118acfb7e6955193b269f1f73a0610455806c644c602b52e1576
MD5 49ead24c58e8cad9ea743b996afe8eb6
BLAKE2b-256 3824f79ed9315860fb43f87f367b6de3aafc2e9e702f3ee421c0f84953ceb479

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d02b9539050755697ef6b0a2e96fb8308330796a6389a6de48e21b0b6f739376
MD5 c38a08bd20385ad89d2a8b2a183fc776
BLAKE2b-256 aefc19639438c893d9572ef6818f4d3ed7f4bafd9873f105bc4438aed6ef50d2

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 106dae44beb01a88d3535beac5b987233db8cdce62a5c84af03c62bfaf0588df
MD5 79d1812e7fa3eefae894340e5af36b9b
BLAKE2b-256 c251689b12f86055aa7ec703e13fc5fd821b83e159fce6faa2f414821ff9a4cb

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57fef4f9b6bb6396dc3e5d54b9ed65ec902bbb6841e98537dfb38f17892b74d4
MD5 9f2acf910307f2f06fe5dcb1c7ae0a2c
BLAKE2b-256 fcbeb21c9a26bb893b12f90311ca8b10e92f29fabbdc4b349b5086d11892c79e

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e2425db5e2074d7d9f26449d536326deeb66775efb08296ae40c448f62258bb
MD5 7a629d7a885705aa4adafbef944d1d52
BLAKE2b-256 8130943bfd4ddf38486e169d6f93dfb45bc54cd0a4b407de6deb05f1565be27e

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46a97fb2542f34e09dfc71a9cf2d30c75a982223533645a9ae58cf7444ea2fd7
MD5 b4483a4d77fc246ea47f98e44ea41122
BLAKE2b-256 8c258c125efbdc79ae92fbb8eca80fa0fcbcf3480763c5466a7ee7709a463f9d

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b5d320cce55107f70172b2ac0a9572cfd42c6071e0c5faf3b3a4bf95e8853f31
MD5 bcbcc12dce2cc9f682e8fb69e74e75df
BLAKE2b-256 a3a0889d5b3b332d72e7c4e7145b59e3a7d9407d22aef2468fc4d2b7821ee3d8

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3d9fa967d3c0ee2f73e3bcc7e840faf0792cb908aba0a1733218d2f0327a8a5c
MD5 962719f5a90f8bc379aa0728fbeaab97
BLAKE2b-256 2bdf2e40bdb1d201c4a4d5139342e726d2c4ebd9b22639b46801d60ca12c42ac

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9acc9f20b86b67a2da3fa4d2f27ab276df00f781b9404e8e4b157da90d80e10
MD5 362d76d7716e106be119613484898e22
BLAKE2b-256 fdb199ffb73f983fe3f2b16f98d62d16a0a7ed101472d23a7a08f8b350ea0e4d

See more details on using hashes here.

File details

Details for the file bit_ds-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bit_ds-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 145dd3818f8381dcc54c97e75bae1a22fd7ed98dd0cc6821670393e871c68cda
MD5 a5a8e9914bfb56639ccfe88d7e0c23f8
BLAKE2b-256 9ecfdba90c47a6b8714bddb5c35a1b09c095c1f1bfcf9a9193e5e8a21512e057

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