Skip to main content

Rust implementation of run-length encoding for brush masks in Label Studio for speed.

Project description

label-studio-brush-rle-rs

CI

Speedup decode_rle (~100x) and encode_rle (~3x) by put it in rust extension.

A community-maintained Rust acceleration layer for Label Studio's brush RLE encoder/decoder. It mirrors the reference implementation that ships with Label Studio while delivering faster encode/decode routines via PyO3 bindings.

Installation

pip install label-studio-brush-rle-rs

The wheel bundles a native extension compiled from Rust. No additional system packages are required on supported platforms.

Usage

The package exposes the same helpers as the original converter module:

import numpy as np
from label_studio_brush_rle_rs import decode_rle, encode_rle

# Encode a flattened RGBA mask (each pixel repeated 4 times)
mask = (np.random.random((32, 32)) > 0.5).astype(np.uint8) * 255
flattened = np.repeat(mask.ravel(), 4)
encoded = encode_rle(flattened)

# Decode back to verify round-trip
decoded = decode_rle(encoded)
assert np.array_equal(decoded, flattened)

The functions fall back to the original Python implementation when the extension is unavailable, so you can safely import them in environments without a local build.

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

label_studio_brush_rle_rs-0.1.1.tar.gz (65.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

label_studio_brush_rle_rs-0.1.1-cp314-cp314-win32.whl (130.0 kB view details)

Uploaded CPython 3.14Windows x86

label_studio_brush_rle_rs-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

label_studio_brush_rle_rs-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

label_studio_brush_rle_rs-0.1.1-cp313-cp313-win_amd64.whl (136.0 kB view details)

Uploaded CPython 3.13Windows x86-64

label_studio_brush_rle_rs-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

label_studio_brush_rle_rs-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

label_studio_brush_rle_rs-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (239.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

label_studio_brush_rle_rs-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (250.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

label_studio_brush_rle_rs-0.1.1-cp312-cp312-win_amd64.whl (136.2 kB view details)

Uploaded CPython 3.12Windows x86-64

label_studio_brush_rle_rs-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

label_studio_brush_rle_rs-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

label_studio_brush_rle_rs-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (239.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

label_studio_brush_rle_rs-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (250.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

label_studio_brush_rle_rs-0.1.1-cp311-cp311-win_amd64.whl (136.7 kB view details)

Uploaded CPython 3.11Windows x86-64

label_studio_brush_rle_rs-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

label_studio_brush_rle_rs-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

label_studio_brush_rle_rs-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (242.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

label_studio_brush_rle_rs-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (253.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

label_studio_brush_rle_rs-0.1.1-cp310-cp310-win_amd64.whl (136.7 kB view details)

Uploaded CPython 3.10Windows x86-64

label_studio_brush_rle_rs-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

label_studio_brush_rle_rs-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

label_studio_brush_rle_rs-0.1.1-cp39-cp39-win_amd64.whl (137.1 kB view details)

Uploaded CPython 3.9Windows x86-64

label_studio_brush_rle_rs-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

label_studio_brush_rle_rs-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

label_studio_brush_rle_rs-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

label_studio_brush_rle_rs-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1.tar.gz
Algorithm Hash digest
SHA256 0e89ce986f0fdf6550387f0bfba3889460a61cf026a3612ba428e9dcdf428dc1
MD5 f56878ef27ab5dd5bf9cdabd52c762f9
BLAKE2b-256 76d97a50dc1806f896ddeaab40e65ec6dab2ae8872da89902003ce3bd7ff394c

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38e134142fc7ca0240fec5ca25b642a6997a34bd3f6e4185a0570fba08b92760
MD5 3d7c651bbda0104130608a9c56ffa856
BLAKE2b-256 ae14fa19544f66c58935a43e558e06352dad73fcd0932b60ddca631567254caa

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0cf511c37c025c63f4e0e57d81169cd72c10003cf6986ec6670cb63e4847c0fd
MD5 5258de09de4835a4c170f1cd975e0b96
BLAKE2b-256 71d49fb225e56ea6e1cb8f1f9e615213c265bc0effab34832577e66d1bda9b3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2bacab33e5faa1530df044aa6737b4fcf49bd9cb8a55729ae142b1e86d5ff4e7
MD5 5ad0b9502b2ab37a468d2acd143f1a52
BLAKE2b-256 2c8d207f1e6c29635203743fe7a749c476b9bf2c4b07bce15942b1cfaf511547

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54c43637bd86464f087c3d95980a1609dc8214cb6f50af8ba5e71a4fb00d3cee
MD5 c03724ec47e36c5a0459580456a3c38e
BLAKE2b-256 b7e7a7017f5e4b0f1c64dc648d8be2181dfd0afd76eb7f2406eef6eaf5b9a88f

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1bda099256dc7bac9d7bc175eddd68c8f1bfa1644078b2cfadda1a4e5d7b75d3
MD5 3c1d071f10d904a610beb8d0a45149b9
BLAKE2b-256 5fdafc6fdf61714c922560d9a8e88842ff655a71a26f40b79061adfdb0a748df

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07efe036585faa54a20caa0d4e0acca1f8cca3753b2c16ef6a869d34c4094058
MD5 df7c65fc347e4fbe9708a9500edb28fd
BLAKE2b-256 8851a10644af3b9384ae38d41707706676e7f9f1740989f982b0f8d71a1c9e62

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f2d16ca62c5d5939582617fcc634813f3c3a10d00b17e38c94a0d019096aa46
MD5 aa36b671f344189c5145e351de4d7fa8
BLAKE2b-256 50b6ee8820d559f7db9d1c48352731e98db9e5c3d2c655c6899bacb64722e4cf

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 13e4d0463e0eb403473a04e8813f688d817ec815d810dd42c5b05f5912426805
MD5 e615142dba9c46cf075e09d3d07f139d
BLAKE2b-256 c9403c850d69e1e70db0f7bd4a1dbab59c68faac908f9535cb84dce91a775bcb

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d03922ea980cbaa12e69d696a150f893f6f06aacc43fe43e8d311ba11b35f3be
MD5 0c7e800547b1435a9cec9927d0634270
BLAKE2b-256 6f4f8f887d2dd8de1143abb9497059fdfa4e4741ca567d204efebd0e7aa6f2e5

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f00019fe6d690ade18360b9fd7cf9b585c141f7d3e26b9ddcc3f1d685c227e48
MD5 3d174aa6e3057f12ca2b54d955b76b90
BLAKE2b-256 5e7da0e5e9abafa105d460921606bb7c0611e8af0961717c85c4e3c27c08b62b

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 395fe032c1e8bb598ecf6c73ec91933d649cd50b4fec5e630e3e4fc18dee81dc
MD5 2d261ebdaede3d47538eab0560c003c4
BLAKE2b-256 5cb295cc9143c816374a62e98447bab817e1feb9b5c25e069eb87e02315472b9

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 053900bc98fffdebf5c01e24c8158eea03e7512086911e96e47e0f90283fb574
MD5 f5843bab11793062a35ac9dd200e1bcb
BLAKE2b-256 bb94e2bc410e0120cd0f6ba04b9e99f459513079e91aa38cfcd3cbc3f7a99005

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 728985d5e2260101d4e3c2a0dccaaf0497ed8e63df5a8f8ab65765358c19f192
MD5 36628a36cb4bf9a3642526c25ab75434
BLAKE2b-256 bc687d1a4ac3211df0be4ef0dc36de75dc2b219a2569a2806bda0f8c4fbfd570

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fdecb68fe903f3a4ced982b81e5ee6fa73ae249b3123a300c3cd585017d3b0a
MD5 2e59017c88ab86c37a01de014275bdaf
BLAKE2b-256 7de4f523cdea41feb338ed5d94f2903a3526503b56c9f04a4b106457c1ed5951

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0271f7a3100dbb7620a43700498038dfaefaae56cb72b61b7ee73d58bf63e40
MD5 1a6b5599af7a81e31eda4790dfd013a1
BLAKE2b-256 85f1b530b580635ce581a23da267465a90239201f33d0534abc7e30c0be31927

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1e28c99f285a3c0c13c0235908155dbec6ee3a118a32a84778dfc338ab1ef51
MD5 e4e5486b273745770e45817000e8135d
BLAKE2b-256 ddb0a592679b45b10975f7d7b448c5ae054245e9a40f20d54587427cbec692c2

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b97c46f5fa485debae44087cbe9fcaab32d1f041ba9ca76233bea4d696b84f45
MD5 2a6cac76c374f453b6aec0ec50aff78d
BLAKE2b-256 bc67a60a171b83ea7e4e0280f3c9c9da93968e03fab5fc7db3b7c9ffa4c6e651

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 60dd85af170072d7ff93eb8aa64fe4433a5cf6a62a37d304b5e4ca6fe7b60d5f
MD5 0bd2198d1f69c2065fe3a2260efe4698
BLAKE2b-256 aef05a94b32ba17a8b7207ff7c068fc21614b0bba07efb8a4d4daba9502796a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ce90b31cf80ae4d2d42536bc2aac6ae2ad27f84546d310551f22881ffeceadf
MD5 56b5aec4d6033ac206afe12a7759b37c
BLAKE2b-256 dfb89b40f339d972f0e38f8ee03a14b904209ca068914082e3e0968b17140ec3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63d8e8c28ec3a4f8ecd4eb08b7cc2d37407d8cec31a39cbd521aac6d6fc03810
MD5 413fea8d2aaa8dbfd6c157c2aa738d1e
BLAKE2b-256 da4f48153fdd91a23e8db1604eaed709b7eedc6a5e5c6b95232902a68f3ab02e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b79e7d472d016c5dfa0b279379656c527e2a6d43c2d66bc394d3a12534ed071
MD5 d12461982aa7d923f9f68617857c9353
BLAKE2b-256 ab9a24744c61ce741e0223b08096d2494a8fb51a0939ce706893b06f32b49603

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 47d71c2af1f06444d015697fd9622ee4804eef4f8f1549728a5cfa77696d4a58
MD5 10d17883001256c3aa6724359b5188b2
BLAKE2b-256 f6ca5186b9c3c704b56ee181dbac566d5ec558e10cd3c8ba84892202ec04233a

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0aebb20ba1d7b876105331da777ed7363178bfcf1c8ef7d27234056d7d13ce5b
MD5 663652ee2e6cc5476f80923f79e9fc9f
BLAKE2b-256 b9084790c1520a58cfd50e90cf0809ecc1fe1ca5e71d02026e0eeb112a79b3f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 905cd25adb75bcb2e5d8cddf276e0183a5f7d56a7799aab9d419e471bdf32f19
MD5 d20b69a50933a9ad001f766bd9ab92d7
BLAKE2b-256 6c61ce328b3d96f1de53935c34e3656cb9cef6b820580ec49ad83083a00288f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e900cbf8cb503721a52b1dcdca5d75d283ee36e7a5ca321222bf6a9af8e6d87a
MD5 70610ca69bc9ef2f1037f1a579971e88
BLAKE2b-256 8ed5e0968e8049e56ad76869207da12350f2dfa663be1a1af7d55be4bcd81697

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2f5c06e71e539da7d3691fd26dee08cdd218b8022b851afbad4b0f334a542d98
MD5 827f83dcdfd33207ceaf0778e4ebedd7
BLAKE2b-256 070143f573d47ba5017bbcfb669120f7dc7edd750eb9952fa8ebf25eec10f31b

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed8958bff9845c4d2fb327fda103000e4ce992ef0d620f4f4ae57440bfd281dc
MD5 c81421e646e332e8ec99db80f9a6435a
BLAKE2b-256 ef56e08ae3445b63bbd2f2b4257880d32569d19f02157c25ccf29ac119d12cd7

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de44dd9a259f4e074c958119275a209c7393f884d452d0cfee9ea3d711709d28
MD5 06cfafb05c4dc1db9a820a67d611a3ea
BLAKE2b-256 fd57fcee23a9e41c85c593274f8b234b7a3b04cd5003773c7ad76cc32d15f00b

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d0236bf7e0c6722be4824f5f618cc50034942bff712cf2aea42fe766b98432c
MD5 925fa8e7324535f08246bfd9d328608b
BLAKE2b-256 31f9ab625e6873c161b9e6d0a4f3032c3f0c6f3bea803aa682b17f2d422c9a9d

See more details on using hashes here.

File details

Details for the file label_studio_brush_rle_rs-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for label_studio_brush_rle_rs-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd3150d41835546a167bb5d61afbc3b122d318c70e57f81a3f2f580831376564
MD5 a8e4d0f59fdf819ffdce81568984b79e
BLAKE2b-256 d5f42af05dd83d6e35ed2f4a34229cc762a273837fcd0958674b8d534522fc70

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