Skip to main content

Rust-based Process Mining

Project description

r4pm

Python bindings for the Rust4PM Project: Process mining in Python with the speed of Rust

This library provides basic import/export of XES/OCEL event data, as well as other exposed functionality from the Rust4PM project (e.g., process discovery algorithms).

Features

  • Fast XES/OCEL Import/Export: Efficient Rust-based import and export of .xes, .xes.gz, and OCEL2 (.xml/.json) files
  • Auto-Generated Bindings: All process_mining functions automatically exposed with full IDE support (autocomplete, type hints, docs)
  • Registry System: Manage data objects and convert between types as needed
  • Polars DataFrames: Polars facilitates the fast transfer of event data from Python to Rust and vice versa

Quick Start

from r4pm import bindings
import r4pm

# Load an OCEL file - returns a registry ID
ocel_id = r4pm.import_item('OCEL', 'data/orders.xml')

# Convert to SlimLinkedOCEL for analysis functions
locel_id = bindings.slim_link_ocel(ocel=ocel_id)

# Get statistics
num = bindings.num_events(ocel=locel_id)
print(f"Events: {num}")

# Discover object-centric DFG
dfg = bindings.discover_dfg_from_ocel(locel_id)
print(f"Discovered DFG for {len(dfg['object_type_to_dfg'])} object types")

# For case-centric event logs:
log_id = r4pm.import_item('EventLog', 'data/log.xes')
case_dfg = bindings.discover_dfg(log_id)

How It Works

Auto-Generated Bindings

All functions from the process_mining Rust library are automatically discovered and exposed as Python functions with:

  • Full type hints for IDE autocomplete
  • Automatic documentation from Rust docs
  • Type validation via JSON schemas

The bindings are organized by module (mirroring the Rust crate structure):

from r4pm import bindings

# Top-level access to all functions
bindings.discover_dfg(event_log=log_id)
bindings.num_events(ocel=locel_id)

# Or use submodules for organization
from r4pm.bindings.discovery.case_centric import dfg
dfg.discover_dfg(event_log=log_id)

Bindings are automatically generated during the Rust build via build.rs.

Registry System

Data is managed through a registry that holds different object types:

  • OCEL - Raw OCEL data
  • SlimLinkedOCEL - Memory-efficient linked OCEL (required by most functions)
  • IndexLinkedOCEL - Indexed OCEL for analysis
  • EventLog - Case-centric event log
  • EventLogActivityProjection - Activity-projected log for discovery
# Load files into registry
ocel_id = r4pm.import_item('OCEL', 'file.xml')
log_id = r4pm.import_item('EventLog', 'file.xes')

# Convert between types (either like this or using r4pm.convert_item)
locel_id = bindings.index_link_ocel(ocel=ocel_id)
proj_id = bindings.log_to_activity_projection(log=log_id)

# List registry contents
for item in r4pm.list_items():
    print(f"{item['id']}: {item['type']}")

Simple Import/Export API

For direct DataFrame operations without the registry, use the df submodule.

XES

import r4pm

# Import returns (DataFrame, log_attributes_json)
xes, attrs = r4pm.df.import_xes("file.xes", date_format="%Y-%m-%d")
r4pm.df.export_xes(xes, "test_data/output.xes")

OCEL

# Returns dict with DataFrames: events, objects, relations, o2o, object_changes
ocel = r4pm.df.import_ocel("file.xml")
print(ocel['events'].shape)
r4pm.df.export_ocel(ocel, "export.xml")

# PM4Py integration (requires pm4py)
ocel_pm4py = r4pm.df.import_ocel_pm4py("file.xml")
print(ocel['events'].shape)
r4pm.df.export_ocel_pm4py(ocel_pm4py, "export.xml")

Development

Setup

# Install Rust: https://rustup.rs/
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

# Create virtual environment
python -m venv .venv
source .venv/bin/activate

# Install in development mode
pip install maturin
maturin develop --release

How Bindings Are Generated

Python bindings are automatically generated during the Rust build via build.rs. Thus, bindings are always in sync with the Rust code and do not require manual regeneration.

The build script:

  1. Reads function metadata from the process_mining crate
  2. Generates r4pm/bindings/ with typed Python wrappers and .pyi stubs
  3. Organizes functions by their Rust module structure

Building for Release

maturin build --release  # Creates wheels in target/wheels/

The wheel automatically includes the generated bindings.

Running Tests

# Run comprehensive test suite
python test_all.py

# Run simple example
python example.py

The test suite (test_all.py) covers:

  • Automatic type conversion (positional & keyword arguments)
  • Process discovery (DFG, OC-Declare)
  • Registry operations (CRUD, DataFrames, export)
  • Simple Import/Export DataFrame (df) API
  • Edge cases and conversion caching

LICENSE

This package is licensed under either Apache License Version 2.0 or MIT License at your option.

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

r4pm-0.5.5.tar.gz (62.0 kB view details)

Uploaded Source

Built Distributions

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

r4pm-0.5.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

r4pm-0.5.5-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

r4pm-0.5.5-cp314-cp314t-macosx_11_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

r4pm-0.5.5-cp314-cp314t-macosx_10_12_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

r4pm-0.5.5-cp314-cp314-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.14Windows x86-64

r4pm-0.5.5-cp314-cp314-win32.whl (6.9 MB view details)

Uploaded CPython 3.14Windows x86

r4pm-0.5.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

r4pm-0.5.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

r4pm-0.5.5-cp314-cp314-macosx_11_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

r4pm-0.5.5-cp314-cp314-macosx_10_12_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

r4pm-0.5.5-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

r4pm-0.5.5-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

r4pm-0.5.5-cp313-cp313t-macosx_11_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

r4pm-0.5.5-cp313-cp313t-macosx_10_12_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

r4pm-0.5.5-cp313-cp313-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.13Windows x86-64

r4pm-0.5.5-cp313-cp313-win32.whl (6.9 MB view details)

Uploaded CPython 3.13Windows x86

r4pm-0.5.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

r4pm-0.5.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

r4pm-0.5.5-cp313-cp313-macosx_11_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

r4pm-0.5.5-cp313-cp313-macosx_10_12_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

r4pm-0.5.5-cp312-cp312-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.12Windows x86-64

r4pm-0.5.5-cp312-cp312-win32.whl (6.9 MB view details)

Uploaded CPython 3.12Windows x86

r4pm-0.5.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

r4pm-0.5.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

r4pm-0.5.5-cp312-cp312-macosx_11_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

r4pm-0.5.5-cp312-cp312-macosx_10_12_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

r4pm-0.5.5-cp311-cp311-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.11Windows x86-64

r4pm-0.5.5-cp311-cp311-win32.whl (6.9 MB view details)

Uploaded CPython 3.11Windows x86

r4pm-0.5.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

r4pm-0.5.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

r4pm-0.5.5-cp311-cp311-macosx_11_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

r4pm-0.5.5-cp311-cp311-macosx_10_12_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

r4pm-0.5.5-cp310-cp310-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.10Windows x86-64

r4pm-0.5.5-cp310-cp310-win32.whl (6.9 MB view details)

Uploaded CPython 3.10Windows x86

r4pm-0.5.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

r4pm-0.5.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

r4pm-0.5.5-cp310-cp310-macosx_11_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

r4pm-0.5.5-cp310-cp310-macosx_10_12_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

r4pm-0.5.5-cp39-cp39-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.9Windows x86-64

r4pm-0.5.5-cp39-cp39-win32.whl (6.9 MB view details)

Uploaded CPython 3.9Windows x86

r4pm-0.5.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

r4pm-0.5.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

r4pm-0.5.5-cp39-cp39-macosx_11_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

r4pm-0.5.5-cp39-cp39-macosx_10_12_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

r4pm-0.5.5-cp38-cp38-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.8Windows x86-64

r4pm-0.5.5-cp38-cp38-win32.whl (6.9 MB view details)

Uploaded CPython 3.8Windows x86

r4pm-0.5.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

r4pm-0.5.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

r4pm-0.5.5-cp38-cp38-macosx_11_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

r4pm-0.5.5-cp38-cp38-macosx_10_12_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

r4pm-0.5.5-cp37-cp37m-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.7mWindows x86-64

r4pm-0.5.5-cp37-cp37m-win32.whl (6.9 MB view details)

Uploaded CPython 3.7mWindows x86

r4pm-0.5.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

r4pm-0.5.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

r4pm-0.5.5-cp37-cp37m-macosx_10_12_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

Details for the file r4pm-0.5.5.tar.gz.

File metadata

  • Download URL: r4pm-0.5.5.tar.gz
  • Upload date:
  • Size: 62.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for r4pm-0.5.5.tar.gz
Algorithm Hash digest
SHA256 77254b2c5aaaec9e29bb6486749f4ccdd1aa37207feced5d81cbdeafe0f86053
MD5 9c5282b6180e56a934956367b7a56035
BLAKE2b-256 5b12b7e75a084d94237fd0a13d466716444096f1cf3fecac45bbaa596c8d0384

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48d61920b05e49352fba3039f7e914190236f907863a4c3947ca70d3b0c8ae36
MD5 a493d7685d5ecb07ad0485dafa16cee7
BLAKE2b-256 76c72c01c6c9bbfe81ba54dcdd6839c8b6b4e5d2b537074682b8fb8396306fe5

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 251c3b107ff65717e498d53ab1f5e6607133087d1a6e27691366b38dbba76a8c
MD5 f3f6601d54892104d5b75e4f9e1e9b96
BLAKE2b-256 3e185e9049589a79bd3c994d3203a2f62057bae0ae26508fba545008ee1a42a4

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 850fcb2ae42e623d12ccd9cfe51cbc46572847c03b8deeff996652ec178e6a86
MD5 ea09332d82648b80792b6d8f5d06e714
BLAKE2b-256 6a5a3d00fd279cdd68359bca1360c78ca4823daf6e2615da5c6ce2a6a81b7698

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6c55af0e8269a59ef5907567fcf10b98d23b476b0a926808cf817b9a6b6bffe5
MD5 aa425d87c281c8017891a651a615a9de
BLAKE2b-256 549e2619b5b6fb5241db0dd15a6ab985387c90e8f4b62a5807614a1f6f273cca

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: r4pm-0.5.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for r4pm-0.5.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b6126b90504a80b4ff17685b69d427f81e8b409e2ea53ee244b463b0a465b3a9
MD5 80adfa45832d00083fc63796aeff9e51
BLAKE2b-256 9ee3113dff48013afa6e3116bd51bf271f02c2f3f5614ec8b18d510fdfcb59f6

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp314-cp314-win32.whl.

File metadata

  • Download URL: r4pm-0.5.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for r4pm-0.5.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 48acfe2758372dd79315afabdf8fec51c250cc8b79828b4185c955ee4e081a86
MD5 cee2885a1332313e756d6ae1e60061e5
BLAKE2b-256 62767358e34831da8511e3af6a014fd6afd3839710aea17dbcea1acae1cad489

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b4d995ab958e2e361eb2618f16f4ab89f78b41645b9b7f2cff3e62a409c9d5d
MD5 d297baf0cf9232e194d662be46e90e6f
BLAKE2b-256 f10195638d03ae6a336017e5c55bdf87973a0179479d0ff00a43e5cef08644ba

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2e85b02ff015ccdc50b41bb028cc6446b82d610b718fe83bc7484e4585b16c37
MD5 19f31c0c1015229b19931bae9906cc2c
BLAKE2b-256 b8f7006e04913a2cbafad248605b23ee327a722e9ee3c42e6e5bfb92b94d2b05

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c057458f0fc7243800b2b765f0c931684505a7fcf664f637b8d8176e7cdd500c
MD5 1a833145b1cd8e2609d07b7ded291d71
BLAKE2b-256 f6030fe2db927f5af010a21f2507b3e9141d60f8bd7f5cc0277363906e314468

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4497cb1d3fdc80787b76160bcc76b04e3bbdb5bd6c78104bdaab1b56998d15b9
MD5 5a3bfcee56ef74981263d05e50b7f304
BLAKE2b-256 8cee8e019a7ce586402c47015fe439c32355d3180bc419b557b7443a4d44fd81

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cbc27473d5a18b80e25a48b5d36a8666c39adfb25ec29aac1b6b0d8e2156b36
MD5 9b1a066b676fd43c468e983137b06d22
BLAKE2b-256 f9d7ff644e8fda9f57e4ffee9d41f7e9999b85fc5009f4df70662c682667f0c9

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1acce5893f0647f52ebf31e6744a3fa17f47a1a322f622572cea1a69218f7ba0
MD5 93901b66487d458c09353dcedcb6ddec
BLAKE2b-256 715fac5b2ccb762f53e8a2856b36b2de8f480df04a79bcd179e5c54ffa34b4e2

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b4633e9619316fa7d3b0e428f2b3b36fa256166bf2feb0f5b4e395b9ecc986c
MD5 d12b5160d716cbca5eac5b3a6ed0a392
BLAKE2b-256 d78be9db396a960e9acedc601de4c44b6076648dc4397f0cef69893534b9a582

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd02e9ea4a41f3b0a8290ec1974ebede7c7c687da197a93b75891b33581509aa
MD5 5e52c1d564da5d483194fcb9c1a96186
BLAKE2b-256 ba3acdd1b1c9e4479af4b58c5d961487b96d969022a010bcf9cde82b50494bdd

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: r4pm-0.5.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for r4pm-0.5.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 857647c60ad41105260902549ec26202a8d8458c059b44e7cb6c7fdb1c6fd4ef
MD5 77021fe8a4a4f31570f8f80b938c5cba
BLAKE2b-256 c270e62c628d74249e5afc21ac7b02e645588eea9196886b0c89ce3943d0e1e4

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: r4pm-0.5.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for r4pm-0.5.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d0ebbe857c4cf85163854879f163e24c1fba485cdae8d9a59514d8b063a409cc
MD5 1185211db7ce059cec47b435104a6b44
BLAKE2b-256 61d9f8a7cd2a6be66bbebbf80791615b564c666fe25677bb10ce260ba58e7557

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70f214a6bdb48720c54ef26dae0e1b913ff4e5804daf47edf1635a7a8c6ee9b1
MD5 7787efb976945fe17e019c951185e038
BLAKE2b-256 91cb64cfb6cc9e0abc4bff6de0ff60cff59947baef575c6b0abb7f265a4da99a

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a97f845a92f20027c996990966614ecf6b2efe521989c436dc75ba00c8b94567
MD5 c9b381b4e8b844bbb4374b9af6d374ba
BLAKE2b-256 01344c8bbf8fd395e14adc9ef655673b6cb8cd9fc9e08165d9b3224b0f1aa79d

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afd3ea8d0f2c2c180fd87107b769d8fc17f2a270b81638b0b072e7acc35233fc
MD5 279b74aa8e487c1f1622eb7e5483bec4
BLAKE2b-256 11b6e4f0a05ad008365c35478d6ce97e9f9ad6bda542d27df5dee0ee6896416f

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6bdb346f78681ec86f81c5b089ef20acd1d7bfa5953a2ac7aa6f5c40368264c8
MD5 a79c7bc469d37edc573806b6bab2ea95
BLAKE2b-256 cae91808dcde0c7aab18e259d2d375c54c354c569df5884a5e39f1543add42c7

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: r4pm-0.5.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for r4pm-0.5.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 22bef10253de85f01991caf51bca6a2dc8e62d957819f0f1512abd097de69b0f
MD5 7640365afab100069e121a1fc71e30e8
BLAKE2b-256 d717a8ea0513db11c5447d62502c98f8ed69c55f1b9546754e15527910355a8a

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: r4pm-0.5.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for r4pm-0.5.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a99ac29a1117ee91e1d71b1c0a464ffd499cbc67a1599ed0eed7979c5afb8406
MD5 e7bb4850b9e863748396b44b5e8a3ac1
BLAKE2b-256 153c515bf1eb6d1ece08b5322c606a75e13bc08c68c0b38188e8e4302c4299bd

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92fed06fd98b3de964c09c5f7119abf658ed604b1b340ae8b944094286e604fe
MD5 decd849f1335ba4662b0c8dfeb1fb7e4
BLAKE2b-256 c56c446282da20372306f5d245b6439592cbbf5194f4dbdcfabd2e738e6d5e52

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc10f7b035eccd61715c8fefe39555d9eeddda9e09b07401d0179846f87d1a4d
MD5 ec71ecb72c1199bd73471f0c4cc34e09
BLAKE2b-256 c6bbd0e0d4e923d6b1d3bab73300985a76aa597e4e821f5c55787ba90307c7c2

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a812838bfb2b28239df0d42f65e78ba4a85e9826648bff8da4b9aa4104ceed25
MD5 6d9a2ec4cf1f1cada7982131d547607d
BLAKE2b-256 c00199ab77846f6efc99784cb365f41fd843aafded011404f223a05f53963c4d

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eb3c8786adfd643a937fff519cd48721008a541c45574ed952a47b52f8908d1d
MD5 53d8bdbfa34acec09cc01bc9dff4794a
BLAKE2b-256 d5a060a098bed4827abce3d531d1f4f97e7441812caabe136dcd879fefee955b

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: r4pm-0.5.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for r4pm-0.5.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b96b1259ecd04dc09e6db9ca337b9e512ec1791592efd4b1e674ba6f3c56feea
MD5 8dbee53de4af2fcbdc04342e262bc30b
BLAKE2b-256 08e9803f8db6f7e133b296331688b7ab525b1368f3892d2f8009175a36243ca4

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp311-cp311-win32.whl.

File metadata

  • Download URL: r4pm-0.5.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for r4pm-0.5.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cb3493d1cff77adadc260281c042c4f1e8f74eb06b4e89953f6e37e115efa080
MD5 1b18bba68dc1ff35f6221db835f96a53
BLAKE2b-256 8cfc6620a9994df2b94d25eb6211c9f6520dbb1f3e4247719e3f9dc6e25cd79a

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a05c6c496872b58cc53ef2bdc9ed161f79c6c1ed7a59d29af6b27d1eacda47c3
MD5 12988f3c1682cad02c70a0d36cbff413
BLAKE2b-256 4275980948bf7c97a12f26701a7a3868e0c6658d31ca68533d5f8b8a50a0f42c

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 da49275202ce277fb96614dfe5b6ea16b45746aeb97d77eaf6f105021d0a7693
MD5 61991c9a32529c62c38cce5e4b402474
BLAKE2b-256 931f1cb54f12a564985984e4c17ade5b090c3d1154b6ccca439207e1095dbdf1

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4077b37ff30cb1b668aad79346e70419d946b927ec983494d61c65b4aba8f42d
MD5 1add71334be31a15e8a109649cc7b2ca
BLAKE2b-256 a3c72eaf5f2a2f69887c5b7ab957d0f3e5c3414fa74b8df53c65b9598f3f93f1

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e662258968669357a471007f1242c69a816486bad38490e680b7b95d8edd8aa
MD5 a5ef8a23cdb5d160185378e868cbe3e2
BLAKE2b-256 cbda3e8cf0196527ed0364512fc7beeb86ea19a5a6dc9c598bcc3c9ac06887e0

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: r4pm-0.5.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for r4pm-0.5.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 335d3d356087715274386d641539d27ed6cf54be29c4a1a5a982c42b114960c6
MD5 1b9dd8fb92a7ea6429f5e0023f0bcfc5
BLAKE2b-256 8bde2a8e3688ae73cea37fed3865de7010069d4a02c40fadf03cb766be764155

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: r4pm-0.5.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for r4pm-0.5.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5ae056d8608bf0930fbd958c44da05ad75b728b919961bb7ea73bda2608b1bea
MD5 d2c20c15587c9303062b5c9c81e57bc8
BLAKE2b-256 8464d9fc8134975129dda17a4750faff90dc3b1ef3dfbc69ba5a0bee648bbe20

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7760dc8d78aea00b1ccb147e46eef264599cec10010182260cb6256d05ad65e5
MD5 23681f2efa7a2c1a356a52233a0c97bb
BLAKE2b-256 3577364cf3b6c922efd735be8254964b84d99d6fab656b406bea9777d5c52c15

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 51b340a34d9b8837b9a3752a7015990c5c97691d17248fd05501e8b3a467229b
MD5 fc05f55917f0b0cd7664a0949255fb3b
BLAKE2b-256 c39df3b64845fc3782b4e46691d6e4a26aa7f51d896ee72b5c87610479ed5062

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 352901b4e47ccd28f853c9695cd60378a6bc91c81b89eb1177314b7743c23473
MD5 b2710e969c6d5bc53c0c441c52949014
BLAKE2b-256 41ba45d6775f622e3a6e76da3a0fa1704bf179106bd4fdc4a0354b1cb290b4f2

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fec9de47706e47e583119d9902ef08f8bc5731cda84d8cd6d0d1def0a6097d93
MD5 97b081cb1041bff787bf1c2e1dbab09d
BLAKE2b-256 f7c07e18967a45348c733474b400e3a4883b67ce6fbcafb750cf3a76166ecd0f

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: r4pm-0.5.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for r4pm-0.5.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b8975126245cf34ccb62109211ee000d75369929b1276d9b4010934108adf9a1
MD5 c4c501f4757e266917f1dfff3ab3985f
BLAKE2b-256 75a8a6c0b9e6b1c80378ecf54a1c4f0b7e93ff929c9408014f3ce259405abfa7

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: r4pm-0.5.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for r4pm-0.5.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 396c12853537ca8088f71e61f938d5cc66dff8f7aba31fbf9bb9113a53d53096
MD5 8922c0f4703907756fc0cd178af996da
BLAKE2b-256 b8d8e8c66a5f30f901cc7dc3348facad67377c9b734a74a85eb3af1fe6843d4c

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6b1cfba091f7d8bfbb5cf23e367f35f14478ae8a67991bff8208d3176fc2b42
MD5 97c7fdb0de38265aa388834da487b7fd
BLAKE2b-256 ace7739c694c8c29306d6e6839d4d63c5bdd5525fcb9d2a4477cfd07ad2d7c41

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 11f1d6a226fb43206e2a64c1e278f5c237449b11bf397ea764b01704a3c6e15c
MD5 1abd95e0218e5c84dbb64c4d84559527
BLAKE2b-256 83b263922bba5736443306a7772cf559c2f19e6238d8f76d069d9e8b36975c2a

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02b516896941359d9bcb20e7c5db3089c20e2106456432f7ef7057c50d40b165
MD5 ca5ab254d08d3a57f4c5280c715abd8e
BLAKE2b-256 18425267655bc7c666178ca0f1f0911ca736408d60b37a04172e533615d2bbed

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6220a800b74d72697c0fabd8ae099d9c6b288c884598062a32de1497417c571d
MD5 7263a0f3602b1f98482705cdc339710a
BLAKE2b-256 a8dd63d33787bf611168ab650982cfaa791126a683d6e48860bc7136c2c9eaac

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: r4pm-0.5.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for r4pm-0.5.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0eb6f53d3bf81144be85dfa157da65fad11d5d27f2606e4cfb1afaa2f1b179dc
MD5 672f3ed035138f5d222e8d16da71a0fd
BLAKE2b-256 b2f86bb1266334c0e6d7911a29cf45bff42a0680c4e312524e03b37b2cdb2072

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: r4pm-0.5.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for r4pm-0.5.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 bcada3f7b49366d3d4a72bd4420ec762694cb00bc3024ca9d111c48c94393e04
MD5 5262f733efb40256935860064e4f0151
BLAKE2b-256 4f6bdce50c834fa7b0e4046032e41ec5aafb146d856a57fa16e11693a43e5586

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed051287b6f7d2e162c929f33103a121f47a0c79e2df61557237ae88d662210e
MD5 4ce336f36b5a762a5c936c07bf803c37
BLAKE2b-256 16d6b2e1f4797a58fa751322db5ecfad0125a7574b7b1114c40de560a16b074b

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6bba65c781f2887785cee3a91eeb0b91985efd3ba4506172ed993442d0b241aa
MD5 a308b9ee0731871eb8adbe79f06def90
BLAKE2b-256 dc4e41829013d82eb506c8376f842850b40709082cfa2cc0735d51a1d282e406

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba227cbf5eae81091b052c59c3f00bfaeffc4acf8bf03888b5b941b42dba053c
MD5 747f2245c1528ef88b49734e6bc7d767
BLAKE2b-256 eb34ff0fcb714b1abde35dbdf205b6fc808b655667965416dcb1fa198a6fa78e

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bb131d4e399c39ca2a047869652f94dae2772347f07a4ca9759964dbc0329724
MD5 9b1817c0d79711dd9f9525e5f0b1bbbf
BLAKE2b-256 bb5767ef517bbf45eaf963e1dbfbe48192bf20a29a45b5d79784bbcd911ecedf

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: r4pm-0.5.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for r4pm-0.5.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d604b94bb32d89a26e90b525a4f5eb7f6946918e7a70841f7de49bbd2a9c7d0f
MD5 6901f2449c1cc3697ec76a8a21a9c9fd
BLAKE2b-256 99d699f1767a6c034300da379820399696a22efec561457eb6c3e24acd70ca60

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp37-cp37m-win32.whl.

File metadata

  • Download URL: r4pm-0.5.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for r4pm-0.5.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9486d31bbd972c9013b5d6404c12bea7dd87eba1fe1f18a8c47c8e1f388b06f9
MD5 8828972cc56ee34127d4f06357cfb646
BLAKE2b-256 cb73a77b828c64a27abd05b6663893c0ea79ebd4cb3997c0f67889b04a60604c

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 046777e5994998f004b2a89c030c1303710186b3034c97cfef962b8fb6987156
MD5 4b7653f51b37c6d21c36042c1e5c1556
BLAKE2b-256 5a2dc8011fed32877d67a6a72491687666708dc898c643017b4eec2798e29a6f

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f6bd4fd9d4286de83fb2983534e6de82debb252bc96abb3ae7fe6f4409430e1a
MD5 7f7a7a10de38692b56eeeb01b4396bd2
BLAKE2b-256 852afed4e0353ab55598086f148bdac92ecf7818c9d85239eff7a363151f2cd3

See more details on using hashes here.

File details

Details for the file r4pm-0.5.5-cp37-cp37m-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.5.5-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 86fa67c6a64f38b04c0804d9a9cc9b623da7fc08edfd0623c25f05077a4041e8
MD5 0dd640ae224b73d92a1bb8d42b2eba07
BLAKE2b-256 d396ad3dca06030b78e5ae97c3108f3868faae0e78e3880fd2be757c8532c768

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