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.0.tar.gz (15.8 kB view details)

Uploaded Source

Built Distributions

rcdb_unpacker-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rcdb_unpacker-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rcdb_unpacker-0.1.0-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.0-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.0-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.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rcdb_unpacker-0.1.0-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.0-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.0-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.0-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.0-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.0-cp311-none-win_amd64.whl (514.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

rcdb_unpacker-0.1.0-cp311-none-win32.whl (480.2 kB view details)

Uploaded CPython 3.11 Windows x86

rcdb_unpacker-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rcdb_unpacker-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rcdb_unpacker-0.1.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (621.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rcdb_unpacker-0.1.0-cp311-cp311-macosx_10_7_x86_64.whl (697.8 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

rcdb_unpacker-0.1.0-cp310-none-win_amd64.whl (513.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

rcdb_unpacker-0.1.0-cp310-none-win32.whl (480.2 kB view details)

Uploaded CPython 3.10 Windows x86

rcdb_unpacker-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rcdb_unpacker-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rcdb_unpacker-0.1.0-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.0-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.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (621.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rcdb_unpacker-0.1.0-cp310-cp310-macosx_10_7_x86_64.whl (697.8 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: rcdb_unpacker-0.1.0.tar.gz
  • Upload date:
  • Size: 15.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.2.0

File hashes

Hashes for rcdb_unpacker-0.1.0.tar.gz
Algorithm Hash digest
SHA256 43239084cb4366aa4f0f2d18679a99afc693792e52fda0941334367f2a94970f
MD5 10d0d09aec2f1c0ca7effbd535c91c3c
BLAKE2b-256 b3847aec9ce6ad47aaf716dd03b20d877d0bf78f5e5c37fa816b53a8229aa61c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22d5484664e123392770a41d9c4e316b6d849bf2d71bc0cfddc2ac67c91e4d00
MD5 a77251f2c8b73533bd4c000ad247a953
BLAKE2b-256 32fb5979e62db015d1b4921e3d5c4db81e7778451da9db524cb3f953199045ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e156a7f32d9ec9c961f34fead134aec928570c3d6cd91053be6160e28b8dae72
MD5 9483d39629e81fc546f5b098ed405dea
BLAKE2b-256 efe2b5793ea65cbf0c3b44968d937d8ae8f21a5cdcdc0defa0d813b3797e2ecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9d347e3f0fde7eccc7a9216bca0871e7b90838ca3c86da8f408f4cfd3a69e3ed
MD5 9a032e339515b92e4cf5265902cbd8ac
BLAKE2b-256 e7be0ad7f2cb1fc191bc8906236618f907570068d75cabf86de2116a6d8051e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b861a15a043609bfa1cf2ca3259eae9f024dd4545ab2af289f119e533c684ed9
MD5 997b83fe90e5bb29cdde73ba6f997e4d
BLAKE2b-256 f28d4f0efd9f8886291d948e159fb88e192b55710d5785ff55bdf76a26bd8d23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a104ad25ba1022b97e9811d81e5eca0339e4814c5af0a03a21936238182a0859
MD5 86256c1d3d52b02ef9456781d7cf04d0
BLAKE2b-256 edc9cce25c0b6485051926d28ca418d86ea0a7c30d7f4f61cd34b8c598375b9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 367c1d2c8cfef9886a91d2021c0d664bb19c046c9b42151bc0ed1bebb9ce5a7c
MD5 713b974b6e54844c7ea30abfd4d7f4bf
BLAKE2b-256 67546ec845dbffa8f77b28aa97fe39b1bf936929daa8c4c50c577e1079df970b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf57bc85f2ff0468cbd3f07db4a57e6394c8e552cd211f0c0a410e5c08eb2a19
MD5 4330e53de8634ad5dce8532c7df61e10
BLAKE2b-256 5502290d860043037171c0cbe2dca3e145bbace47df32daaca7e628da3421c51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c0dfb50d3aaec64092acf9bc1ad1542a66adebe34f8756eb8c113d68bdcdcb9
MD5 e7275200ca49c8296246b4e991664850
BLAKE2b-256 e893ca3970088c1bd467317edb68969b31b79cf0e13efc492003ba179c47b7e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f6e42db4e0643905979f4516f36403120c508f1c6af39ca85b3221827f082a8
MD5 057b1387965d10022f505e354dd33fbe
BLAKE2b-256 077dd86297dcf1adc2db1399e38e949d81c3abefeb3eafdf85b04fa59cd2895f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 797de1123dbe81dd3b15ff0526247e12f5b8bf90cffd692354161676670605a1
MD5 329c3041cc8ebe4556776e6a570de9ad
BLAKE2b-256 0f665ab91ac2c00123e91ec9874e070bf786c579a54476d5f419780175083888

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0b5dc3f8f2535e8c4a40b4f188836755d1c26df7aec1f08d48e976d5979273f
MD5 1bc03d2c5ca0ef5a7ec82a5cae8024e0
BLAKE2b-256 d0262c3936304f81cc2eb98b5330bcfaeedbc08cafef14b9a3b1c7b06a1ba4e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ee075bb84bb70e972bb2b0f4e43c4eb2ab1c62d547193fda85012bb13db42fae
MD5 d0eda8bee22e25c95b468f7debd6632e
BLAKE2b-256 a0425a3413f300221d76aca4715486fba4ae8685d82e5ad3b16dbc61cccb608e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 5050be2d3dd62b6fc97020114a2a0ab5f727a7a42aa53ffb69aea26aa8c298d2
MD5 c32638af78e985f62cf5c57f611f4680
BLAKE2b-256 b6875e25cf0094b72c3c7e77e1c3d01fa479310f7dd1fe67540043e06f9910d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 380310bbfea12d3dac68c4c5cd4e3f0d4b4788dd3319172e006356f4689ebcae
MD5 0cfea64cd20280039e372e033a515cac
BLAKE2b-256 cc5e25ba28b61d9588a9b3a9972d2f9d09fa72ddf27c5cf526611e62eac4805c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e774fca3c9446929c1e0bcfffc9cd4f8e21b3b6de72a085b20d4022b1b4e377
MD5 987a3dfe39f15108d1c3c55cdb042e28
BLAKE2b-256 002d8cbd21a04ac2de4a76c61193a9441b6b8009db11de493aa6470e25802466

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1925eba055f52458c4bf1cb70f2b57f219c94bc9807b7f295c11d5a214810007
MD5 e6c5cb2de09c8109304a32df6cceb1c1
BLAKE2b-256 68249d02af6c6e25c24cd7020b7cde625589481bb620ef8c9c720f465b11e9a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a7029e2cd6b5ca7eb85a31fbf45aecededb98b2c195276d6201490997e59635c
MD5 8963ebce8d6006b913d5efe8292556e4
BLAKE2b-256 f0cb599124bb2475941b89cbeff1453fbb0aa6cffc79e0b90d34743bb3d10d02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e90aeb1ddcfe7790d916946085e23e9917b7a9002c3ffc78972df1e46cbb68ae
MD5 405dbe8979971918377f4057bd940b35
BLAKE2b-256 4ba53b6241ccc5f966cfffca4f94100244a6850f93ecc2234ff42860b321d0f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd75aef72ef681f6e71a13de23a1d114b761b2c728eaf0dc5169fe05c0754832
MD5 26dc851bf404f6dcc0ef8f2d5ecabf6e
BLAKE2b-256 561ad7d1c21c31305b4237bd342fda8bfee360baedc9b5d3be5e8d54e8eb72df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8bfb2762dfe44987095aacd7b27fabfa0dd99731af020467c92dd88e37e5f1f8
MD5 2538c57a0f5d703d9cd075a264c0f15d
BLAKE2b-256 5b5121a35d419941de9ce97284056122e89b66e39c09b9a740be6ac22ca34cd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c536cb08c13f2fc1244f0bf0277d2944e823011d3ec7ec447dfbac5f9c9a951
MD5 859860dc408fc8cae38551ecec33d7d1
BLAKE2b-256 1a6555b8e68bd037fd589caef9b2547e862551cf051994b9e8c3f2efc29b1a6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 55da5e02c4b6de35c52c18cd8ce3a9dc410fcb05f4a298eebb7d2c6f235fc15d
MD5 4f0e4ecd408d20717349ef4e8f769c81
BLAKE2b-256 7c2861c0bb693bb6e41998a71039d358899d6268e9c06d3b7c377b9ca541990b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 82d9c20b00119e75bfa9b8d8fff9bb5e8c3b6a0a8efd345742d93675aba5c6f0
MD5 b14882235c6d6876a302ba15b2966196
BLAKE2b-256 fea6f9a1833aaa11933dec694aadab2a75e0b5e7802317de9739d79f4ff9917b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 ac5babe8f3db23c3412923696f06810764f197d168ace9e1e55eedfbe9c30b6f
MD5 c50e56cfd08e4c9ebf348ae216f0c172
BLAKE2b-256 5b93be739fb84cdd30c72382df75ac4a3d829e293530018a6b61c75619dbc6a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2e89d9144fbb383e500564a94a4c3f2c237b7146066ccd3d60210638e3504c3
MD5 85865becf1c822f89c7c7a83253cb7cd
BLAKE2b-256 3655631720202245af8447f508fe11bed82e3f1ad9245335802453d2abdbe55a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ec46fb4bb1acf784f89be4b66387c44122f3959834cf1e83af92cd1468b4dec8
MD5 7a6c42d3c3c579b643f81c0539bf198d
BLAKE2b-256 f8c2279b7d1a3ae9717c7048880ac5846ac40ba3c226809f2d3ecd6e402e597f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 84cf837946c911ea60b773fe9bf9f1515582ad23f5aab77f078781ec74c54cc7
MD5 978906cae47f517d8af5c4fd3850e84b
BLAKE2b-256 b0b018d5f1ada74f24923543a2b1ce05df23edc687aaaa726bcb07740b659618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ac481c2c542c043eed51b4c806523bfe5622c8e5b1f610b52fc8bf3cbb7016f
MD5 23707c45bd74d0dda877d3ddf6427f24
BLAKE2b-256 61473d806f6e99f644e78ab75bfe5bb272164d1a076db423e04430f7ee4b1541

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3435a7e1891aeed31cebbc9b5dece9918b282774218054194ba9f1d2bbeb05b
MD5 c6d2e0fd63ee6ee4a1046f7ae00a4143
BLAKE2b-256 b45179788cd86a91667e78f5f01e62a3d6aeb31c448a31d873408ee96e323844

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 21e31e7495bcfeaf64cffe3447e032a001914dc3114ecbf9acbc9eb20e7bcbcf
MD5 77220d3fc634482a03b928b6b0185ea8
BLAKE2b-256 d0d1f42cda0e8f45b004b0bcb309c0118e9545aabc3e5a74f838a63ba6d9e58e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df5ed3c36e1a6b0affe64d4bcf6e7391d8f8c0b1ded46d98aa2531b30a10596d
MD5 b48518ae000d44dfeaec6efc44358439
BLAKE2b-256 ad8d75f2007a003b2756cdbd3062945e8a4ea8b718aad90e377341548dd54683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rcdb_unpacker-0.1.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2cf8c7bd1da2fcbf6cad9a9836acab8e50a102628e9326713151663e7def08d8
MD5 7b8304a0b647c6c874f8c66dbbed1aa5
BLAKE2b-256 2ab3f253de0ea6110656b2b4e2602d7d998e04dcd6a37bb9cf9d1cd0f443cb88

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