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

Uploaded Source

Built Distributions

rcdb_unpacker-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-cp311-none-win_amd64.whl (479.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

rcdb_unpacker-0.1.1-cp311-none-win32.whl (449.7 kB view details)

Uploaded CPython 3.11 Windows x86

rcdb_unpacker-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (580.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rcdb_unpacker-0.1.1-cp311-cp311-macosx_10_7_x86_64.whl (657.8 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

rcdb_unpacker-0.1.1-cp310-none-win_amd64.whl (479.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

rcdb_unpacker-0.1.1-cp310-none-win32.whl (449.7 kB view details)

Uploaded CPython 3.10 Windows x86

rcdb_unpacker-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (580.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rcdb_unpacker-0.1.1-cp310-cp310-macosx_10_7_x86_64.whl (657.8 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rcdb_unpacker-0.1.1.tar.gz
Algorithm Hash digest
SHA256 6bf752bc8464f655b6445848ddedca7995187fcdc91d88b0ac4de1e09ffe80b6
MD5 c10a82606811cb2ab6e3de750e9302e7
BLAKE2b-256 6f4c3c58524e92563950f234d4b7cd84fb43f406df044104690472c833638d5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 717d0ad682b71a7d5ca0cfccd205b0e5876edc114bffcbc960e26a2eca9b967d
MD5 013b7dbf8d8268668eafb4d224511095
BLAKE2b-256 41edc1e9928b6947d444432410b2847723660747866cbc92d0f64461b9a5ed3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 181f67d7875f5a3de8b97f3b0ac6671e59509c5912920a22e6c38108cffc0cb3
MD5 384f1ef9792c34f450a7254bc53f544a
BLAKE2b-256 81e537804d6dd702c0b9e7bd381a13de9976f57fc5844e1cce6b3777edf0c144

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2df46dc8762a09cbe506a25b9cab8d690778b995edaf15483ec972844eca9d78
MD5 8d44388b8c16b6d038991061528ca042
BLAKE2b-256 42566df6b51d112f7fa3c55265151a724a15cac5b5d83281ee1f54b20188784f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 effa44fbc8ed2e86c9f3ca72b13532835016f63f5efd6a35a00226cf8cfb1122
MD5 cee74ac6903cf909a53cbc05e9dad089
BLAKE2b-256 9eadbcb3bb96c9c2964a64dbc6d6a7e3555cde3feae1a76b60757de2981058e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 047906113da2fbe597433dceed9f86e6ce0e9f17b740e668a271f51c3c9f969c
MD5 8d71572b46d63819a48f7a98e974da00
BLAKE2b-256 c00faa331a1937aac6aef946bf7eed7cdac1fd575c495607d9c7b8513158ca4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 236135f0f2b0cab05da5cc6b6275069616f0d9b6b3a98804729da656b45329bc
MD5 ee5ee24793ac535d08110d5b04b68db9
BLAKE2b-256 9751684d24cec334455943ebbf00ee39bb35b8bf97994f59f65be13ebf86cd58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ce6dc1e73d4d87b3e03e49ce8489a1aec9c66c9987ec820fa77f59b35327515
MD5 931f233a3fafa5e4999482fe9499bf29
BLAKE2b-256 7c0ffd6da17c4d57087ee53cc5e7c37ae3952d3979706aa664c5562c318e6da8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 019fa5f15f9250d02fb38a78e3d509bcc31adc3db418490a7675ea8f36224eb9
MD5 73251b209aa533386a921555f866cab5
BLAKE2b-256 087e9cf594d57aa4da024b1400a5f428c90e30d41f315aa4783c4ce71c3d3e7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 36ceb4497049fd44c53a8ef08c79403ae776ed4b0534715c8e0539c46fd479f9
MD5 06a0a723219692615f2178d802e03a01
BLAKE2b-256 c6e1ecca191de002b2aaab16149a4b29bdb23f89cbebb7fa312c8d3be7bd7a2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1576eeebce7882badb74163bd0047c74fc3a44c1bef9ba56acbb17f37f7eadab
MD5 138e502147547777e814335a2a8427ea
BLAKE2b-256 993d7dbb5cf62e813ee1b61ba847dca4d154f95b707f1b2e26bd1afa6a69fc74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08b329eb9ce616eb061f74cc871e6ec03866ab30fbace0d0972b9e1dbb4c9eb2
MD5 de9a895c4f789fb8b22e1875f2bd0bc1
BLAKE2b-256 983e651c4fd854737460b0951d27b8e617d2c0ee2feeb148eb89ef282b2f591e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6f1496d07c8fc44655bedea9e183552d5583ba0db777a17cda5a6a4e63b2dd24
MD5 3c9ad14a703dbf4ee2341891b6391e16
BLAKE2b-256 510b0873b924166c2e000b56b65f4f43cb43134845e0608f53157a486a258aa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 22f91fe17366df9360be317697a59b8df98a6e5bc3a031e5f9c641064117f686
MD5 7a61cfc122f13361de9f8a5d66ca7c1b
BLAKE2b-256 50f6d62d0ec735c03289e034fc03fd83e64257a70e56c66f027414639e9a170f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ead590a697676248002f7e58ecd5c9bd88729b217b5a9e21fcdeda81187c49ca
MD5 2031598812db6e184dad377eea35345e
BLAKE2b-256 656e7c8f5f248a8a7e97b19312fc53410b63017a9115ae68ce9c84a83d8b6f55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 376e03d6d4a4f1b98b57aed9bd34cedacbdb709aa91b50380e5c21c4bda3d6a0
MD5 de4ba2c04ac4daff059d9b815aa865bb
BLAKE2b-256 d44b83348a71dcb629fdff7b6dbc52ee7ab509a6fb3d29341ac318b267739a0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04c84d17465cb7d2d7ee36fc82b5f96058ecab7b62c68668cc4985e31e657955
MD5 5faacaba91e635bdea6aaa5d7020a774
BLAKE2b-256 76e61aa4c4675bf6e9df9b8e62b9b179424bae582367ba4ea9995bcf3b4f6ccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c9b871b35a41c8f230f1fa2a52ca2e25d5ae80253620bbbfe3c3d8ac930e912
MD5 4ecfcdcca5c23b3d80d068da905b4355
BLAKE2b-256 573f289384270db9ebf5c33b83724b0a6bdc6877d7a2131ed9c46e70df158ad0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3e79e4dbd3d86550b3e617c8bd422038ae2472dfd50f46aa166123647bd0dc15
MD5 018284a04bfa87ef9487364a873ba20d
BLAKE2b-256 fc30994333e724d2d6303ab235171f0673fb3fcbd2d5871bee166a4f0cafe9a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11f9892654f8e19ba9cbbce0cb58eeca1eeffc9dfc3afbbb870e68c2dffc823b
MD5 c3d382f76e0c769d57622536c7fda530
BLAKE2b-256 8199c22944111dad7b0282f4d7259960aaaea49b0818f351fcaa4dab6f65a481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1473a9a23a4e17e1be29f4d6229d2a1ce9aacfd5c0de2a990f7ec8110d4013e8
MD5 016ea447a8d2d439d1b85a8cd657d639
BLAKE2b-256 65743f52d3fd26a4183dc37fbdd282bcfb0f6f751cee625799f852194ae3d8aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 211d4ace12f52ff2eb64beffd9b67f09b9f659dbf5e4ced50c1814c9a861d925
MD5 04c2df80a27aef33e6ca87b5a957b575
BLAKE2b-256 0f95196fe51d1e3d13a2e8c3457002890ff6b419fc452396ae09335dd2c43af5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2d3f50bec3443a14a843f9802cd315633ed7105450231210c90495cd29f5d5ab
MD5 8ee5582eca520364688ba390265fe1a1
BLAKE2b-256 adfed2f8f065b452ddf31fa40808698765302bc428513b312b7b0afac4e3e59a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 e8fd42bf5040c3b1827020c86ef23e1d0f3f1a89a761caca033779083145e23d
MD5 3dc8a99db577a22639d7dd81f9b66a4e
BLAKE2b-256 0d7a9791d214e55cf3aca09143d75a25ad48dcd4a50ea3375317a2947e930d3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 be382b8f49ddc50325672ee0f25949c7c0f61df935f466a156f64981942d310b
MD5 4ca9066a06e44dd9e87d2241b4556b2a
BLAKE2b-256 5336052d71290ef3edad55dbb9ab23c651f22cc5bed68a6cf78f39b8dd3638b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44ec474177b467a42afa62b602f5d4bbca8c1846e871d8ead4e15591a0ad8ea5
MD5 e2c71f870b15faa0a730e6a2e1cd1bed
BLAKE2b-256 d9b7bb947553927c3572d354365db1e07daecf6afbc468934207ae9c7b3e54c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 79326c3c76e7276ac885c5e0b8463d5508e658951137cf27e4e34faa8ebd38e0
MD5 3895dc063d1e67b83bbe8da2aada8ff9
BLAKE2b-256 8f9fd12de55df5636e78e5b0f75587465a8b5969a161db26600dfcfbedb35440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cea7432978867d6d3cc42a6054de8133d2d39a1adabbc5b2a1a2f737c0a8f047
MD5 e5b2b540c41969fbc9d4ca9482a450f9
BLAKE2b-256 0e02d65de1482e124c8859fdd7ba9fd0f9180047d94e4b7f825e98bb66a47c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6e3b7e13bec2c771ecff41a60cf949d293cf90e52b81d77fd1d48bfcda93876d
MD5 3e19c2703880088824e4f62690c85935
BLAKE2b-256 3eaf05f9dcded5f5e922efbda0232fc4f38e86db671a81dc2e79402a5ea6f308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3bea91f8395f12bde577fada13415c8a25cc37f633e5c37e229093e7e63253f
MD5 47ae6c30c19789aafc1e7740054cd081
BLAKE2b-256 a005b6af63df725145f15cfc1c6b420a34ae8da93fdda1c11d7f85c54ae5ab63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d1372621c0d21cf5d450da1d05ebeb7e7297b1e7f2f36cc580d75fa269672f05
MD5 d7ed4aa02be480f84465bbc285e86ca1
BLAKE2b-256 fb33119aae52e103e06c25fe7654e39694a5be41381a724d09ad0bbabc22cfb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df716e2bee3b132a6c1b30c004e6e6a5b0bf38787cb662a60a9ca2922de480f3
MD5 4b93b53e72baead0b3ad2861cba54a50
BLAKE2b-256 7aa5772ac1defe92afc9bc94448aaffa304a743e20c27d75c792e10e4591a765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 772dfda930bda1e2ab08e894a184178664a4eb3c7d072c515b21602eaa6f1090
MD5 7cb62d61a4c983d8f2af000df7db64d3
BLAKE2b-256 0d7d0445ced10adb2e908ca7385d4d2b0299b7d31c3fba16e8f168492b45392f

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