Skip to main content

No project description provided

Project description

Implementation of rebotics_sdk.rcdb.Unpacker

It's a rust library to unpack labels and embeddings from rcdb file. Duplicating functionality of following python code:

from rebotics_sdk.rcdb import Unpacker
import numpy as np


def unpack(filepath: str):
    unpacker = Unpacker(filepath)
    
    with unpacker:
        metadata = unpacker.get_metadata()
        features = np.empty(
            (metadata.count, 512), dtype=np.float32
        )
        labels_np = np.empty(metadata.count, dtype=object)
    
        for i, entry in enumerate(unpacker.entries()):
            labels_np[i] = entry.label
            features[i] = entry.feature_vector
    
    return labels_np, features_np

Via maturin and pyo3 it has a python interface. Which can be accessed via:

import numpy as np
import rcdb_unpacker

labels, features = rcdb_unpacker.unpack("path/to/file")
# one thing to note is that labels is a list of strings, while features is np.array
# so you have to format labels to np.array in CORE usage

labels = np.array(labels, dtype=object)

It only solves unpacking for classification service in CORE utilizing 100% of the CPU capacity and yielding x3 speedup in comparison to pure python implementation.

Setup rust

Follow instructions from here https://rustup.rs/ You can use jetbrains Clion with rust plugin.

To build:

cargo build

To run tests:

cargo test --package rcdb_unpacker --lib tests

Development for python

  • Create a virtual environment python3 -m venv venv
  • Install requirements.txt
  • use maturin for building the python package. More info here: https://github.com/PyO3/maturin
# build and install the package to local environment
maturin develop  # equivalent of pip install -e . 

Deployment to PyPI

TODO:

  • Add tests
  • Split mappings for python and other platforms
  • arm64 support
  • Add mappings for iOS and Android

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

rcdb_unpacker-0.1.2.tar.gz (2.6 MB view details)

Uploaded Source

Built Distributions

rcdb_unpacker-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rcdb_unpacker-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rcdb_unpacker-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rcdb_unpacker-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rcdb_unpacker-0.1.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

rcdb_unpacker-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rcdb_unpacker-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rcdb_unpacker-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rcdb_unpacker-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rcdb_unpacker-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rcdb_unpacker-0.1.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.12+ i686

rcdb_unpacker-0.1.2-cp311-none-win_amd64.whl (478.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

rcdb_unpacker-0.1.2-cp311-none-win32.whl (450.5 kB view details)

Uploaded CPython 3.11 Windows x86

rcdb_unpacker-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rcdb_unpacker-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rcdb_unpacker-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rcdb_unpacker-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rcdb_unpacker-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rcdb_unpacker-0.1.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.12+ i686

rcdb_unpacker-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (582.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rcdb_unpacker-0.1.2-cp311-cp311-macosx_10_7_x86_64.whl (659.2 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

rcdb_unpacker-0.1.2-cp310-none-win_amd64.whl (478.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

rcdb_unpacker-0.1.2-cp310-none-win32.whl (450.5 kB view details)

Uploaded CPython 3.10 Windows x86

rcdb_unpacker-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rcdb_unpacker-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rcdb_unpacker-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rcdb_unpacker-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rcdb_unpacker-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rcdb_unpacker-0.1.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

rcdb_unpacker-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (582.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rcdb_unpacker-0.1.2-cp310-cp310-macosx_10_7_x86_64.whl (659.2 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: rcdb_unpacker-0.1.2.tar.gz
  • Upload date:
  • Size: 2.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.2.1

File hashes

Hashes for rcdb_unpacker-0.1.2.tar.gz
Algorithm Hash digest
SHA256 6951f4edac63583bad16ad4a475b0059089aca2e32ff565149e3142b08dfb84d
MD5 2650913dfac844b5cc274423682cb46d
BLAKE2b-256 296af38aa7483e609c95fd225acba23acfe29a84c1b213329de45238d69d3ffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85e4761008f279fbee2ca1d897842747cdd8be4d851057e287fa90d0aa43e1b0
MD5 d68dbe96149263c88af9fdb62df0de22
BLAKE2b-256 2c14e0999aeaf6435d34bb844f81352527565aea7e88924cd5d6998aacc49f6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6427d33bf5b5460f7933054b33e187acf60cb2cb0562cebd3508a97beab0f8bd
MD5 a6512ee48e0e281981f5832bbe60c5b2
BLAKE2b-256 2733d785403306bb78da2a3f7f0ebb938d7b386970e7bfdde5ee4197a9e507cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 074dffb3397f53a4acb6d1790c231b6d9b0cbd79caa3c57c6b636b4249ac526f
MD5 479df11ca044e3ab387edffef253141f
BLAKE2b-256 52490717368bd1c561f137c94895f1ad5ea9075984af3ca80aa36930829f548a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4a76e126ee63f0baecbc5230aee149de3b187cc146077b50956944c64c7016c6
MD5 15160ed275e05ca8102c59f127bd7a13
BLAKE2b-256 d4f638acfff8f37295db5e7e5be293b3bd760e3faaeb321da318a6615e188d0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc9078fccc706a3ab5fc3906ef4be11111f3fecc3860979f008c2aca7268c146
MD5 040309df44441911b27c8c4ef4f87159
BLAKE2b-256 1090382f32f0c3f19eabbd9be180015d8987afd1d5a2a4bd370eca2d0c60b779

See more details on using hashes here.

File details

Details for the file rcdb_unpacker-0.1.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 faeef08deeb13a22588e6fbcab28045a63ca0a21946bd1588bb33282495962a4
MD5 20e587c46b17f3bf8a29959ca6f94be2
BLAKE2b-256 7cbf6c26196a3d9d2bdbbb0c90346d20ddd57e6f675de765aedc87436414afb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a965381065fa5d911850e471051fd88addea626c9bd911ed693f494ba3c5e374
MD5 596e21fa73653d57f5b686e70663d4eb
BLAKE2b-256 86e2fbcd92e9eec969f794772224a16328c81b813d9c4c6ba9c6f6b8e6cf224a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 191614c00a111507982c595a27f931d673ff6d490a7b0f1a6f662dd7d6857b22
MD5 5ab7559346ff7415c7965fbd3254d98b
BLAKE2b-256 bf6c66267cc221897bd2e0c3ef5cec588bb6838bc83c9e43d1d21aff57890e4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b6593512944fa57fb3fb9ec93e2db8f64e37221a07356603bf741af8c8e6bf6
MD5 35e7b10a4bbfded1d1e407285f0daa64
BLAKE2b-256 2191ea3fc23b3aa5c50bba73ffbcd51bcdf289cba34de355d4b5483e254e6b67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9d50c5be94b0e28aba36208cbff95127600a7c7e37c0fb1cbe07ca28fb8c09b5
MD5 171dafbdfe7c2cd4ddfbe9cdb81fb4ce
BLAKE2b-256 8c6be9b436131a1761ff1c0551419223ad088cc7b1e52b01fe65cb6e0bfaf436

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe01791aae8d5e3b0de49ba7f9f7328dad4a42e024d89dca226f22cf6aa9485d
MD5 7bf2e7db46555cc92da02ee84bdb7fc4
BLAKE2b-256 691d5613be17d6049d8c1ffb183010adbcaba4361d479e31df22b84293be52f5

See more details on using hashes here.

File details

Details for the file rcdb_unpacker-0.1.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 18c60780def8495675e784126fd3a00d4886bf7f197ee3aefb0cc99f2c7c6d4d
MD5 f98322e1a712dcf574a5b80cbeee2b25
BLAKE2b-256 9be90aad5da165c0f7f43b580f2de2f69a68837f550d50329beee9c6dfcf25fd

See more details on using hashes here.

File details

Details for the file rcdb_unpacker-0.1.2-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 ba72c34b3650271ea7191620b6fa059f7c0c188e17dc8cb43f7c80d6ee25c671
MD5 e2231bab33548a5b7bf0feb2141a8cf1
BLAKE2b-256 bb79c4b8e929e3f52a0a0d25537a1ae30e1e108927f7176ea6d2db762895c97c

See more details on using hashes here.

File details

Details for the file rcdb_unpacker-0.1.2-cp311-none-win32.whl.

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 317339099d95779fe0ab6481a0165c036fe17d2bd39cf38bcdde9d8e82316f7c
MD5 b4a7841d4e66b193c93a13b9c9178756
BLAKE2b-256 0cba48562951d0a0472777d24c8016da53ee7789a1ecf25dddc08682d4c74f53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8ec1d545ec762f44182ac94eee1e176bb732bbb8e6a044152238ac520ae466a
MD5 69365acec250bb08a301890e7e67d4a4
BLAKE2b-256 c1ac5afd6be7de2c437dea3060be11d7058426b5cef154ed32003a75d5bc9b12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03b6d689be13204f3c8d22b7833f06a5e91b9f19ffdb5e54b03255a506dcd51b
MD5 e5fd60f1a09a8477eca999c9c63177a5
BLAKE2b-256 77a37d471e323410b7cd3f4d9fd908f1bbebd67ba98e36d1d2d373e4487a9d2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ad4e34ff5edd6a1681e1c4d2d07b151c65490cef8ac454ad2e66cd763b89534
MD5 26aa1c9ead3dd4f1d984e16923fa679a
BLAKE2b-256 a3e1822ddafb3e16fa1d0d3303657dbc68c044096f90d6741a62a84ec5b74225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 51e353280c3ec6e3a6809f15709f179cba9315a57be7d9cd6c43a24c7bb2ce10
MD5 68dab333ad5c6cdd693b73f104066411
BLAKE2b-256 ea8ede9ca4fbd696a9d93c2e091c604e42e689014b20e6bc322bb63b1c7bd0f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f461e89bf060fc41ba2ca29ae50b6a7fe8608ee95b84edfd32eed88afd3417e
MD5 4c81d64a9484397d9323b1c1cfd9dcec
BLAKE2b-256 b6cc9c7b0212e6256c6029898489360c99b9171383184033d942262b7ea67de8

See more details on using hashes here.

File details

Details for the file rcdb_unpacker-0.1.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8f65c81356ed695ece7c6abb3a0cce4160f1d561102522222744ab2a2f63ee7a
MD5 b05f2c893d96eac901a01cb1a17abe91
BLAKE2b-256 5a1a310fea6d81548d2746bbe101f12adb72eb8d80876be3da76937f15d5180d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69e8b0a7edebdc3d34a1f463d2bcd7f229d8d210dd20e7047ed85cfdef881b82
MD5 fbe80daa034fadd2069d1a498566e083
BLAKE2b-256 63dd50dca0ec1cc34ad31c5048e37d525eff3c85dde283de8e91bfee32c2459c

See more details on using hashes here.

File details

Details for the file rcdb_unpacker-0.1.2-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 062e9273830f927b64c252dcf61d68e5cf3a2ae467352b56c3600b7e5a9cb3c3
MD5 240ae97b8b1f252ed9c0c680b27670b1
BLAKE2b-256 6c7246ec57c9cd52019ae4bc21337225ed2284051bdfb4b91e2f5faafc249539

See more details on using hashes here.

File details

Details for the file rcdb_unpacker-0.1.2-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 41a24931eb5847397c1ee3dac6945046c5dada82e416db130ddaecb77333f357
MD5 a7d1333e56d8aa9b5374a9506988c53e
BLAKE2b-256 be85faf7c4d113b8939eb346988c2367893186baba55d190ae503d4dcd6ff106

See more details on using hashes here.

File details

Details for the file rcdb_unpacker-0.1.2-cp310-none-win32.whl.

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 1b20b8480c13b62a596953d541f2b5385f0b81f89d605a8452c77d92baa97834
MD5 002a0425243b4d24f43e0cee306be85f
BLAKE2b-256 033b645856f3c65831639b88120a31894cc77914c5b1412962a3758396cd474a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2f75a70641f1ccecde04a4d965ac9027407dc885097331ccea32bdb8c42d4da
MD5 faab7d8a5caedbedaa4ac69fd9eeb7db
BLAKE2b-256 83995c2aec56687e12258fd9d09a7c462b7186a7cf489c1dc440aaf72357b812

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91dfbbb944c5b7356551146c4b8eb4a6906972b9cf8bfdbb5b25e38bde5ac45d
MD5 e2af0160cb78b3fa6c22a11632d64ae3
BLAKE2b-256 9671aa842d6a7acc80a6ba924a931b514318d1911423d8a261d0bf4a961df489

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48258712dafba88ce126ccf270d0985b6f8c88a468740427189f7617a20abd6e
MD5 02178a8255b10e791e0991dc43ecb4d8
BLAKE2b-256 2bf554191c6835ec519482aa7e3d06ce19f9ac17023658480789db9dad5da288

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a393970080c6f211f4977e647597131e328121d0cd8282e7736fa805fe69f5f
MD5 be1a2f8c88d71d6dfe467f0710af06b3
BLAKE2b-256 ca26b168250fe19fae35f79d3cb60218eb7f7572712baf64fe35a94514788fbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a14c43dc1f9514cc91413b8c81eb40b191b7272f003dae14904ab3d812d241f
MD5 fe84e86dbc8812c43ed770609e869865
BLAKE2b-256 3d762285c8ab50a20731d048090058cfce72d47c19d05549ef42ce1a46dbab82

See more details on using hashes here.

File details

Details for the file rcdb_unpacker-0.1.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b2bbdfc10b4838ea6d5c1fe0772365a30bb0db55764358b7857e70d9a6d58d35
MD5 fa27d113fe3427d1c3a88933e8eb9ade
BLAKE2b-256 ea85bfbda467a4cc7a488c2d89847c94cb60c616dc50ada64f85de3d2b38bbd2

See more details on using hashes here.

File details

Details for the file rcdb_unpacker-0.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f85ad5f30f8004c35c1afd964fa0cf2c2e25a4988b1db62442bbe0c015d3181e
MD5 64a644affae24ff561e63e44bdf503a2
BLAKE2b-256 efe928baebe421c4e19c57f9bbf191d9841cfa8505e1b2106c577487e080a384

See more details on using hashes here.

File details

Details for the file rcdb_unpacker-0.1.2-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.2-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c19d5821c481d71c70d2b81da5662d2dae83f8a793fbce61c359a8be2f88c5ff
MD5 8cb410d34da13cb552fb3f89596d9d26
BLAKE2b-256 1edb848c22a85e609cb29b8b2bcf1988bc50210997ab4ba97c08674cdf3070f9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page