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.3.tar.gz (2.6 MB view details)

Uploaded Source

Built Distributions

rcdb_unpacker-0.1.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-cp311-none-win_amd64.whl (470.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

rcdb_unpacker-0.1.3-cp311-none-win32.whl (441.4 kB view details)

Uploaded CPython 3.11 Windows x86

rcdb_unpacker-0.1.3-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.3-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.3-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.3-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.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (575.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rcdb_unpacker-0.1.3-cp311-cp311-macosx_10_7_x86_64.whl (652.2 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

rcdb_unpacker-0.1.3-cp310-none-win_amd64.whl (470.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

rcdb_unpacker-0.1.3-cp310-none-win32.whl (441.4 kB view details)

Uploaded CPython 3.10 Windows x86

rcdb_unpacker-0.1.3-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.3-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.3-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.3-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.3-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.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (575.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rcdb_unpacker-0.1.3-cp310-cp310-macosx_10_7_x86_64.whl (652.2 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rcdb_unpacker-0.1.3.tar.gz
Algorithm Hash digest
SHA256 abb4b6c78317ddb57c517e0ca4c7c799ecf0dec4614feeee9c56c4024d6d0876
MD5 43c9caa0fb70541c86ecae4b7155bc69
BLAKE2b-256 d46f7fcbcbf7e7062789e27086591fb190a673c36e85a90cd7f031e8871c781c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b9dce5f941cee4d8a8c487eba56f1ca5daedac6f2f36d411f40b4ae53dab2d9
MD5 1bf214122101ff1bdd22b982da591d88
BLAKE2b-256 7d1673cc445204e2e43942f588dd1018e2e5b4951dc242d0a1235e6ec2226acf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9f0b6ff08898d60ccfdb55dcce6d4744ce9ac8ea02080c4fb35517527b7b8faf
MD5 73971d1054c4cc73e7386b02e142736d
BLAKE2b-256 edc09449e0c9462301795ba7a2665a0eabd7c1a9bb1491147af6a38232c2e731

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c017ed16d842379be5e1f8dfcf726ff9afb97da414e11a7e87cceedf8b19006
MD5 7a66b1df4fbcd208762f718b25863de2
BLAKE2b-256 b550c353d45e6d068fa0d11a28626562d39af2740e05323750109b049c1bfc5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 67603b65b2ad132e6b5caf564e8b80c8cd4261cbcda9ea25dc7c815015d7bdd2
MD5 0bbc31b022c31c17dbc69d3ce8bc796b
BLAKE2b-256 02485dc72c5414fca459d9bbe94cb5c93e53d8a43c9d084e1e9ab56751b3bbd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 340ebdce699d8092a56bd2dc1d9f8f4828afed63993ce317af056e0b01ff5f11
MD5 89ebd30ba8a3e0758fe65f7568f92a7f
BLAKE2b-256 ef9b48c80bc04b1deb92626f9ddc811600d0f8fa606aa8b50fcdad34b9934266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 982fbf04bee287cf20e9aa6e5351ece2bc592bd7b138faa48604623b5ef701ec
MD5 ac8f42484c9054400616b4dfc2240b42
BLAKE2b-256 1b4786bedcfbfe197454cc194de982b01a565cd5a94bf98120a046c2df03789f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7492f83c2a6f6cc449db4d3755c9b84b429af99636ec692770c18dd4c55c890
MD5 82c82060437e8b2784407f77305f4d0b
BLAKE2b-256 bc5c5fe31f6f7ffa39b51b181b3f64d799d7eedbb2bf4598fd82c869df4a2586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 941422ca7cadb5bd36a45dbdda73ac646d1b55952c13381ed087ffc59ec87458
MD5 2dc01dceb9d8182998af7d56602b25ca
BLAKE2b-256 875309e788a4240fc4f36f44e9cc6cddf043a0c172908a7d0e0d043039607ab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f92fe15d617766e2b342ba73fc701f1f6ed9eda2bcd857b89d12ea1a33bbf212
MD5 b6758719a04a3bdc3e2eb731f27cc9b7
BLAKE2b-256 5c75931e572c472cdba3e6d3857402254a3e94894d2968136293c116c68c2863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b03f6beb076c0d7b64f851daf6dd95e71828268e217fec035df3555a68c55e16
MD5 d407f5a5bc77e0214d75fa431d5b6053
BLAKE2b-256 44b6d52fe921bdd15a6fbfb77484b3bf22024ced4364ef556a75e1c1f8406508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58f9404242d65efe0e892c77a1b263888b29e1fc296afd8a5f000db9a72f7493
MD5 6acd880349b02899c0d0a146c3820bd5
BLAKE2b-256 1a733e318b1c4e0e2343cd3b974f78afbad694078a7cf0e3fb5e637ef1dfa78a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 84e12f28698cd7275431de8689f7a2dcce582b77a0004f4081b97614adee7f6b
MD5 2f712fd37e1d675f2568698f2cbe5fee
BLAKE2b-256 4c881a16727b1ac2f7bd6e3817df328a91eca3af5923b023a1a43f6b2822c844

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 3a0d79204d2eb84b35345ac7d4513ce7c8dd8c6c1226a8da2672760b65f9e141
MD5 785866e0347c6882ca13b51c02d5982d
BLAKE2b-256 2af400ef36f581768b764f75c53e6f65f7d39d1d386e400b268a23cb3712e77e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 f67227164d48546108a44e44ae60b6824441ac85478478a6c27ce33497db2c6a
MD5 f54eb7f6ff0038e233cf9600e8f9a7f4
BLAKE2b-256 1a4f33edaf3fbdecce13be7ae35e0335be957e9ba111c3c4742954e77c982d5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 951ba80234dfe50ebb518e1a6ea5472abcdb7c46cb814dd20303b91cd8a0b973
MD5 7c6bac415cc2888f0a299dc25244e400
BLAKE2b-256 9c4163eccd0dee8f2d4cbc2326f21ded86ff0dd432e691c22494c1a392a671df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e127abb2cac5ba5a5989ff14e197c8dee40115fd0727d3afa6dfa50895d71713
MD5 2e0ee8d6a90c2b5a0994c59b819a16c8
BLAKE2b-256 c5b3cb3fa9f6cfccde0736675b418dc0c84968eee59cb3da84c1a38e3ce7a301

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d4320ff86032c9c04994d40157959bdaf47a45d50372c340768a255c139bb18
MD5 7ac702f2c8dc7503e2e25e5d64d0a6e9
BLAKE2b-256 2c1607e5ce1112cc2cf399dd15e87a32ed9fed50726925bd5298d497dfae00ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a37616a38f3aab9c420b2878dc100008c596139242407845dfc5ec628c03934
MD5 38d3c4d0206a4522a135bb1f90920d8b
BLAKE2b-256 ecf2dbf403de49775abefed8b4f51a0fa5d6fa18e08676c7dacd012eb869af18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7245b4bb71ac664da6cec65e1d925ca52c66cd65450389b3f0413dd4065404f1
MD5 90502361a03a825f99c823b8ab7f00f2
BLAKE2b-256 fb94ec03a5a87ad0b7e2d0cf77a46884b50773215958982e08281e47a90a9091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 34c89ff333b37e6744cf59eff4636307270449e22326e322243586fad1256c87
MD5 b60c3d59aed6434637d992cf6e3621ec
BLAKE2b-256 9b7daad2795c897523e4650afb7035bd969e312af45ec964988a7bff7700376e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a7ffed3953390c847f2effe4ade3bdbd90ee1dd37902aa0f31a772b5af01928
MD5 f034d00ce027b53bafd63e9310ded8a0
BLAKE2b-256 6c82042111f989ad146c4bbf8cfdf9b67faef4fbb733902e10ac1fe8d3fd1c70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 02e88eaf25764a9eb98d21f3af3e19822d4f549ff9959f629423fd896d0cdc8f
MD5 b2f75f03cbc8d9f7dbec9a5a19b5aaf6
BLAKE2b-256 4cbfd436636dbd47e8219e1c3ddcb9ec06a4bfb29f89447c3cb0f567ec6fd338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 3011d5cbd2bc2b1d5a53a282775e612a0172c6c040935804181a42a4e4c258e9
MD5 8e73d9d74ae5c7df323d91d2379b5161
BLAKE2b-256 b5d9bb51c4643065ca6ac49bcd3ce9a0373e7fd9238907a7083d2c36b05ecb02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 0ade866070f73a805c0dc5bb937a6b815f059d404605a78c0bc54b3e7cf71d0d
MD5 9bb83e3c1960ed6ebfbb5897c6a83ed5
BLAKE2b-256 01292814b595ad82878192f030656f4994465a1237ffa24b48f349419de0d2f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33a221530e99c28e91bad16f181039b6add17bb01238f61435a59ac036b9e786
MD5 4964bdd1575c8b8478f5b4914e5b37bc
BLAKE2b-256 a9efc8bc314c06417959ed70340592ce2067c1fde5ee734c49b38ee3f972a819

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97f909ed888d823ce9b4a5c1e37a2e26953cde9517a6190b5e8536f254be5317
MD5 1c4cc8abe8751374d7150f5d310c776b
BLAKE2b-256 cb6dd3d09214c0810766757887872600dd04d0731eed61059e304690ea8e2a07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c38ab962d32f7e77210adfab7961e7c5d1998089533ce601378435867f463369
MD5 c780f11c19bfd6933d2ca8c4556439d0
BLAKE2b-256 99d165d82e1c3962cdc18023374232ce3bd02ec04c00f6c6e7aea2546bbd8aa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf346e2636c8e9d85bfa716fddd5429f62edd61358e3d21dca8664aea9ccb13f
MD5 7981fd8d70e7975272199ca9178ffd3e
BLAKE2b-256 1544386e81b3d69f4ee6512ff611ba082e1350752f3de6336140bcb057db1428

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eac09d556ea2bf92146812983b233ff5a543b730a335d58d43ca01db73516660
MD5 0fa3117b848095da4c7a6778de16add0
BLAKE2b-256 f851a8196b41c0ed08f16ae1296f245e261688376a18497567a18e7b95b727c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3252d5916ed30e5ca39830b849bb7a35dda3fff6bc9049f92f76f1fd5a86d767
MD5 a2f386d045a0064ef9afac36beae053d
BLAKE2b-256 6091333026258e0f03250293aa72e59aa36a197f925ce3b379c6ca4ee3f3fad0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16da8be96dd39e1be49a53a74e34564244dd7178903dcaf47732ee40b627a534
MD5 b5d3e207bdabdd8fe3b802f969b83d31
BLAKE2b-256 9e65b1cb25acff9512f6e9bdd782e924a40c69aa887c26dd0db45af9ec99e480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.3-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e8dbec702ff163339244aa84c046306c2b0c8dc7f4748a7a68867d8fb94cdb4a
MD5 be599d9df3b2259c5f6dc843f1ac246f
BLAKE2b-256 1e999592b59a98fafed6b3c98272a10e2e2f43c096c0b4acfb7af8b07addff7d

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