Skip to main content

A high-performance Python extension for fast element-wise dictionary operations.

Project description

Redbear

Build Status PyPI - Version GitHub License PyPI - Downloads

A high-performance Python extension for fast element-wise dictionary operations. Redbear provides a minimal, purpose-built RedDict class that delivers significant performance improvements over traditional data science libraries for specific use cases involving numeric dictionaries.

Purpose

Redbear is inspired by blackbear and builds on the concepts introduced there. By moving the implementation to Rust while keeping things as simple as possible, Redbear achieves far better performance across the board.

The library is designed for scenarios where:

  • You work with numeric dictionaries (string keys, float values)
  • You need fast element-wise operations (add, subtract, multiply)
  • Performance matters more than generality

After heavy optimizations using PyO3 and Arc-based internal sharing, Redbear achieves excellent performance while hiding all the complexity from the library users.

Installation

pip install redbear

Usage

import redbear as rb

# Create a RedDict from a regular Python dict.
data = {"a": 1.0, "b": 2.0, "c": 3.0}
rd = rb.RedDict(data)

# Scalar operations (creates a new RedDict).
rd_plus_5 = rd.add_scalar(5.0)  # {"a": 6.0, "b": 7.0, "c": 8.0}
rd_minus_2 = rd.subtract_scalar(2.0)  # {"a": -1.0, "b": 0.0, "c": 1.0}

# Element-wise operations between two RedDicts.
other = rb.RedDict({"a": 10.0, "b": 20.0, "c": 30.0})
result = rd.add(other)  # {"a": 11.0, "b": 22.0, "c": 33.0}
result = rd.subtract(other)  # {"a": -9.0, "b": -18.0, "c": -27.0}
result = rd.multiply(other)  # {"a": 10.0, "b": 40.0, "c": 90.0}

# Perform item lookup. Note that it's up to 2x slower than Python's dict item lookup.
data["a"] # 1.0

# Get the underlying dict back.
plain_dict = rd.to_dict  # {"a": 1.0, "b": 2.0, "c": 3.0}

Benchmarks

Run benchmarks with:

pip install -e ".[dev]"
python -m benchmarks.redbear_way
python -m benchmarks.numpy_way
python -m benchmarks.blackbear_way
python -m benchmarks.polars_way
python -m benchmarks.pandas_way

Best Case (keys identical)

Library Operations Collection Size Time (seconds)
Redbear 100000 x 5 10 0.056
Redbear 1000000 x 5 10 0.583
Redbear 10000 x 5 1000 0.015
Redbear 100000 x 5 1000 0.145
Numpy 100000 x 5 10 0.285
Numpy 1000000 x 5 10 2.436
Numpy 10000 x 5 1000 0.039
Numpy 100000 x 5 1000 0.371
Blackbear 100000 x 5 10 0.371
Blackbear 1000000 x 5 10 3.755
Blackbear 10000 x 5 1000 3.643
Blackbear 100000 x 5 1000 36.307
Polars 100000 x 5 10 1.072
Polars 1000000 x 5 10 11.147
Polars 10000 x 5 1000 0.132
Polars 100000 x 5 1000 1.219
Pandas 100000 x 5 10 13.466
Pandas 1000000 x 5 10 130.837
Pandas 10000 x 5 1000 1.339
Pandas 100000 x 5 1000 13.432

Worst Case (different key order)

Library Operations Collection Size Time (seconds)
Redbear 100000 x 5 10 0.561
Redbear 1000000 x 5 10 5.432
Redbear 10000 x 5 1000 0.283
Redbear 100000 x 5 1000 2.842

Development

Start developing with maturin:

maturin develop

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

redbear-0.1.3.tar.gz (22.7 kB view details)

Uploaded Source

Built Distributions

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

redbear-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (494.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

redbear-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (525.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

redbear-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (561.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

redbear-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (460.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (289.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (424.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (290.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (283.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (306.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

redbear-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl (491.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

redbear-0.1.3-cp314-cp314t-musllinux_1_2_i686.whl (523.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

redbear-0.1.3-cp314-cp314t-musllinux_1_2_armv7l.whl (560.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

redbear-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl (456.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

redbear-0.1.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

redbear-0.1.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (415.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

redbear-0.1.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (289.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

redbear-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

redbear-0.1.3-cp314-cp314-win_amd64.whl (143.0 kB view details)

Uploaded CPython 3.14Windows x86-64

redbear-0.1.3-cp314-cp314-win32.whl (135.3 kB view details)

Uploaded CPython 3.14Windows x86

redbear-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl (491.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

redbear-0.1.3-cp314-cp314-musllinux_1_2_i686.whl (522.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

redbear-0.1.3-cp314-cp314-musllinux_1_2_armv7l.whl (560.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

redbear-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl (456.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

redbear-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

redbear-0.1.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

redbear-0.1.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (421.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

redbear-0.1.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (289.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

redbear-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

redbear-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (302.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

redbear-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (248.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

redbear-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl (253.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

redbear-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl (491.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

redbear-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl (523.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

redbear-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl (557.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

redbear-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl (457.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

redbear-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (304.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

redbear-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (416.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

redbear-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

redbear-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

redbear-0.1.3-cp313-cp313-win_amd64.whl (142.9 kB view details)

Uploaded CPython 3.13Windows x86-64

redbear-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl (491.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

redbear-0.1.3-cp313-cp313-musllinux_1_2_i686.whl (522.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

redbear-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl (559.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

redbear-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl (457.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

redbear-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

redbear-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

redbear-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (421.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

redbear-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (288.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

redbear-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

redbear-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (302.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

redbear-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (248.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

redbear-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (253.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

redbear-0.1.3-cp312-cp312-win_amd64.whl (142.9 kB view details)

Uploaded CPython 3.12Windows x86-64

redbear-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (491.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

redbear-0.1.3-cp312-cp312-musllinux_1_2_i686.whl (522.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

redbear-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl (558.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

redbear-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (456.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

redbear-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

redbear-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

redbear-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (420.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

redbear-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (287.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

redbear-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

redbear-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (302.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

redbear-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (248.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

redbear-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (253.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

redbear-0.1.3-cp311-cp311-win_amd64.whl (145.2 kB view details)

Uploaded CPython 3.11Windows x86-64

redbear-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (493.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

redbear-0.1.3-cp311-cp311-musllinux_1_2_i686.whl (524.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

redbear-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl (561.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

redbear-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl (459.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

redbear-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

redbear-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

redbear-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (423.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

redbear-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (290.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

redbear-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

redbear-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (305.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

redbear-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (250.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

redbear-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (255.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file redbear-0.1.3.tar.gz.

File metadata

  • Download URL: redbear-0.1.3.tar.gz
  • Upload date:
  • Size: 22.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.2

File hashes

Hashes for redbear-0.1.3.tar.gz
Algorithm Hash digest
SHA256 7054cf95db558337255cfa7def89e9ba2f201844eeab3a7a8d3c1afa4f76152d
MD5 c678b6c748f54f4602ab63435d673af2
BLAKE2b-256 ae04b93e4e858b0e56cfb755fd05ffefde1c638ca1f3e1f0fb4aa2c94ed79b07

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e34e2305930a41c6b190be32576df32c5a37ac1682fa2d82b3b8858d29df6c7b
MD5 d171dcc917005837757cca4701e11772
BLAKE2b-256 0f8b922024675e46af5561e32d630d53a333a9fce39025502aba0ccb1c26323e

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5e739a8bd15eebb7aaf8ec871c7e9a5d339585512a48d751184e5e09b1a6c4a
MD5 57d31819d6d7312726947b9974016f67
BLAKE2b-256 ba9586645f0514167dea8254d162abfb975d5d9158c24cf73d9c0387a6f71783

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c026386e90142098a11ea73beb4f0afa333de8b72cd45287115fcbc6466613d5
MD5 9cd7ba3210909a3991506b5eee001a78
BLAKE2b-256 a3b4b1b98c2f0a7076bb55b788e6cfce7f6858f6e7a83aae3d059bc2f340bdcb

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bab01ffd459136dfd40395b171a5484f700ba4326ba727caff9760ea18dce401
MD5 640be587a67e5e7186e085e7ff530889
BLAKE2b-256 4b350c71bcb07309b4e7e562e470518b97c69822a3cd27a4cf439abd46a7f939

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 065f231f73fedb321c3ca304f856a27ecf049e5039e73be223bef5d2babc55ae
MD5 611cc87495c32aa24bd639927a10333c
BLAKE2b-256 961abd7513177d7e83c1c77d58554d0d1351c8862d43cc5437ba1c1a39cb6a94

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 81dcd0370037d49a4ef7c75a1bfed4abcefd123fb1cb4a4dec0eb6ee781f6607
MD5 5619118374da76f0b7e89cdc4d305256
BLAKE2b-256 886d800e4dbca4e88fd663f89f44759ecdc2dee239a327617ea51864dd58dcb0

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9a16bb75eb25e640cc1a68033b87426160ea41b00d2235bae906a0368013f814
MD5 39f18f8d0957fb305508576cda953dcc
BLAKE2b-256 0b73ab9d3b195e667786dbf959fa389be93f6dc92f9fae88040f99687ca6bacc

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb3f520215bebf33d8ba5311f7e0bd66aeeffbf01323ebb0ae159444a38bfc56
MD5 e283afeb1c50327e981ed3aa1f5c2a0f
BLAKE2b-256 0c09ca823959a9d5951fd765108e1f9339341c77bd02ddbe9909ac3d158546c4

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fce81b4887d731385f0e8b7fe5618b8cefb35f0c4e29e51b8b04fb9bb38f5137
MD5 733c3ec14c71cfe78110b2c76963c21f
BLAKE2b-256 2f79b534c91e5397e9cc549cd0cc2a0ca43dbf7912040f6ff4a1515f7e13ece1

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0a9fb0a2036d03ec5c225b8e4d1e51755013c17946c25e97487e88bd9e1c42fc
MD5 ef5203c2962157d69ce90c46857f9ee8
BLAKE2b-256 352c93f0bb55b41dad9eeb326af30efb53b2697c072ab6d17a246ab5dc3effc7

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f936de4c545d5848bc9dcc7a2c6baf068eaa9ba9afd772adbbe3cfb3de41488c
MD5 3d7e684838e9da61a0595387e2c42bb8
BLAKE2b-256 44b9e5420531bb78c54080dc433b1be12b68e1f0254d1452a8d6e6b4017c769e

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 112020486fb81b2d806072d513fbcd817814846713170f5d645137d82e370988
MD5 8d6d235f773fbdb8d13e94406f021413
BLAKE2b-256 7897a372e2b3104f2ed291b45102b87698db2ac7b5677af9a0c1824289c7cd73

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b1a134fa0dc5fc5bb2521eed86e9fc4bbe93aae944cfa321db9e5d4797b28f67
MD5 b6b7af2cd0ae6d9fbb65a5dc2962b5c3
BLAKE2b-256 0e1a234f5ea31835b71bd268bfa5cc4ef81c669cfbfa7ee36a8729d004ba696e

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 94296e1ce0bbbf7876fbd20347c4ab001e7ad437c1489111194c5e6dcf7c26d0
MD5 d226004e6605fdff3e39be4a90d58b58
BLAKE2b-256 566ef79328aabfb2086440f6d7e2fe8a62b5f0da3ed1fa7f491731072e06290a

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a3a3125299b8039d66ae492a3c336137025280973749a2537e6aaf130e856c2
MD5 9fdd54e0d5adcff1f7f2d171d33215e0
BLAKE2b-256 c36ffddf78e37811b05ef7e4d4d8b5051576fd055429e8f61cc98e290b129c8d

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dba95608bdd9e4db86957fb6f6319cb03e0d93eb8beb307406b056e543bc04c8
MD5 a215b88599862bc2615daf1f6c9e29b7
BLAKE2b-256 8d027d3f3c5d3067b21538b2b21fd84239aff9d8e26a415f5b31ad6a531d3765

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f17864ad942557ebd16414e83aa017b43fa99042ea84c45e3c58d8f756502342
MD5 677481eb3e94d7e7bb1801a339f0b151
BLAKE2b-256 20fada41ed88801d0417756521b33992e020e77f6b0257e64f48a8fa9a2ece11

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02042e34b2094edcbdba6f20a6cc03c46b0c87613eb1002d6c994981f3700182
MD5 be8f41b5062c1f7646339d68524ccbf3
BLAKE2b-256 ab0aa74a4bb88ebb827feb6877dcfc6b2c776bd97d94a8f968551baaa6a1eb7a

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: redbear-0.1.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 143.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.2

File hashes

Hashes for redbear-0.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c83ed9bfa7fa173e7576a712fcc1c686e7044af30e23af04bf0b99e3b2872977
MD5 cfa480baf79513a568877f6a1bb1d579
BLAKE2b-256 f46238e2546dd090e9ce4c96c6ef129641481b0254dbd6343512f313df60c1d1

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314-win32.whl.

File metadata

  • Download URL: redbear-0.1.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 135.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.2

File hashes

Hashes for redbear-0.1.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9f2f1dff5c88f7b6695c7113bb417f9e3368a47896d25ba53143537c18bcd6f6
MD5 82ba9ed2399c865c19fea494bb34dbe4
BLAKE2b-256 e5812df593dd7427ab827f750c1220b7db9a3e3612403418339e12880e5c37f3

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b63ee96d1ee47862da69ba727a044080e6f1cfb8f5d9f7cd153c763039ff0931
MD5 3505a59ea4de8b43c7823cc892e19c9f
BLAKE2b-256 4c22cf522266956d5e15fc9407a1ba4e9a36fe8d326802ca11801580681a345f

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5b9a0077c53cf1a933d02769112fdaf168ba0a1be7a443fc3e69f901eb0bbd12
MD5 92f967ec3701ebac41c6c6fc9d1ecc61
BLAKE2b-256 2b3003fc96a595096568c17962bc34880421234f6812607ad0f29fa78a62b8ca

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 21cdc7c0dc27099254ef55ac09f5f94d1abc2b155ee59c9a862e5675f2c25df9
MD5 2616dfbb6039b559b8d647a280cfa205
BLAKE2b-256 d1a02395b7abf7cf5419d031f8e132a4aacf0c4f95e4c8c0e4175d0216033bc3

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3de46e3f46aaeddc15b6441059ed092c93d84e2dc2cc97460a81fdbc05ec65e5
MD5 0702e4733b29ad660d8b4482c4a7db9d
BLAKE2b-256 4c7b52541cead58eb1c9735e93dd7cc04820158a2b91ec1adba2a007ff98651a

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a662ace59f6adb36ffb37c34531683ae340e5e0517c5ee63ded035de9154457
MD5 50e6fb0de89e1363f5eded0066d4ab93
BLAKE2b-256 5329c2f3d645d0a866a8fcd70ffaf85b72c30baacb87e589df10f937aac85039

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 27c4e15de6d5eb519191560589998bea6bb28448678edac77c0301b3719cadac
MD5 8b2bc75b22f1351688cbd046691235a7
BLAKE2b-256 f8a14fe426cefb2bcc80e988b3c95ff0ed3b442ab79ebcc90bc699c9ce91e125

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 529e1eaf129b2da65ef26c0fc73838dddd8571ab387d66bf7362ffcc1e5375b9
MD5 6aeb6b82a6ad6364681c9ccd4d3e4e01
BLAKE2b-256 ec20bbf153d59700ca00f2d7582e21be56c99805dfd55b53d0e09b441582f483

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e76fe96594daa03336de3f564665f7f99713e7104ebfc066515ebcbb0f33592b
MD5 c910ef7aed871077991a91886ade2b54
BLAKE2b-256 e9164a7cc82aff4037d1cbc440047b97af866a2139aaac818577285a964bc709

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b3fd6d730824332b56edb0a32ce451211a9c95a38ff12a0438991f38a10bca6
MD5 2e6afbc576355411530072a0e6c5a8b1
BLAKE2b-256 e460a20ba1dfb42f706b7f5408bfa770691a917aaac53e82c4055f22a9f67ba9

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 13382c3a1feef91ad557f49c1ae11aa73f2b12e0cc8ef50138d42a825dd20cfb
MD5 d5eabddfc15a2c91ad973373741021c1
BLAKE2b-256 cfdeda9a7283a398cee00f0c8b11d84f3b7dd0a2956aa027ad3bcf553e7dace9

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccc0f3248d9afd6f123e7feda363ab173d2bd405a05ac8dbc61318739d39be0c
MD5 464ebb9afb33ac3a4cc17d11a9016d32
BLAKE2b-256 9120a0f77edae7e8f15a771f05625b675e29e9a73b5c5bbf9dd1afd8a9fe5da9

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 928ebfe0a9fa86577e1f0a03b6f3f951ea52f1165be3c716484dc497088bf8cd
MD5 2ae9f7ff47ca82f5cf74173636758dab
BLAKE2b-256 2c653be8d3137c1defe20b4fb825084d7d5ba68114d10fce77e7c25d14db4bf7

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e2c62c3e766dd91a94bac4d95d71df5a5b01b2a6b1ee942a8b1b9959b36f61e
MD5 4b4ff1951153984c05a7aa36b4f9f501
BLAKE2b-256 a15984a013ad3dc6c1ec8ece57fc63aa7bdd15242fce63a7615c442e9d2b7d85

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 efb11edbd9ea4dfb462f30cc8620e68fb223c1682d2c906d429b36f1a6ee83fa
MD5 058d6a8a5ef4aa9722c7d252948329cf
BLAKE2b-256 1440177f03b08a9bfb4b6e6eca0b157568616a868c450f5ca5faf229b24ffdce

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ef2976b74cdc76b6e5fd353a6708db29dea3c971751d689e4cface93f9471365
MD5 8041cffe42799c208a490f767aead66e
BLAKE2b-256 823ff843aa69305affa601750e3037bbaa9067b3fa3aa596456c7a78fb4e28f2

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74d92040dd554ba2492f317e25a0ef55d7418a30170b322c7f9b9339dfa3edb6
MD5 6a650d6bf089b79fdcc068f4bf818e39
BLAKE2b-256 d257547184a5868b38eb3c101fba838bfb08eeec480b37cba0dc7eb3d16123d7

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a595c9d8e68a82108272d2a5c7a93a5fc5744f0af90719113b61af753880de4
MD5 13343acef13583010bd9d22c6e495c6b
BLAKE2b-256 d8ee0e630d81d04a9972b7462d17f456b4aa97d09ee47dbcc0f969e73cc43ed3

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4da041eea495f7adead3d772fc647bf43ebf26875aac958b374a4141b8a853f6
MD5 c72ae09d074700f10cfd65ad0077049e
BLAKE2b-256 b40fad94781b6bde2462e08fb84473c649f7bf546943b130db8b199ee7b34f37

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a347507ec3b763ede6da7eec2ff1870fb49cecf0f0d385dbd016d23f006fb592
MD5 2dc69a139263b6e88af103908a2aad39
BLAKE2b-256 0c55001a8bae6cd0903ed446c02ca9434e41cfac3b3132f40cf9a7bc9d130def

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fea14e53452271adf9e95c3b97173086f5da4b3c74c272002ae770b90a3d8ac6
MD5 11a2ef714bd3ee2c8fb4fed42291a975
BLAKE2b-256 ecb491987e55e14350dca74d917258c7939f8777fbb59f656dfa871e8b82da8c

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: redbear-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 142.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.2

File hashes

Hashes for redbear-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 565564d536177656d6b557e8e6c4f50f3bdf89159cb054077747638554916df5
MD5 b3c22b0f5dab9d58423f1a0152b8dae4
BLAKE2b-256 3041b4f1ff3f0321f427d2fb2e90e4bd0ace229e41c83f36d68ac3f08cdc27b8

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c9cdca7b790458df00bb4aeab45e7de7b2475bd98ec0d103e9c011fd76b04fb
MD5 384edd58d903d4fa794980ddaa706776
BLAKE2b-256 19ac15d4af26cc7efd911d081cb3e87d97e9f596f5ec2005fac31c30571021d0

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 348a6cc5b57c67ff858689ec31cd19c57ccd5766e24e11de22a642f5510f6b4d
MD5 5ccc035de0d31644c4fba659ba5203ad
BLAKE2b-256 8b0b9cb8425b05d6dedb0b0dbe99d5e959c72becee1c6d9b98044a957d583879

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87bf425398a17da0e1889a81e1b2039c4abadd40f5fc073bc96ca8e90d5d7add
MD5 9fffeab10ff5f1a58ed03ea4097afd73
BLAKE2b-256 1e377e1747b4231fcc176cd983b4c1d7aaa9fbc5faa5cf83a2867706dfc74eb3

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ecc597520edbf73119f07f3ad6aa4f91749d7a93da0ed0a69e74a9d55dcaf44d
MD5 2d7ff922ebb78c7da4d2322617f0fd37
BLAKE2b-256 4843abc32290092435e7e1b096e6b27eff6b1b137258e41fc6b1a2252c549b9f

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94b453325b4102a7281488b9b015f56ee750c25c16ff19ecadcf10174686105b
MD5 64ce0577207ebaccc0b17f3aa6e31eb3
BLAKE2b-256 3db158112fa894f3ad399e6f2ec6a26fc81df8e2d9a1f45411908c7fffc5c348

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c30692796ee12c1c28076f8483b7ebc9f5cd3d9b5d2fe7f2b95eacc6c54a36f7
MD5 bde2f37fd2582e86e86e4835c4478a53
BLAKE2b-256 27d0b6be7aea887a49cd7ad8b59fb8b806bb717275dbc3732515a407ec356686

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f30d677f42e94927744caa9339641c4518dfb4f05f2d2062e6b6618881ce4689
MD5 ca1d9dde28612df4e5e5b8162f6b3d4a
BLAKE2b-256 2e1743d434150524963a69de60e232359db02b9c116a11d6bf8ac155b1f5ec50

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ebdc0a10e1c3bec5abd2997c60f8dab5ded3af2e2b667a31ce565feaf4857b8
MD5 3e5801aa9b71a59b580147494d7e8fc9
BLAKE2b-256 518acf56165a9da31e029afb58667d33eac55554ed4534b0417a542ba780c937

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8b2402408865cd016ffc2e1cd1264b30ec77873f071ce9b948bfcaac77d4ab8
MD5 a37721b7b4058a638835ee0754c27b32
BLAKE2b-256 1f5cb3e6de09c819543ab0e84a2db2c29d18aa546429394f82c28759dd45e924

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 62c3e6df0c78cd2fe1b0b2a13d9dd3df2e7fe3f9a904da066aa7c45457b6d505
MD5 5d9bae11d3742845c8f7f3c65a672504
BLAKE2b-256 7190e2877fe94c882e9d9ba755cd8a51995c6a0809ee111cdaa7787b82a88cb1

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 769fbcbdbd109d327bb6c529c72c9b8ef9b541588b5211e84a3b57378768f3f3
MD5 6a496f94b19bcd81fa5e4164fb6dd879
BLAKE2b-256 9bc18c08386cf06e0a7e74273397a53141e4ffbcef6117248a673c67449d1e5f

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee941ea3254cb759a6ffc5ae69ee3a966269a8c757c04229e2c5e9049a613b76
MD5 80fe9e6c6bdf14bf0ae868cceb63ff71
BLAKE2b-256 8708c560966dead86993af25f6fd3c9fc50d3e00b71f4a3f83fe09b671de0e4c

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: redbear-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 142.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.2

File hashes

Hashes for redbear-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 91e55e983e344da1ce5e9ccd3fd932d08629fb8c8dc058eb3c60880905f41f35
MD5 bac903a105e8d26368b6dd9089bfe434
BLAKE2b-256 7ca050fff4ad4a0cf0a791d62310e5d95165718274d230175ec76210a57b9220

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25e1ff43265683b9cbfee759909a72dc34200ba120f220a91492e581e078d837
MD5 763ac7d78022f0ee4a27358605af3923
BLAKE2b-256 73e59eadde271c767d490001d0877c4ff25029f48b58e8608721a3452f8bef26

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f7653cfda0478b9687023565ae40acf1c7153adc934e166e75c591c29dfd378f
MD5 7d6313450a062b9ddf63eaca76a244ce
BLAKE2b-256 b1dd7764db9065bad9924ee75392a90400e1e57ea3d022af41a5d6640d7be678

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aa13daec6dd3444499a98d60c6f46d6d3bb9007090a049feb21421b70503d946
MD5 dc8d3618d400551171a5ea6a2d776c69
BLAKE2b-256 fc0f54ae7c6c917b6967f738b68fcef84b83561060e0581172db60ea362ae706

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a5926c59f9a6c6322f4573bb52df7d277d687e97af2fb40b9cc6946ad510499
MD5 57180a2ef711a9951eaea88019a7a9fc
BLAKE2b-256 a0d0e91e32741c866855c6ad8ec38cbaef1188b72d2173a03fc7d3fe49ff33ae

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 006fff1e8a48e9d77f68aafd3eca8aeed803fe09b72c58e476f2b3ab5543b4ab
MD5 d4bea34a190abd56593032fd8f95edf2
BLAKE2b-256 d46c66e02fa0dc8f9845e412509ca6d9c7aee171615d6f21561c21903b8f8a9e

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d2d0b0a10e99130740291c0ce9d05c6d3cac0f907bb9f9b17d4ea05b8237a40e
MD5 43cdefde5fbedd1e6e0a5cc1fef93a6f
BLAKE2b-256 92128578b32c87837ebb82ed0024403faf90e6528a6afe1cb404422f29adfdfe

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f31ad493514c1cffbd2ae7ab34bcc6999e41ecbf974cc1ebc149372b4556a920
MD5 ebe5819f4b1e5ec611f8fd8e817e1416
BLAKE2b-256 1b0568a875921016acf5999ee93d0550182337383b0b0be13be9f5b13e20aa9d

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2e544f41b56efce3886b2521c57944e170976b5b3740159cecb6a5f7c8189181
MD5 5800a9be0ee0100eccf3ebb605e394be
BLAKE2b-256 c2be6b40a130a3a13002c875ab16ea394af1cfbca754baa522b8c650ba31bdc6

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d758ac229c5f9b4cd0339a9f8ccce957e4f0e66ab2a09f9c6ef5b6a371792f52
MD5 076e1cd3711def9aec83548d52bbeda8
BLAKE2b-256 72a9d3685796ac1c5b81d859bf379fa8cf4dd05309c37ceb8a07d1c0bd3b0ba9

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 02dbd73f904226bd9f0c346d231360b585c746bff88c2cc2630fad8aa2ee3986
MD5 20b7cc67e0b399602b30be6302ad780e
BLAKE2b-256 39df95e2222e2e53fcf592a23b055b656bee675341c1bb18f7e4bd3e26b61d6d

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb4d2da4bd7d76749eb421007f2298f3624125fdfa8e460c7ea7633a8d67c364
MD5 eb0cebb942f4933469a45f25e8556f80
BLAKE2b-256 26bf43d76366ed661e4d3004cc27ec1f9498d2d6e755782da9e0851f37d397a3

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 139a975f58b40e897e1c8352cd5e5e763234bbf1b5bb03ab50cf67b5df8e2cbf
MD5 cdae6df992fc82fffae800de631d7c19
BLAKE2b-256 a03db0869218dcd7e89873e1a1422cb10c79a2675178adfc36204fe6c30c3f42

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: redbear-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 145.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.2

File hashes

Hashes for redbear-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bf358bbecd1769433e2cef43f360255d7ff8e15d4dc81c5c72fa57e4679711a1
MD5 985ffe708ee55e42a0e4d67422de4173
BLAKE2b-256 c0dc998319d8dd23632683e8a97e0c1158549198198bbb1a710f5a181a1dd641

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb259a6bce9145ada2206eebc5a36f05a29838a072ee4caf1be01702a1ed6f37
MD5 40c587180e990b26264dbbb994b09d71
BLAKE2b-256 2f420c9d523fcc8d8b7d7e45a246f6aa9cdd9c7694d6938213eefd0852bccd47

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 196684142cc8d4e3d719233ed7aa03caf06c6fc352c9b5491afb8fb1c93eede8
MD5 8cdf27e74a515058df805f27ec79b507
BLAKE2b-256 cf4edd84f8a6564f742767bde9af55995110dd10d994a15c207b9c0c2807a2cc

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1bca67ecda78e31225530ea5faf7b46c393dcbec5d22287dbd0da8d0b972292a
MD5 bf482a11d4c29a64b5b4c2e862d8de58
BLAKE2b-256 4d7e88d6f540a9978de72a0f6237159a1c5614c97b7bfe9c8172cb87fc7fdeb2

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d920bc0555a21a3c22bc44e2c2d1b20c9162b45e00373bd90a8eea11e32f88c2
MD5 5a31698769596bbad50178a48b63f93e
BLAKE2b-256 40e09ada933afa148eba880a37267ffd7e27bae0677fe9bda32cb9f1892df4b0

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3712a3ac78152887618bd4a3b0c4955b024059058cb1e9ccee8eb5cdd7bc1d9b
MD5 724b910f646ef55694fde561c736a3cd
BLAKE2b-256 6a0346c27cafedbe2070a9447ffd8c180daa10172110d45b109beccaaf7c6e17

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d0d30bfcacd7a10762b9169d8a1ebda073b3763393612cb282aa6620a7e5fae3
MD5 af988067c4437a0f0725ae200d56ff3c
BLAKE2b-256 a5c82e4ceddd93edca9fb2b1a634a2869f96b7d05f5dcb726fac6c691255da3d

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 207b426a3ff14d7cdfb486bef16282974ebba9ad0bcd5d207cc443a31c018c5e
MD5 201a11faa4df3b53c544d7b92e9dd307
BLAKE2b-256 e3f2afd7eb31a42e85982d5a95e2deb3942c142c310f23c95fd6c5e8975b7518

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 41b70eb57c9424e66e7f1f5276e517f70929b929b296179f5679e00aa7bf6981
MD5 ef067f559909537179b286e3ce755549
BLAKE2b-256 e1a8384fa65b10ae7683e62cdccb1055cff7fc30af5258ac3c6ab8b5bc28d750

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c62c3342522258ecb59dda1b9abf8474be1df4adc1b2598766e562babe6a2c1
MD5 3bc946067f47590c4fae96087974611a
BLAKE2b-256 5f858cb9d792e07ebd0641ebbc2ee12dd02aa169828b9dc200832178bf4ec79e

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6582f071f0ac64aa717ac4776bcfe3f07b344dee4d2855d89bbc04288704dffc
MD5 4cc478cc7df87aa9f918f437772bf4ef
BLAKE2b-256 1cb5342e5c5fd384d5ea9fa9531b5addf711dcb41409ff107bbf29a9b733d70d

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29fb13d13da4a2eef38c3027532cea99ba7eff00de5fc9e5c6b99227e2ac9cd0
MD5 e3fd75a85a785ad89dbc510facbb5af6
BLAKE2b-256 4b838be7a887e68a0d3819293924fe5883f29e43b9ab9262cc45d520f8e4f452

See more details on using hashes here.

File details

Details for the file redbear-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for redbear-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d83e6523e68411858eba7a2390122f9ffe4f214276293bd78f0914f75c3fd6a6
MD5 4294e852667eb6a889093108a4850fe5
BLAKE2b-256 66d39606d7a9f348449bc1d568ccf73ef41f85587b5fb214680ca17cf0df61cc

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