Skip to main content

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

Project description

Redbear

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

maturin develop

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}

# Get the underlying dict back
plain_dict = rd.value  # {"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

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.1.tar.gz (22.4 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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (494.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

redbear-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (527.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

redbear-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (562.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

redbear-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (459.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

redbear-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

redbear-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

redbear-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (422.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

redbear-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (291.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

redbear-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

redbear-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (308.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

redbear-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (492.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

redbear-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl (524.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

redbear-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl (560.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

redbear-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (457.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

redbear-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

redbear-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (417.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

redbear-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (289.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

redbear-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

redbear-0.1.1-cp314-cp314-win_amd64.whl (143.5 kB view details)

Uploaded CPython 3.14Windows x86-64

redbear-0.1.1-cp314-cp314-win32.whl (136.0 kB view details)

Uploaded CPython 3.14Windows x86

redbear-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (491.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

redbear-0.1.1-cp314-cp314-musllinux_1_2_i686.whl (523.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

redbear-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl (561.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

redbear-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (457.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

redbear-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

redbear-0.1.1-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.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (419.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

redbear-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (290.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

redbear-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

redbear-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (304.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

redbear-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (251.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

redbear-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl (254.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

redbear-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (493.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

redbear-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl (524.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

redbear-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl (560.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

redbear-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (458.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

redbear-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

redbear-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (420.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

redbear-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (289.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

redbear-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

redbear-0.1.1-cp313-cp313-win_amd64.whl (143.3 kB view details)

Uploaded CPython 3.13Windows x86-64

redbear-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (492.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

redbear-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (524.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

redbear-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (561.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

redbear-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (457.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

redbear-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

redbear-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

redbear-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (420.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

redbear-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (290.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

redbear-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

redbear-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (304.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

redbear-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (251.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

redbear-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (254.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

redbear-0.1.1-cp312-cp312-win_amd64.whl (143.4 kB view details)

Uploaded CPython 3.12Windows x86-64

redbear-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (492.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

redbear-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (524.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

redbear-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (561.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

redbear-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (458.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

redbear-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

redbear-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

redbear-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (421.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

redbear-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (289.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

redbear-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

redbear-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (304.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

redbear-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (251.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

redbear-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (254.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

redbear-0.1.1-cp311-cp311-win_amd64.whl (144.9 kB view details)

Uploaded CPython 3.11Windows x86-64

redbear-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (493.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

redbear-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (526.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

redbear-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (563.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

redbear-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (459.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

redbear-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

redbear-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

redbear-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (423.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

redbear-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (293.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

redbear-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

redbear-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (307.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

redbear-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (251.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

redbear-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (255.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for redbear-0.1.1.tar.gz
Algorithm Hash digest
SHA256 0119165a6d9f28c5071a01dddb1032aa58936fb3242285c88db627bdf41fe7e0
MD5 2b990ef2a00a732aa30cf1d8f94ba8b9
BLAKE2b-256 0b3514bd60edeb7ed3cf8d636606dac4aaa1a750d35d401db1efc075c84bdc5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68e425ca4f72f8ae8d1431b4264c2d4a5cf574255b4997037185fe8aeaf4449f
MD5 e48055df0d1430cf4d4cf2b36f885207
BLAKE2b-256 7aec6dc0ba842916f40ad070c1be10a183b24a11b5d88125e147b98ffea9b027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 984f741ecf7948446bc19d6386b59edebecbbb95a3dfd9b88f900f8ab0181da7
MD5 68b8baba0b8aed27940d7853b703a1b9
BLAKE2b-256 e951d1b253ff2c6b7f5b8daec7449ade47e27a803a891c4d27e0c51d423b9c76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aba29f5c5c3ef54cdc857605eb4667dfacddc80fd4a3adf44faf074384f6e706
MD5 cf087400d50ffa26ef00c8f4d69a9db7
BLAKE2b-256 25bb0630e1d4de49c55626b228098a0f891860c1a21eb837cf42688dc2d95011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f290e59063ffcc9d7e9007b749f59a7b2c1e351f1468c056d6065eab7ef45d8
MD5 9829ec7330e18739b2c6fc3cf28f9540
BLAKE2b-256 c4c1abc0593dcf57059570544d5308eee111eb611be314fff3e38afc9014d647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e3c1b160689bd1fc074b8ac9c24b637ab00930b5f9538bb97184af615a08116
MD5 bb57340113829202d06adc10a3310ed0
BLAKE2b-256 4add5cdc6831385ea6c0e819fa3ffa8c83912ed4c1d82395bfe7713121c68e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0d8fc2d3a10cf43a246b00f822dacb9de39370f39018a22af5de54a7611b717b
MD5 01bfce1aff594d58702ec216e6133033
BLAKE2b-256 548994139c1092dc88288f30dc290a7cf1b1cd1f7b423728663d607a379af250

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9a65740d3d13253d5671d17f07a10457de479c41bcb371c9c7bb940599bc554c
MD5 d96c5467104f298c76ec53c61e82d133
BLAKE2b-256 421a816db4cec76b5652df70dfee43520362f4e0135893673ce78794a798aaad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2dc6a8adfc1da4d517786dc036935db0ee89bdd85a797cd03b0b74c19ee1e8f4
MD5 87a767e3c8b5f3cdf042a089912fcd26
BLAKE2b-256 cabae16234132bb097b45a5c54c5f67af751d5adb0cf15ed06148c2becf87058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94cd44215f38a43d0a29c90d09165eccb2daadb570fbd037e740f074ddcc0802
MD5 6526fb7980b0fc6e778d366824ab7dca
BLAKE2b-256 917011cdce8c0e96d2649e1d8ee3bd96b998522504ee9dcdb5c04300da7e6b0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ea33f066e242a176cd3b5159e94cce70e91ad6e813114b2facf8fdaaeb0c01f6
MD5 df29e5a91917cab7b7ddf1c27b06dde7
BLAKE2b-256 2938f3c21b81be902684733e7cc8d5fca36884550136e2520498d347bf98ddab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2d228bcf3daa622f27962a33ffb7f172c9238362f7697f045815da255c4adb9
MD5 21a684fd88c5659b1f89d1230c2e307f
BLAKE2b-256 136a7c542e970fdf389734d7547cdbcb85ce00164110ece10e1163175543b6a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 328995dc75c09558dcbcf3e2b79914f585154dfdbaafa9be8c7fc03e5fb0b6b3
MD5 8ffee0254d049b128f1744c5ff398e9e
BLAKE2b-256 1042afe5aa40429ddfe3282e5d57711979d603deb7035e032054dc63414332ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 18f2421f0b8d94e10a1305df4edd3a915a0c163352f52c246c11c6f0342edbb0
MD5 550446e619080941eb86e9b53feb82bf
BLAKE2b-256 b73787311b6789dad24c05e62f34ada100d94cad55fe3b993b1f8f65642fd294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 104c58e04cc77c385df766cb7ca5259421979050b48472223ba8d8d38c0a6f97
MD5 896590cf70c499a05137606d1fb90382
BLAKE2b-256 78a8e03aa908c4558fbca7b099f87650fcd3ddcce6f37aec8cc5a4b2844ed597

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e16a554fa2733f08c4cbf66ef2fa89680dd327b7680f07038fc3b8d7f151e98
MD5 430bc875626c1564a18c95baef833235
BLAKE2b-256 46ee2384f6fbd5764f442787d733606ec6498eace54d8044a3e133d8035e33ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08cf4f66e2e8777923f1f4894fa6deb919e01e6dd0ad7c6d16146ddf16c8bb52
MD5 0e617ce59a005865f8fcb76be9978c5f
BLAKE2b-256 5c8d1dd7f2d3a424ab721f754e0e19c73597e931c3f3bf32758fbb5bb4bd056c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4484f8eac931e44818e6d77277b1f4e6154e9817d2dc86df56258f9a7bedd57f
MD5 5429dd08d102ef5c7600249ca5a92432
BLAKE2b-256 5de0f5c4029ff48a35a6b417e71265dcb3770fb13dc2004ddcc9ca28810458fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 647ce142b4f4eb31d20dae8afbc8b865b655afe5a4c6f09092101477bc3449e0
MD5 5658f3c8d0b1f634547e85138da6e552
BLAKE2b-256 cf0430db62fb989e47bb62bac783eeabe5a908dceb11bf3ad2871cb7259150d4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for redbear-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 818dbd64bf6ec5162a5dfff206c1e2fe18d267695c238391db3eb604b96ba4d6
MD5 2d3417418fc756301319c0ec3fc5a43a
BLAKE2b-256 eabff8a04c365ec749f556d5f93dcb3a00a115af8129e70f1e47ea078ee95e44

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for redbear-0.1.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 007f77fc6e1daaa04ec1f398717fd4795ff8dc38f04ea3beb62e1897eacd49e3
MD5 2853d0cff5c60e232c57c8809d677d39
BLAKE2b-256 24802ce2cd1615e981dc87181f30655c4b0901ac49c41e6ded5b4bd06ddee5eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2cc34e7dcc207c5c29f50d8d9afb9e44955cad60c30b7272290348d638428a5
MD5 e5db736197c5186d38ff065046ba9641
BLAKE2b-256 388cf61a663dc914edc94e91f0ce9708ebcb347ae91879103062c663a432b737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10eb74d84c96969ebb1cd27ee8f41dd9e101197658236ca380e8ebb6ffda3584
MD5 5d0cbb3e89eadf1c68b8731c2a52fed7
BLAKE2b-256 de463ec50c379f6e02b75db89424544e97e3b4ebe2e2b794c6c4e70dda793c6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d6be2b6ddaf9a380618aa01ae58f9b4e18b660a151bd245309caf5ebd2fdfa2
MD5 5b8e6823b67158c6d2685d369349a44e
BLAKE2b-256 2a374f9fb82ea015cc7894bde1431f6356168721be68a529588ec80202a5e61e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a4031e402623b13e13741dda833028491982a57433f9c0b3aea4ee8c41e1984
MD5 32f0fbdd632d109d20621d8273e26636
BLAKE2b-256 8dbf105ea7aebd3fc7ea503a341d4fe4338c72dd9bfed91e487ed01b2143b0bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eeceff34fab638ba7dc88387a6fe74994c3754212aaeea30e20d867cd54fa58d
MD5 ddc220b77d08fb524f3fc2e04032f59b
BLAKE2b-256 26cc3b30454dd3ea5c652abe17fde99bc982254e3cd658079698c4dc76ca6d83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4aa14e8e452a4cfaef04a4284b13a37f0a0cdff6e2e00b76e9fa0ab7341fea4f
MD5 0f675c7b7d575802900942de608ea400
BLAKE2b-256 ad5e3c6f83c6b64dc8a5b70045549465fd80e7ab3728290f84f777706aec0509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 60f8cba0d9d8c1500a0f6a1d2932b268f20e1017b1481499a013842c0a5c4aff
MD5 79d4f164439fcc2e517830638342a247
BLAKE2b-256 093c27fd796798941f77dfa96dc1e959b31bb3dbb422dbc7a987c847726f4fd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 734f38de9b9c76af70541e4fea291504c68acb839a51318f192b881c36fa454c
MD5 d6261cc14689d98897b6a84262b87c98
BLAKE2b-256 84e1ee06acb44f1a9d92a3943ce884048e760ff77bace55a3724bac806b4e302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae8513a040cf5fad755c13ad0e33e451efe260792a4472bac6dea384fee2b518
MD5 2b2e33f55b2dcc5fb0f98829f519d8a1
BLAKE2b-256 09152afcd024d2c8c03070aeb4412d0d78502bc3dac92c334ffab7ff047e1acc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9c2cceae8f59ed08845049969bf7306291e50f819f485fdb4adbd81137f6d594
MD5 5134c4841e02a647222b13633c021ee2
BLAKE2b-256 79d4ad7685563b7017594ead5f51928e5bb8739e215ec5efa5943fec944fb441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a500e7d681e0df8276fa3d7ab9a8afc2f2349813345c3071a96780d89a406ad
MD5 e5525dfd6f00e6403d4a593a1e97a91f
BLAKE2b-256 81d9117d0cfaaffff363872fadfaed060ac09785ea140dad0014fdde75cf2fdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f28f1f376ed651055cbe1b9cd7dfbddb90115e0478f6df1338aafc55da82cc18
MD5 c151c9564e9b813e193fe7d58a7219d4
BLAKE2b-256 055666ea70a76b04ba008636bb153db5b89f9ae40539fa70146bb5bf6dfa58bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7fe50338e56b464faf47aa0cb245b8d9741e19614b86e6fb7c251cfeb775074
MD5 e2a0291e5eb7119afdbcae6be0212a9d
BLAKE2b-256 47675b8cb6a43cd4fba9899fbb39f1209e00dd43ad9961fbef73ea460ad493d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d7240d784d065f2a8df138f194d91ae1cde149c07489849e32b28431aa70438
MD5 97c402a8c639156c7346eb6ed9b4fe40
BLAKE2b-256 cd08f43e2dbbcf5a7c518c20050e4ffed34ceb4b489f25444c9c2dbeced674c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c06c493975d1a0defec42f35f77c1b0fd0d664d7b32caff9571f45cbb4abb1bf
MD5 d3316ea3de6cbecb8ea93b383387f66c
BLAKE2b-256 7f6e67510e63f5521a8c7cf3146189e84248dc899c92335a523cfc37f5d59ac8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42d175c0b600986de3293c067da943a29302a969be8489206f9fa87f1f52e1bb
MD5 d5a0a63e2337959e1de5f285ad38c486
BLAKE2b-256 b9a61f23e282908bc35f44d6d06cc75b1243a30fce532f2c6ba4c466ce68b09f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 64d2e513ebe07756ff097d6e67c409425b5f599f35211ba2fbf6f4b989794763
MD5 f1861a67eaa0263410dcd9ce7a55a227
BLAKE2b-256 519816ce9286b097a5bb4b4e1d4e47bd24eff84a8ca92c1a7eb1893f34403c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 066d296e65e3d6ba91abd698a0085c37e1e56ec00a77a396430e94da7f154fd7
MD5 af7b91b0c0607ddafc2b56cf0147eb4d
BLAKE2b-256 801b83d785ca26324ed86eed624f52d402912aef3265804e621eb1482acfc39d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b8f333113efc9d4c7c073c4f7b185aec2e1cad52984098ad2806778d23af52bd
MD5 3bb45df1828068bc0fdd0374531dbb30
BLAKE2b-256 981aae20677b09c67a15aa340d03e6a8c52e3f3a9a1e6b3bdc6889d27d8dbfa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa5e9b31aee6ce609f001b94d051c99ece0f975e222b584687ec495084773be6
MD5 d332ea4f402f37ef5855301ddf47f4f6
BLAKE2b-256 0efc687fcb94d2c46e2f299e6d26bd4792fc8241cd23a6d009314290a7914168

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for redbear-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 55950fbe982f1de8a005002522ff03402dd4f184f142b30099ed53ca05e7bad7
MD5 2978428a113576158f36e9cbdcc10929
BLAKE2b-256 fa984428ca87d211e256c3cbd23b9ff99e880be6031aa4c7390bd776e4ceb49e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e160337737a113077c3edbef908e584d73a0a2ed383d5f8fed903785c64133f
MD5 6118ed90014cbb1d904fb0411129cf04
BLAKE2b-256 fe978595fb0e0af43766d517434e862e90b7a024ca13adacf612ce1f19c48135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 70596219007230c5664e2da67d0abf600e12af4092006de391626d2338b3fd50
MD5 3bf264531a36b3bdfb181f69becb84f3
BLAKE2b-256 a84e160d9d58bf365de0e3793b02adfef6adcc6e438a042e8b1f9c6bd76b0515

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 37ea93e2118f3883c2828f298573b51a9b831abbb1f8ac394afd310f52d6de3b
MD5 0c3569f0d0e44ab1bcef9542c8a58e76
BLAKE2b-256 809aee7dc1dba9e3f3a680840b78f9175b12cf17dde759d420b06798292530ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64c0d62ef9427948b90d0b6b29dc4fa72757ca07821adcdfd2023d35e52d9af4
MD5 22fc89c32f71b8a26f07d0a5c924fa81
BLAKE2b-256 c7eb134664306ce5876e5f9ad3a6bbf016b6898cb46d8acce4505c2c034d2148

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d758c1a627767a3a9128cf8a982aea7ea4a34e75a25af2722dd5ee05b7fbb358
MD5 37e76e1e75d5e4c68a4a90c6b6a0d551
BLAKE2b-256 319c7aac89737fb5ec0f578c81ebc04d424b04db56f37f4f17a5aa0548618a50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0617794789974e3ec046d18740ce1781c49c55e7d742413ddf97042dca55c9f7
MD5 9e2fc04c7ce2d7b5c519af78079895d4
BLAKE2b-256 3149aa9b15c3cb392bdc8367bdfbabc02a7c7a3dfd36970b7a6cc34f1b39a6e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dabea9d6b9e6ba3d09e963155d0b4f775d5b819ba67bb2f00a6f14304d8f2221
MD5 72ac61bc768419d3d0582d5262db79ca
BLAKE2b-256 1b234f18392f0e8e503db031d25390cf03a2157016393bb1090c2989aaf8c3db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7f05dde6de61d25bbfd65a82666b281877aaf157c8629a3002c1c694c525ea8
MD5 f64cfb723b74bd5ff09ea08447db800c
BLAKE2b-256 ae524db10dd2666e19438eb2594e25fb5c967d68a6c022a4920123b04ca12ad0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a56e0f33d75d8178c78ef78c296363f19ab32e57f4a5411ae9b4ede6d20841d6
MD5 e8b845f80dce9d2f3f24c45f569d6b1c
BLAKE2b-256 611355097d67d9cfb204296deff88a53ea564dccf987a4466886569ac4cfa2b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5aa32306f95e6cefdf3bfe48aa4e40693aa84570919f81633df079f3ce97a295
MD5 42ebadf4d0e352ac6c00c46a9d330697
BLAKE2b-256 2d6891eca9101b54661e78229ae4c2ac190fb3abd001f10fbba193878e5164f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d23f6766dec1ea0330863c03de758663097581bec86545774210f872ad06636a
MD5 ca7806aac56bce2ce63d4ee301157b7b
BLAKE2b-256 fca4844aa8233d7b81e0ea88b6a6376c9373baafd02e0d9d0eb2e042f911baa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c39253286ccbf685ab04ba10fdc634294dfccb77ec87954fbac4c6cd2027badf
MD5 12a2e3b5f6c7f671d2c1d8cbcaadd8e9
BLAKE2b-256 f4b48d330f6a9aa7da5e638b201f39aabdec4698c9e74bd5e425398bb04bb563

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for redbear-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bbe11128d3b5fd9402e024039e5e6a3ab2224dfb261130d81b63894bf9d903cc
MD5 4dd0b48a4d2d8985e4dbef663ecf8621
BLAKE2b-256 081aa9401b3d476034d61a26684180b97a8e52ee15186d35b634278b3a837c1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eafb0609c41f215129c4cbae0b7f1b11ba29ca4e56e9b344b3ebfeb175ee7b98
MD5 7539dfc78d2ee656fab85c8d3da94e39
BLAKE2b-256 1ff4bdaa37285c0d3db6e7bf75e9d61313d49d45f60d0690cccb1b30c0326e63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d04961997d2b0b5e96fce3b7bd15b758d9e7239eea1c7f9c5cedef8cd6acc61
MD5 e4f98f23813c9e3309609b300b318187
BLAKE2b-256 81fee2281991f1d80cca0bb17c5f4013c1ad172936afb520e235783d5f2bf782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 30a9bc76e766f6ce274b1e97f2db101c109ad78239f1506416ef755bedce5eff
MD5 8925a12dbf0498cc84d41667f79f3bb7
BLAKE2b-256 78394e8d0d047eacf4e76ae5fd2c88ec1c730110f5cc3096fd9a11dcb0c705d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c52967a77a2594f7924c2486fb8b682f14b8b9ccc90ad62c7e9f9599ea1c75c
MD5 c018bf7a27a7fbd93ce7cd07eab1cca1
BLAKE2b-256 8b36bfe93f6dfbe9ab65547e440f98f5e50b2919d718c0ebd59750ce0625dcb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0dbc5f4636c63f49d2450237536f10123f9b134e2ab0101db2af753382927919
MD5 f4055d5e55a015f543de96d5eeb1d1a2
BLAKE2b-256 352480648c6581d24f9654713c26e1b8bdaacb57a62969f49100d878a9afe659

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d18bb173be058dc9c82e973470fa6a345e87fb03fdf187956b2b952c2156a476
MD5 d9d60da39873587a9acaf4a80f5cf048
BLAKE2b-256 1aac44706223627dce78d0b2d1929c1959ecc6b9ad90505b16728ffd559db536

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71f52e1188356d57d6d42cd93e984a179700b92e97296cbf95cd3947f262eaeb
MD5 b23629da7644d2bf6883d665192cabb6
BLAKE2b-256 949fd36739306d3aa778991f7f1c32e0d93b51029c1edad9d3d59af5d916f444

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 21dacc1aa8ce1f8ae32a856856c0056e9e04915d119279c9bda75b6a7f84c0cf
MD5 8105da1ba0b3734d1a03dd62db6d9742
BLAKE2b-256 cae3b0ab522f27159e537c1253aa73d800fc45483df373310c3fd53327b65db1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0b56c8ed6e8417b65a29d4ec885d98ff918e9f3cf48221106eb4a7add984a6d
MD5 7e46c7ca6f05f44717f14ca3f26572f4
BLAKE2b-256 031593111136230e54aea8b9baf57116e9bc09c7a956a183aa8c2bd5f9307a86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b0d5fa8b718472cae2fa4266b8aefb6ed97659c7c3e1e1817d4bc848c80d2e90
MD5 7a0b92321fdd9dbc555e780ab3cf1060
BLAKE2b-256 887444aa373eb63a0b6e9c2a34c0552ff3a95b0ae660db5d8171e8b88dcd8654

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f78bd36c2da15178fa87fb656dd1cba8efa8b99613b7f278a5659b1735206c77
MD5 9e39d72d2edcf62bd011aec9c7b72efc
BLAKE2b-256 f6193f451bddbd2fb2ce6706837f32708fac45ad00a19dff4ad32c9ad35b37e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 424e22665063b52d2234f8501e21a60b56d79ce913b4b5df17efd753955dcfc4
MD5 318d848ac7809ca70a2a944c5f8a7587
BLAKE2b-256 1570c01f1f707d3c30dbe9dfc3239fb9489d2e0432a8340fe715fdc03a28b6f9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for redbear-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 99a05cf1ffaa8c28c36f528a73ec59501ed2ac52d5d91242502d55b219821d3a
MD5 f63d7052243c002259712325bdb77b83
BLAKE2b-256 c9ad878650288e66ed24412190f2b049433bc8544c838758ad8432d8bbd1c160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 971b8e4ba887d89f5f56bb9703e4439d5d4cd7e517f0aeac5a802f12a8edf12f
MD5 f59db503dea4a65f1b0587ee5606152f
BLAKE2b-256 5449238f4a8aa1a46b21363ba70a62419c9c7cfe4db3dfb93ca4d9f7adfa3a0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e60bd22d9881715e16a03111eb1c17cf41da366b3847df25c5ca490804b44523
MD5 3d08e8f1b27458dedb80eddeab7d2a6c
BLAKE2b-256 087bb408418a5b9a5cf1d7c919ff6af528df2f43eef273aea9636bb53862b217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 df6376cddcff3d92ab4009bb54e69f06b84f16324482e6bdb82a24ec222ec162
MD5 b84cdaad6dea850561365098c8553a0b
BLAKE2b-256 0d88bd1496e5663ef8ea1385d0bd9de7b675c1f5d15ea09dcdbe0b9c354effd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c835795a9b98acbbaef8ba06fae10a5bdf59f968f83b72a4cb195d63be0478d1
MD5 13d41f1be3cc13d8e90bf06e44ecae04
BLAKE2b-256 d435a8cfdf021405fb5a7ddbdb4499289969a797475de8dea6bc94faccea6dd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99d4f5124ecc9912c647f9c66ee816b25857651aa678ad9cc3f51825aebe1bdd
MD5 07e65337f578175917e478988c791d50
BLAKE2b-256 6bbfbc475fd998a68ba64bb8477f7bc088b54829fd3deeecaca55f3bc5f91939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c289bd08de244fd901a5f870e65d3898690502a2eb56998b0289c05086367b69
MD5 0e9ff27bb4618a8777af5fbd2f3f885a
BLAKE2b-256 2e31ac4ae7729750ab09c9969a885edb2067e96698e2614617c2d41fb6da2523

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 570753b0cd294cdc86007c0ad2a78bbbc66e705cfe8a5ddd415d7e71a03ec1a5
MD5 d9cca7b78c4413ff8d5fbff0e2220974
BLAKE2b-256 369af9acf0fddc9739780d37f75217c03717a0156ccdcec2fbf75890777a580a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 295dd4e0577e1ad1541c458951c760909f7f29297d3a16ab0855b55e48f049be
MD5 6776b75ed28b3302dd1dc0a72c8684b5
BLAKE2b-256 ea7bbaa3bf7afe02e1df78c0a1329220fcf63d357347ed11356cc5ba9364df32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cbbf9e4c359701405cc721871128576bbc7cd375160ddf34104c26d1013a14c
MD5 04182966b89426f7a2dfdf84b3ac91e0
BLAKE2b-256 3edbdff8dd95ddf126a2495f12dfbee9d3ed555f6b160c12a3de4d957d95cd8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cbc48401c33023bb4b034d2b1a10dae8ae0ecb4f947de7fca22408e3c464903c
MD5 766f289ae0f771779b7707a4098b9b1f
BLAKE2b-256 3846f95728815fe2b93ec7fc394b7899ee99f2f472fb0eb4bf6313c0ebf3c439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 276ac75e898f68c6bc884deef510c154dee5e5382c548865be73460e42616eda
MD5 93f3e4f438376b3dfc5590850e6a3cf4
BLAKE2b-256 1f824b334dd1e2dfa02d9d2c79dc74f8c18838a02b5f736da4daad35e7f7b832

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 247a900e9288c597c1fa9793b6317c7a5f57f91ef1a1a7b6cee1d3d2769d4065
MD5 e47ae3bc96a7afa0f29c734cb1751747
BLAKE2b-256 a40bf95610fc7d136f854d45e55b7a9067ea88ea541242fc1877c0d46345e1bd

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