Skip to main content

Manipulate run-length-encoded image masks

Project description

RLEMaskLib: Run-Length Encoded Mask Operations

Read the Docs PyPI - Version License: MIT

Fast run-length encoded (RLE) binary mask operations in Python. Core implemented in C via Cython for efficiency.

The API is designed to feel like NumPy and OpenCV, with familiar slicing, boolean operators, and method names.

Fully compatible with the COCO mask format.

Installation

pip install rlemasklib

Quick Start

import numpy as np
from rlemasklib import RLEMask

# Create from numpy array
mask = RLEMask(np.array([
    [0, 1, 1],
    [1, 1, 0],
    [0, 0, 1]
]))

# Boolean operations
union = mask1 | mask2
intersection = mask1 & mask2
difference = mask1 - mask2
complement = ~mask

# Morphology
eroded = mask.erode3x3()
dilated = mask.dilate3x3()

# Geometric transforms (NumPy/OpenCV style)
flipped = mask.fliplr()
rotated = mask.rot90()
cropped = mask[10:50, 20:80]  # slicing like numpy
resized = mask.resize((256, 256))

# Analysis
area = mask.area()
bbox = mask.bbox()
components = mask.connected_components()

# COCO format I/O
coco_dict = mask.to_dict()  # {'size': [h, w], 'counts': b'...'}
mask = RLEMask.from_dict(coco_dict)

Features

  • Boolean operations: union, intersection, difference, complement, XOR, custom functions
  • Morphology: erode, dilate, open, close (3x3, 5x5, arbitrary kernels)
  • Geometric: crop, pad, tile, flip, transpose, rotate, resize, warp (affine/perspective)
  • Analysis: area, bounding box, connected components, largest interior rectangle, IoU
  • I/O: COCO format, numpy arrays, polygons, bounding boxes, circles
  • Compression: LEB128 (COCO-compatible) + optional gzip (~40% smaller)

APIs

Object-oriented (recommended): Work with RLEMask objects for chained operations.

Functional (legacy): Dict-to-dict operations, compatible with COCO's pycocotools.mask.

Documentation

Full documentation with visual examples: rlemasklib.readthedocs.io

Origin

Fork of COCO API's pycocotools.mask (by Piotr Dollár and Tsung-Yi Lin), now mostly new code.

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

rlemasklib-0.5.0.tar.gz (624.9 kB view details)

Uploaded Source

Built Distributions

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

rlemasklib-0.5.0-cp313-cp313-win_amd64.whl (375.1 kB view details)

Uploaded CPython 3.13Windows x86-64

rlemasklib-0.5.0-cp313-cp313-win32.whl (344.0 kB view details)

Uploaded CPython 3.13Windows x86

rlemasklib-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rlemasklib-0.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rlemasklib-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (878.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rlemasklib-0.5.0-cp312-cp312-win_amd64.whl (373.4 kB view details)

Uploaded CPython 3.12Windows x86-64

rlemasklib-0.5.0-cp312-cp312-win32.whl (344.2 kB view details)

Uploaded CPython 3.12Windows x86

rlemasklib-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rlemasklib-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rlemasklib-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (878.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rlemasklib-0.5.0-cp311-cp311-win_amd64.whl (380.1 kB view details)

Uploaded CPython 3.11Windows x86-64

rlemasklib-0.5.0-cp311-cp311-win32.whl (350.6 kB view details)

Uploaded CPython 3.11Windows x86

rlemasklib-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rlemasklib-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rlemasklib-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (876.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rlemasklib-0.5.0-cp310-cp310-win_amd64.whl (379.0 kB view details)

Uploaded CPython 3.10Windows x86-64

rlemasklib-0.5.0-cp310-cp310-win32.whl (351.2 kB view details)

Uploaded CPython 3.10Windows x86

rlemasklib-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rlemasklib-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rlemasklib-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (878.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rlemasklib-0.5.0-cp39-cp39-win_amd64.whl (379.6 kB view details)

Uploaded CPython 3.9Windows x86-64

rlemasklib-0.5.0-cp39-cp39-win32.whl (351.7 kB view details)

Uploaded CPython 3.9Windows x86

rlemasklib-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rlemasklib-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rlemasklib-0.5.0-cp39-cp39-macosx_11_0_arm64.whl (879.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rlemasklib-0.5.0-cp38-cp38-win_amd64.whl (382.9 kB view details)

Uploaded CPython 3.8Windows x86-64

rlemasklib-0.5.0-cp38-cp38-win32.whl (354.3 kB view details)

Uploaded CPython 3.8Windows x86

rlemasklib-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rlemasklib-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rlemasklib-0.5.0-cp38-cp38-macosx_11_0_arm64.whl (883.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file rlemasklib-0.5.0.tar.gz.

File metadata

  • Download URL: rlemasklib-0.5.0.tar.gz
  • Upload date:
  • Size: 624.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rlemasklib-0.5.0.tar.gz
Algorithm Hash digest
SHA256 bf4284447262cf3076758dc2526471de3a727a2e0bc7b666b195c547a09f2e6e
MD5 6bb33a8d9361869ee6b059b073053dc1
BLAKE2b-256 12c44d688f7807a490af6bcf69a1d3ac1e26cbd8f7f4321d26451465f4f0fcf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0.tar.gz:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rlemasklib-0.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 375.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rlemasklib-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ead8f576c072ee18bc5c9ac0b611908793c9e7a11f84bead2a1c28be439d476a
MD5 854053ed5366a4a2241ad9ffd189241f
BLAKE2b-256 d45ea7aca7c8a84dde5b8cf8e87ad5f95cbd325bce358fb98868f2c97b047470

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp313-cp313-win_amd64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: rlemasklib-0.5.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 344.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rlemasklib-0.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 eaef956a2c04c9fef4a4d9f887a8367fe0a4b85c3e51b44872cbf9057b9f3772
MD5 2c0240dfa73fb71209e133ec922f4f04
BLAKE2b-256 01ddcfc5fd2d1cd8f042a73a39c2a48e84d8561038eda766aeec384162444108

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp313-cp313-win32.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1590d4df0c81263bfd9ae2c46568d23bcd86d95e3d92f130c1e1bb6ae888af2d
MD5 2f19664581603cf596d399c9cfca9f3a
BLAKE2b-256 499847ab03f58ae3c3e36f249db3f067c469522e5fa5cb907ca2935ac4184315

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb3e81cb881de964d83157fec54d53bf726350d73be2fa346644f8f2dde94a1f
MD5 80ab2e416d8b0c0f250de55a654d7957
BLAKE2b-256 7262eed327d76c003696c13502835ca976210ffc389bb414dd3dd5af9328bf81

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7323047477ae008ed4e63dcb6dc57c7a6ebf4eb1fa0fc05399ed3d0bccb8bcf6
MD5 5668b1f3b1d2566cd8729690a6e19121
BLAKE2b-256 9fb2b798058664debefe75ca69ceb3a04f26096f1d908115cc1f72ba30503363

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rlemasklib-0.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 373.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rlemasklib-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 011e04048155f841e740b1cef2d601b7694f9d086d3adeb59cb8643f8506c3c5
MD5 edfdce09088ff95b52ebc5ec2bb1d927
BLAKE2b-256 4e4a91eed4081130061316a1d499b3a000253d0471a8565b99aae3288ef4f1be

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp312-cp312-win_amd64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: rlemasklib-0.5.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 344.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rlemasklib-0.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 019df9fafdb329ce0f65c85988860a662e76e197eaefd5cca0594db2d76528ae
MD5 fd1337a3231315ac96bcc4f2372ce94e
BLAKE2b-256 f38de2d76b7d4392118b5af605b45ec416f4b5038d3101d666d976b0a97ef7d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp312-cp312-win32.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ceb6ed4aed5e76519b3fd65e0a44ab0f4d9b8370bd58a98ad24698238acf3bb0
MD5 8684255a6b9e329d3e9a1286bb41ea55
BLAKE2b-256 2c75a64fdc8bb22f3cb1631c1cc866f6377db0bae88ed832c2edb04ea9043cf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f7bece84a4ed0d0639a2af7890c219a9a3df08e22aec02df143179791dd0028a
MD5 b184f952da5d22aed65444dfb31e3fac
BLAKE2b-256 e3058ec8808607514f509cf245254f45837272b17bfafa4153f3bd2e229f6e22

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2fdf3ac3c85b3e8d97db431a558f51dff304f1e01e58cad58191189d4847c5d5
MD5 21e1d275b15966f62020aa3d43b90f52
BLAKE2b-256 4a908d62aeddf11c1685e72aa1d726f06ed8b769b5e48d9b48afbfd0887e758d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rlemasklib-0.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 380.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rlemasklib-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 93c63d3b1d8bbd79d595684da099d9086554abd6312dae0cd9c8d910851b948a
MD5 09d1aed93b1186cce90db49fe7dd786c
BLAKE2b-256 e15686d48c53e1f16f62fed7a7067a5d821bf9241516b2371efae94e348c5869

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp311-cp311-win_amd64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: rlemasklib-0.5.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 350.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rlemasklib-0.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8b11f8afae1084f702fbdb20ff892772b2fb56f86e21406d12084ef80d73a8f6
MD5 f63609a7cae4d88927c3d5999722f4af
BLAKE2b-256 efc4a8763c5f25eb5c39b685a2272a6fa7577afe4d790e7212019f8d8c9a7ea1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp311-cp311-win32.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1bda98b211ecb9da335b540e3eda9489277dc964cb336c233e2f49fd7c748a94
MD5 b213ab86b825e94a6c545acc3de4e4d5
BLAKE2b-256 a86b1f6fd2d241cd9db9e281bf345d1730c1fa34e67117aacf19a89f4c7b5ff9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 852b92ab1538cb978e0e130916dd9850e49e7a02c805d048ca9538b558b11a09
MD5 3f692c8269281c640c8534ee098818ea
BLAKE2b-256 d33e9154dae6cf0c393d09d8e5e1bb54470fc2bbd553848beca46a0df7cd0b32

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63c70c932dc1f3a19aa2595e60a9748728f5fe70ffe49713e6860a0a61655bff
MD5 0e98dbcede6ebab88452744f13cf5f32
BLAKE2b-256 5c4d5c3c01525478bd7617cc2eddf0c9f84bdb42dada25dc52f7c68406392a5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rlemasklib-0.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 379.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rlemasklib-0.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5f309cea167d1759dcd44e846ad2406d899c42a1ba1fbecf611ea27bd0d49d37
MD5 f5ea71b46d203ea6a40b43fe442d4250
BLAKE2b-256 84afb8fa3defdd8c86760f2f821a05ee237ef59e58520092e7221cc925e5f03e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp310-cp310-win_amd64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: rlemasklib-0.5.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 351.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rlemasklib-0.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c67ebdd6485c82c984ab8d786c2a175c205505969141a842c5998e1d31759e39
MD5 0cd951da278f9c4c344834053e3b1a23
BLAKE2b-256 3175e6ad059f0f62c077ff8179ec8523fc56975d07866d9629b1a937ce7aacf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp310-cp310-win32.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2aa3f861e39389753c1ab3d558141a614fa82cf841a835c33e611540a364783
MD5 88f8e0f2f739a3d452004ee4ef4ddafc
BLAKE2b-256 c8770d83efe1b80c74b2dc898f65e9efcfcd59929e1c53e0dca4944cb2a7b947

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 569a5acd572977db6edc6f7a2190b97f988104510dc2b88873fac808532217be
MD5 21f57230dcee42bfe10985e0963fd1d3
BLAKE2b-256 95f47a6653d4a4a5dac87f63cb6bd59d95507628efbbf433c3d995d255b8dc5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2f30fbcdfbffd6094091b7929992e78c02c3e46b5afd54df8f8baaaca3cfe62
MD5 4e4e0910dac15f96950644feecea896b
BLAKE2b-256 95b3438182c7bbd599c4dac7f16c16cc8dd2f3f7045254997348a6f27b60ffd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rlemasklib-0.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 379.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rlemasklib-0.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f7818a2f0476e7f9e7d2c900d2e10b7c1211d88b95cd02781fc9daef53a89ec2
MD5 92142f54456292f56f68770bcc02e288
BLAKE2b-256 f0983124b2ca588ba6349c339332a753a654101478b7585f867ae27c6b6ffffb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp39-cp39-win_amd64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: rlemasklib-0.5.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 351.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rlemasklib-0.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8b3494db8353df77de7bde7f5808d7a970431fdbe768a7c38528e080a50b017f
MD5 bfbcd45c017a28e36f57fbf0797f0b37
BLAKE2b-256 500e4d195df607ea1f72005c76f3fd2d31e7c14e64e3adabe34b37164a3e5e22

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp39-cp39-win32.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fec983886bb0c7d959adeae81902511d739414da238c23c739aaa26105ebf3b7
MD5 2325691fbd83fef2d2fa2afdc9548667
BLAKE2b-256 487c4c8855bb5e984a866df12e2f0147be5783e9d2d99f46026f992b0ed564c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 277027b7e9dcd296e0268ba3ec070d6de62a7f0f4aca36d2955ce27803c855e7
MD5 f8b4a96ba01ddabc27a1e3135a9e97eb
BLAKE2b-256 14d9c57f26ed5b346fd04321f53e37c12f573b124698c44bdcbab47301a069b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 044ed291d34b163c9549a59f1fc6d7330bbe9afa6572d5791d98d43d52058cb7
MD5 fd6f493cd5ad549945ffd49e598b0acd
BLAKE2b-256 cba1fc6c29fd30f5eb030cc59b0b79802ffc2bdc46097a30ebd1eec1f620a89f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rlemasklib-0.5.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 382.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rlemasklib-0.5.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9f1c53da15883d747a08ddf066bb195a6a6ccdd7ec4ca82100163cb3e198c4e0
MD5 90f7d2aad8673c03c085ea7d01cfcf27
BLAKE2b-256 bccd9a793d810b1f9f3e61abafff213a12f97d816cf6f15b48107aa6ccd16d46

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp38-cp38-win_amd64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: rlemasklib-0.5.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 354.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rlemasklib-0.5.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5ebb48851d0ea10d519117c03c194fd4e7025e82a456ba47639d518f2410ba8a
MD5 f2c7cc0ce82e17157fb7dab7a30f01fe
BLAKE2b-256 0800c6a9cb41eb19eb6808df8e806f1c4a921812cb15883d32737903bfed9baa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp38-cp38-win32.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dde7dd7c987ebd54c761dee78f0274f63a12b5b085b02a8c0bcf955195cf233b
MD5 cb48a2b7a797f1fac1a7b83d37f7058a
BLAKE2b-256 465381b7d2a558ce8bb29a5c2e199edede5e02d96cca6bc303a44fcfc8b99c0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 743cda2ceb14be2eecf3966b970c0e2db70cb827039c651517bffae9e43b5d52
MD5 23a963a77fae734aa547908bdd136f7e
BLAKE2b-256 136e920d366def7e6e70b324809212c149e7f1ce95268dc306ce8fcafbfe0da1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rlemasklib-0.5.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rlemasklib-0.5.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 786be85580758553e1ab2aaaac2f3370380dd261ee1b7e1c9cc223bc8d3bd764
MD5 5113d7d7b1de96e35befa7e94b495a05
BLAKE2b-256 69b40f7537788a58edc6a5440d2470a9da2a4abfe69bffa6096a7acf106f3188

See more details on using hashes here.

Provenance

The following attestation bundles were made for rlemasklib-0.5.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on isarandi/rlemasklib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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