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}

# 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.2.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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (493.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

redbear-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (524.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

redbear-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (558.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

redbear-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (458.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

redbear-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

redbear-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

redbear-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (422.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

redbear-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (287.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

redbear-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

redbear-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (304.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

redbear-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (489.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

redbear-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl (522.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

redbear-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl (558.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

redbear-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (455.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

redbear-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (303.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

redbear-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (414.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

redbear-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (287.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

redbear-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

redbear-0.1.2-cp314-cp314-win_amd64.whl (142.0 kB view details)

Uploaded CPython 3.14Windows x86-64

redbear-0.1.2-cp314-cp314-win32.whl (134.4 kB view details)

Uploaded CPython 3.14Windows x86

redbear-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (489.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

redbear-0.1.2-cp314-cp314-musllinux_1_2_i686.whl (521.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

redbear-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl (558.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

redbear-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (455.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

redbear-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

redbear-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (303.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

redbear-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (419.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

redbear-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (288.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

redbear-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

redbear-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (301.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

redbear-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (247.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

redbear-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl (252.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

redbear-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl (489.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

redbear-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl (521.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

redbear-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl (556.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

redbear-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl (455.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

redbear-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (303.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

redbear-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (414.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

redbear-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (285.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

redbear-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

redbear-0.1.2-cp313-cp313-win_amd64.whl (141.8 kB view details)

Uploaded CPython 3.13Windows x86-64

redbear-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (489.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

redbear-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (521.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

redbear-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (558.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

redbear-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (455.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

redbear-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

redbear-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (303.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

redbear-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (419.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

redbear-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (287.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

redbear-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

redbear-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (301.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

redbear-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (247.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

redbear-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (252.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

redbear-0.1.2-cp312-cp312-win_amd64.whl (141.8 kB view details)

Uploaded CPython 3.12Windows x86-64

redbear-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (489.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

redbear-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (521.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

redbear-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (557.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

redbear-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (455.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

redbear-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

redbear-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (303.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

redbear-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (418.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

redbear-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

redbear-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

redbear-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (301.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

redbear-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (247.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

redbear-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (252.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

redbear-0.1.2-cp311-cp311-win_amd64.whl (143.4 kB view details)

Uploaded CPython 3.11Windows x86-64

redbear-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (491.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

redbear-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (523.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

redbear-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (560.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

redbear-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (457.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

redbear-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

redbear-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

redbear-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (420.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

redbear-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (289.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

redbear-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

redbear-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (304.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

redbear-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (249.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

redbear-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (253.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for redbear-0.1.2.tar.gz
Algorithm Hash digest
SHA256 738284c2beea1387ad15a95dc82887b004dbccb6e4c66992180d70f5f188f934
MD5 29dd05b3d13209a1a40e5ea18cc8ec21
BLAKE2b-256 bc08ecb6e0e4eb11ba861b85e0b50b7d585fb69c125e29e5817b049569e37014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dcf7d9daf287264905bb7091d1d33d8025ab055a1e2b39c7ff249f5ba2b58b72
MD5 0aec6888584a39e39437f84152a60802
BLAKE2b-256 2b19d64a6655fa99347c222f8269140843f36cb8d972a4f6658f1aad26406a2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd20b7e4b78bf2b78d3bbf7ddbc458293103bcdeb2b3372090dafc405418f434
MD5 2cce6eacf5e037a2328f53296fc2e17e
BLAKE2b-256 556cc383555092dbc129be3b700a349d81eeed23ad3e0a59f1e583b50317b4f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05c5666472a62d193213ef8aac01e18ff2b46199510408daab82b6c9ce9aa602
MD5 e4dbe2933ab931b07a18fdc5bf3acfd1
BLAKE2b-256 e4c49cdc22bd9d70a0c0227cd63950cadb625da84e75daed27e41aa2f06c1ac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb67b4bece6c5a5e132a48daed4808191a45d6d74d2687493f509e1ca75cca77
MD5 ff22629932e87838f8e2045702fd9fea
BLAKE2b-256 d9955b2ff89aa9687db3fdc1f080031db2d9654a840b6029eeec4002a06e06a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4df656b2edcd5352cb2555a7579b1642527a049283e2b48e3cef53e48b2c139
MD5 e16fee20843ac7544bfe0a51be268138
BLAKE2b-256 72233805cc8e427ac48167ca9edf10d35b3faf15d68ea81afd611b85dd2b88e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c057c36c8e59605c68fdb4a54b4bf31f93a2ac1279088523e005c39c53e8342
MD5 4bc5c6da37105bd35c3503f034c67f64
BLAKE2b-256 27db24ae097493ecc7ddc393a5f8639458373daaea6fc6b2ee7bd6c94578b322

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35edaa58da5460ee31b148708aca81d5fece8fffe441758157dd9235b8785283
MD5 9b373d6edfa5e4c0f64b70871c13c1c4
BLAKE2b-256 b68453931fbbe7c56ebc59c3c60efa3011c0212dcf321679446cd8681c07063e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 15c988c164e04a58f946235d72ed3911d94594b56fa0452f1ee878a5a9478d02
MD5 3ddfc0615ad952afc457729026d791e2
BLAKE2b-256 b4ff62857d4241df3a403a97bb31279545503db42c97016915dfa0125a4d93f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f963f626f4f61144af4182a59b53713d86169d2f109ea6ee0af9b2487d802ae
MD5 d2e90c02a09181b8e822f7c832783143
BLAKE2b-256 4dc13cdff4143974160c27758ef1debf066a441cfa8e00c580683826a78caa23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fc7e780be509349618709e0e683bf74122a8a8a66e173edffdb8b2ee06335e46
MD5 308c3cf0b4647a69a6dacab66760346d
BLAKE2b-256 13f97a25ef2245c5dc5151a921f6e1937b347770fef8beb21137722292f7b435

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16afeefdb2129a8c6f4c7eed355986c79f2fa57822068098662867b85277c6af
MD5 f7ca18c006f545d4b97b5885a5b5e5c3
BLAKE2b-256 6816e3f7c742bc8969776b77000c194ee74e64a559106c1167dbc5740b1ce953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9911d4a648943bb156449c6a04f2f752af4462760cbf5180844b585f889ffb6c
MD5 c4cf6943def1d8ddc5e95e7170028003
BLAKE2b-256 6c13c9d69e7ec5981563b65ca5ae8d61ee7354cf36ca76392d3bfd071001366f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 273507c34a51aa34f87b1109b1a87a44ce327ca2bfa207bad2e0ab75a39ba197
MD5 e9de41ce59c09a75d88381d457ba8728
BLAKE2b-256 64ce79a77656fde6d3494ad4f9df3eb1720719b4f2bdbba38988f33f55e73d1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9b106554e9c8dadfb9968171610cf3753ae2cc1798c204d57b77f8b59382e43
MD5 45f0e41a0a3fbd37e482bc101a5d4d09
BLAKE2b-256 46b5bf0e3c37659742e6200791ee60a2a78888ecb8f4afb0a55865f5a28aadef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e20b2db2089fc05337e0becdc708d1d79039a4f5dc01cc1378675f76c9b8d4d1
MD5 764f301a5a38d6bd334529bde3ecfe17
BLAKE2b-256 c65d08a6b6d33174c93d31dadb380715e78053d6557b8b3b0dc229d37c8723b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f64c25f687e8b02391b9f5df9b7fed6bac09f621a4be0d131a414f8bf1fe3f7d
MD5 19804caedae66dc76e8dfdd76d43167c
BLAKE2b-256 fba35bf4a4ae7329bef911ca8ad4295cd3dab758d659e25fc2f05699f4e9c360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8cfbc34ab768636b22f6e35b3fe8675933386ed14525c0dfa430219eed84a12
MD5 e8d3d8b2417fb8744b0f0c543f33fb33
BLAKE2b-256 deff2f03062deb699cd55e7b063983bfaab4461c54dd800bbe35449888c78a5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dece73432163bfb04b3c4aba1ad812ff173e920957793ac8f76b576f14a0f84c
MD5 395cd6804fd497bbf48bc706913d1585
BLAKE2b-256 f29450c309892ecf8b39da78d25e087cf1bde8c480851ebedd8b280edd4d28ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: redbear-0.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 142.0 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e0d82c8acb5dc98d261a03fc5b4a4e8b2081e4245858b77c3c130b8a1b6cf2a4
MD5 a43c19ea7f606aaa5bc7b9bc57b8021c
BLAKE2b-256 012eca408e1743db50cab022ef085c6685e335236e990b2ec08f347bdc933c65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: redbear-0.1.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 134.4 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9247c7054378bba6af7632fd338bc936c46b341c72d82b2ec21a143593d4ac94
MD5 b8bc5a4cf186bc8fc663684c1d44d6b9
BLAKE2b-256 8936c9ec9db5a7af50b44216e3d0c8458e1334ff87c6d7494967cc91084f4c8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82550fba498ae0a65e0ee8884c37bfba693fc69a7bd0e6b6bd228ba4d42696e9
MD5 07957c425faa1615c260cfbb686732cc
BLAKE2b-256 cbe15fe0aaaaddee82806416b1fb83fe63ac82c6b62acf8535dce378b7ca830d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 080d275d4faa396a24ec12ec50353218d9b4aff0719ce888de19a5a984c40d5f
MD5 d7d84133e67685960f5252c19825743d
BLAKE2b-256 f2c63aa0d3b8b9487cae660d59f354ff96365b9459707f06cbfa7db1c6a73788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a175a167f1faee155fdf3ea5f357363c8c4ea123524e035e0c4f1c51d3ab9aa3
MD5 994bffce9bc0dce99ed0c4ccaf644a90
BLAKE2b-256 c6d2497532fd31c7965213a3b1e2ad7fc038946d9a8af2f824103c58bc4172b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3b2beed898e8630341f91cd5d51ad205267da6707b17dda04757fb69762663c
MD5 9e5fd77c7ab5007fe52a0fc3affd960b
BLAKE2b-256 6fcb76521875ddcb418f54cbb341be9d12478818a4253360ed23a62e28eceba1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e2da15527e115a1deabc20f17206220afaadb036076c23f5ba65c86f651c776
MD5 3c4072dcd251bbcb9a407c2dcbd54223
BLAKE2b-256 dd846d4814ccf7bf0d73f8d41936964aa358d86ec0af7142fd96513fa32f85f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c0d74e76e7354fc5fad94e84b548cd82aa38efe1fc6e7d482228d6570e10e456
MD5 55fa1541bf97dfe7d011086b8ba2a6e3
BLAKE2b-256 9f4f87f2c3dcc1651909e6c50a00ffc4e6b6ebb1c2f5372dfd398c693762de66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a85607fb0ae792ec88afe6cb68cbabde7648e01845beb683bf9204519c4c761
MD5 8e9591d4a0dd7fe0bafa85ff5e903c64
BLAKE2b-256 f564a7d7536143109ce54be5f48f86f959e391d9b42c066f0ad904ceebb4868a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 703e5f35c103a45cb74cb605bfa9ab723e2d89fdf82859c79f9abde5ea24f543
MD5 1a042ef9510a690829a05d060724c4d9
BLAKE2b-256 edd063d8eaa0fcf21fc88b9e93a1b72852c5f16def85067ccec693462173ba84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59aab084f0b0a1739149df8f8f0e4dc8faf0e91db850f72e47cfd363a3449a55
MD5 7286ef60f8fdb7ca24a613193a83f45a
BLAKE2b-256 2980f9fea104d2a97e1e9bae049f0106d2757d4edb86eaebccfbf68048fa8633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 71045b8796da0ecb67c8363d86d2ac7f65ebbdca6faf2e23f000b2c5da51359c
MD5 a32ecafb5c69aba6f7db3ed3a1959a43
BLAKE2b-256 bc781b552385d55bf803050fb0cf1ca600f56dd142cfae01d11f863773f615bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4c1723bccff893b682cafc75faf3d759d9265867a1044818e32d71bd4ea79fc
MD5 f591f52956afe70f8d24af7cd61a809c
BLAKE2b-256 b87cdc5bb1a98109513f4f1bfaf7b0aa1f1ecdf1fa3b9b33d3211e8a526ae5e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 12801b4304bf8e94f555427c6ff8ce9134a8d9fddf7608c8f7cb6af483f24d38
MD5 e7840c95b5ad69ce78b3bf626ebfcd53
BLAKE2b-256 c03a3adf2b4cb99b4040e1e179a5ef228bc3b3b7d50758052ef6b01de5f3e3b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 293e7da2ac3015e5ecff472a14f620349d8ca215535ba6ff2e107bb24be8134f
MD5 4b9ddc4a648b1bfb3740d1afa2b0abbd
BLAKE2b-256 2cb2aa2484889e5d582f45ef07b8a3494c9c7195a66d125464b94b59ae57339e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc9cc3ea793fd803a636ccf08bb80c5940115a8ab3362e5323aaf7d7e5771b83
MD5 53bf8f239d2e34466e6b06f3e5128861
BLAKE2b-256 e30cbf9908f7d1c348545220efda1cace015e40b77ca4bb2e0c10748797bb3b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6de9f8e3aa45a1c25471c579d36450ea9bc8ec1aff49f15af8d0badd88379758
MD5 54dbd8c4050ea349f5402b72f47718e7
BLAKE2b-256 dcf1df3413141dd916701ef56eed0d133ca7725306c0eab820df27a28def499f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b986b413015f98f1469f92b459a1f044ada177b20083feff76c2537427bee812
MD5 c84a6c036267644749eb985888d8cd10
BLAKE2b-256 a8d1b9cbc6cf26c75a561b9e61701ee7e39ee3b7a775fa00e9a3a8562c548f0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 54362da69569a946e7ad74ed864228ae5dd4fb9956183765f4d7e2a7e9dd38f7
MD5 ccafd39ae2f2d6ae0390c3bf6a4c4002
BLAKE2b-256 311267e33674d6e3b3f823ed3e2ee3e8b58aeeed3176609eaab250611e17568e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9eceea2778cb841929e1b800c6943d1f6e28a50130f83e72ad38b72fdd0569cb
MD5 abee02b60e3f3286422cb0aed42aad31
BLAKE2b-256 405f95865c7ea16d92ef2b36cf8937e2e8dfb06b1b655fdbcb4919a024e80188

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 87b37e7a1061fbd83f9d4a3030ffb6e065e85844899cbc79baef12fee26818d0
MD5 2bfcc6f65431eeb3d96decc7da2e0fa4
BLAKE2b-256 1d30c2d8e7aaf12de7613971df282db3ca355bdbf8c024d2906552ce1a8ca212

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e904f3b169f9de7634059f9e680b7ca05920d3002cb7196140f70683d20513d
MD5 9d5db2e6e3b83de11a9657c5bbd67b4a
BLAKE2b-256 a56cc6275029dc24abc2ade5ed3113f3e0d3f21298061da215acff4b9316fa52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: redbear-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 141.8 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 37cf9309bd37e6aa6d1a4098cf8c33cbcad85f194e91787e11b2013892e45f57
MD5 735787b4de56dfa4b2505f0314706e27
BLAKE2b-256 dac514c02075c397d895902f061c6d17511b7afca8616fdad0a0adbe1561c867

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 156cbc76a25d057772331b511c16cad01af98f6db81bfc850d33c58bf5641276
MD5 011d5b4fc79e9395cd79dc19915cda78
BLAKE2b-256 cd98e0181116839f184adf40473654af1814b780d486c14e83a1d468d6df46ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85886e4fbb44b945d6eee764684c8c2fb80623a25628423d840c982c3b6f4a56
MD5 f893366da44da5d4537f07e557034d49
BLAKE2b-256 9266871125d5c0b79401cc720e9be8be1f9297c2f24d7cdf369114f654e013bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 98453132678279f41fca259e8911ea40c0414a6ef3a1eb3ce09f9aa6e17892bd
MD5 04309c8fd40d80bf669b9e7f50e567d5
BLAKE2b-256 3060b0f222bd920d5c4669c2fdc263262268600a657b6d8af5feacfaae8f2116

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a61bc8e7c821f7e63d614f11a5a944bba34056668b26d8b44b37cffed9034cb
MD5 5202964cce9f1953f27af8bd35ea412b
BLAKE2b-256 22f1db77f7fb70b15f11f7d7ef2328befabdf3ac056fdc1cb1b1e68366a1ec38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffcae9ad718173bb0dc2db252632e97f6c432131b43f891b9762bd2941f7c3c4
MD5 078d006b1267913f008fffb31db35c01
BLAKE2b-256 c357bb8c40770417327a6f383817d8a3f7be08d58382ece442cc94ea2f5339d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f88137fe9ce9cb5671881be1b74c3d004514039824960ddd28943558be3f48d
MD5 62e2f04ce140994512d6d8d8f3b1533b
BLAKE2b-256 827323ebfc3885fe4be1ae851b1d257f376dff0ecf6f6880efad72c405c11618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc5b8046034165b677d26d937653e92149d31df4c0af852a371695ce4d258aac
MD5 69e69cfa751d0a2289ac5b801395d1ed
BLAKE2b-256 6d8e86fb224a580cace189156d85d4d327bea5f90d9db087bc3eb7b7dfb6b235

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c89debf888cc936e6e8da2eb001fc753a27a7bdc55d5efa429d0598ac0f07c68
MD5 f463e9e86df28a117627c8f2f9f541eb
BLAKE2b-256 b84bf44a43b39e8d4b77d166370065f262ae1494ad715f860db4e41ea03ca897

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3eb3916b1940a64eeabf333abc18f39b7a8460df4a02a77dbace6623a0681f94
MD5 a1a6b533b4564f9cd90aa97b946e07bc
BLAKE2b-256 8abd0b86fd021a9944d3e46b23862a2e9cd2e0d16a29409554b8016133b9cebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f5351d04152a27390e6e34919f893f87884390f6de4f32702accc3d24111677e
MD5 4c140437d6d986a318b85c8b424cf606
BLAKE2b-256 8d46934435e2be2448f11a86e4d1f320c1525ac66d4884effc22687df5dd30cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e63db6e046ce514944c3f8c0e14347892f9869abc573e3729bf80b23e998de1
MD5 106c13a81e928cf62c9cfe5834327c5a
BLAKE2b-256 0ac5874dd9d2a604b14b4d6f6252d3e4e9559e7323e6a0d7f717f67c146c1fc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76d10f58ce2f70f610c8a17283ff6071e86875e3b41edd27edd5edb6c11cff64
MD5 09532e08875d65d25edc983000649ff2
BLAKE2b-256 02a4c2aca06cf714ed70c1a22e92690e224e8afab08d7780bd21004d043d0fd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: redbear-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 141.8 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d502ac27ab1d521a36c9f1e58f585b4997a3f2cd22299fb3e374298d29ae316b
MD5 175cc88265aba08fca2731723d71c9e7
BLAKE2b-256 ff55f354dad9cec03e886e0513d330ba16776225e6f382fd10182618e15dca3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64b6a5c9c4cd47897772333546d6105140cdd3d346252fa54cf509e4ca410c92
MD5 6ad85e2346062a914051b551683d36de
BLAKE2b-256 21f5aefee024b2d66aea5a55d413dadb6bbc907f52cf2ae06a8e7c7ecac9430b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c130be24dd2ddc998333684de13c4ea29259a9ff107e6dc83315811f8085a24
MD5 90495b9df025e9133cfa8580dcaa22ff
BLAKE2b-256 ccea46bc61601e84b81f2dfeb24dc4b8157453760332815a7bd38e55f69bc362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b5d1d5fd7e589d69583327f899fb58935822a48407cb1cf5d8d5971e4948b330
MD5 1ec5e8963808b97921ee56346ea228fa
BLAKE2b-256 c33568fc6b2ded2f497d63256931ce1b0f73ad6071731a274ab128236521a453

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 43bacec10b3ddc0c119f5b69001cc7b62c88ae2f8a448104b3fc8ad41b28f24e
MD5 45633dd8d356a9c736fd56f39578c68d
BLAKE2b-256 2761c0a2519648c68051e8572aac58770a546439db5a0e9ff43b8a51c0d994af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 263ddb1e3bc242c6cdf76c1fb4f9a2f053b1e1ef9645db587ed875c0bb7b6fdf
MD5 a4dded67533cd1f7a6299e0e74588502
BLAKE2b-256 845d6ec788982aa35dffbc56f8b00650abea30e951f4cf18bbbf83aa4cedc6de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f8e78708d72a215aff4edbfa7fcd18386a75c909c4cec701d025d6593c0494c
MD5 8dfa3a154106a016d8a6bd6098c4ed67
BLAKE2b-256 2a44b457b0b0a9cc0c482fc4fe8e0ef0929df9cf459109a12dfba681d89d9a59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 063b32d9ae19ae1ff80b1131eaa5a32a129ba6afbfc1b0314e56adb83bfe6f46
MD5 6b6e9ccfb0d5fc71c10f472d4c6c00cf
BLAKE2b-256 dab336ca207e11f2da84777f8372c7252268c8f79a2793000682c408ad2325d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4618055fb543e269988d50b741cbda5628b0369aa70c813f132cfe206eb59ae3
MD5 c7acdbad58aa81ac9cc1340867b263c6
BLAKE2b-256 c387c547d4153cc772b4e71b8d810a0f7895730c2ac280db774dfbf1108762be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46cec98845648647923f9ba77479366e340e419255d61399b36c736c988f19f8
MD5 26be7748ba1ef7d7fbad48c60a716813
BLAKE2b-256 0ab0acd9cc3aeab3fddc65fc2672db54574b667db475e0e899977a2f2fc68d5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4d5fe04d0b3ac9fb02d2755ddcacd649fa8a4cc7e81166f6ab36311beae1af1b
MD5 37d4822b8725a4841c8d9137ca1d1749
BLAKE2b-256 66894a86ce3a252068246432f81488897420312c2b364b12e76433c292ae553c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47894997ae0d585e8fa4192c6174a6fef8233baf43e7dc18e7d4b82116823578
MD5 f04dcd79a9e53064e952449b12c72216
BLAKE2b-256 2d46df462a9f6c4dcf888b26b722d4a1651578799e217c8715ec338615be4d9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 62f5beb1694996b887a95a823c4514e4d7f0ee7b4cf4c4ded89e6c553805ea7f
MD5 968e9657ad10542773b6c65fb6f8f1c0
BLAKE2b-256 b7c092d7b0382ecd4200400ca6e78463de6360ad751e99857b7d71de4c54645d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: redbear-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 143.4 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0ae0ec333f3464524a24a97b11804519a6489eb4ade6506c529da273f8e5bcb2
MD5 545e34d8292a985cc7044432d3465c64
BLAKE2b-256 4216e5edf60ae557e0c925c3a63fe519a8cb0d283c56e5683b6f602f6aca0813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7de585d4a746a5f017737e0ba5371fd7f59c82ee3ae269750160387db3102eec
MD5 83d2c92fb24013ee0b639e68143429ab
BLAKE2b-256 e532637fe1395848926c11e8031907fa7ee4f826786c447aa50d4c4409307b7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5aff9f45d39c7b636f94c52741356a4d4c5ec09010fee7a81926bca13bd01547
MD5 43f437d1c23f01d08e984ba72992ab37
BLAKE2b-256 24ad6eeb4851a3fefe3859e3a0286d6f234cf040ee509b51656209ba3fa6341f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d50c13c86ce1e3ac46868a82594f9defb0b379b122c015606ab15c679ea8152c
MD5 e49161f32b3406eabb60a0fdbab3a371
BLAKE2b-256 c21f818066b670a5b0aeb5a43437d059cf71bb9c911fc10b898ec47b09d3c316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e032c70c2deef9292b77c16dc6dd8bb9d66ee252a1543a4e722174550dcf214
MD5 417c581f1cf0e0f350c6dd6575aaf321
BLAKE2b-256 0666f3099d6a3011fc4601f97d89d1217fee288f667a28a7d7729b95b9971c1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f51e86f9f3a0406da8958ee8acf5bd98f457147e989b6218179c604e3fa2643d
MD5 1da0d2bc61ad44acd01db8bd7bfc51f9
BLAKE2b-256 db23d040d416d3807e4d975978e20dc767c1552ffb0843366c49a13771416ad2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b0886327e2e27090988ffdf1ac13a1c3937314a26d30b1ed37f8ed4da62315d
MD5 da66b52f7a6bddeecc34164cecb85fd0
BLAKE2b-256 a252593da3d46d6b66e755c210693c1eba39d04719a4b160ada1093f73265168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc4b6fe3f22d1f0eab2e0c1c3ea6e4d75de461caaa6f3fcc87d2bc8f23c5c89a
MD5 66bb08702c98318ab6677ad04fbb7f17
BLAKE2b-256 089c8e119771f4944b0023496cfaa6def4f257679cf44c60beb08b51a6746bb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b330d62c1f7fbf4fa9ed76f3f7f7d478c7968e9728186377ad9a5ff5fa5c6ee0
MD5 17edfdd257a55a8ec17ff2fa97f5df4d
BLAKE2b-256 bcc982a25fe4ac2b8cae316d0eceac5fa19f208266b3919ed48dc466331aa266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 097c78d14dfceb7bb968b578412497e539058c2e29c82709039122df4e19055c
MD5 3c8744895b33e5eaf5435610a7648bd8
BLAKE2b-256 064f8d5e958806a9a9f6b74b1022d06a22d1f25865282a3bdade84aec2b1854f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a449685781d688ecfe605f173f380574dacc0cf25e66dd2fd5720aff9ef1a383
MD5 c77bf6e710b70f52ef835cfb93f15bca
BLAKE2b-256 3c23ebed8aa91647f0cf000f1341ad327cf11f743296c438a2d36b3558d623b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eeed66a1c33a202dceea1927447f2472e94788d3485460940c8b8993e2b0f4d5
MD5 91d6d52e1b6a880778b1e0b1b2031899
BLAKE2b-256 c4ec7a369314652d57610f570e008ddc7e2f4cbeee2a87136e2f03a826e771e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for redbear-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bbb279be62aa354df5726da209984a20c6f36c5ca6ee46e7c6f47b6ccaaf2465
MD5 6beb717a15457a352faea70c00e8af73
BLAKE2b-256 99c02f23d98295362e9d716dbff321f99502e1d9c11fe4cec243e996871b6277

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