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.1.tar.gz (61.1 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.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

r4pm-0.5.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (9.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

r4pm-0.5.1-cp314-cp314t-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

r4pm-0.5.1-cp314-cp314t-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

r4pm-0.5.1-cp314-cp314-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.14Windows x86-64

r4pm-0.5.1-cp314-cp314-win32.whl (6.8 MB view details)

Uploaded CPython 3.14Windows x86

r4pm-0.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

r4pm-0.5.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (9.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

r4pm-0.5.1-cp314-cp314-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

r4pm-0.5.1-cp314-cp314-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

r4pm-0.5.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

r4pm-0.5.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (9.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

r4pm-0.5.1-cp313-cp313t-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

r4pm-0.5.1-cp313-cp313t-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

r4pm-0.5.1-cp313-cp313-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.13Windows x86-64

r4pm-0.5.1-cp313-cp313-win32.whl (6.8 MB view details)

Uploaded CPython 3.13Windows x86

r4pm-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

r4pm-0.5.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (9.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

r4pm-0.5.1-cp313-cp313-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

r4pm-0.5.1-cp313-cp313-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

r4pm-0.5.1-cp312-cp312-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.12Windows x86-64

r4pm-0.5.1-cp312-cp312-win32.whl (6.8 MB view details)

Uploaded CPython 3.12Windows x86

r4pm-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

r4pm-0.5.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (9.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

r4pm-0.5.1-cp312-cp312-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

r4pm-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

r4pm-0.5.1-cp311-cp311-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.11Windows x86-64

r4pm-0.5.1-cp311-cp311-win32.whl (6.8 MB view details)

Uploaded CPython 3.11Windows x86

r4pm-0.5.1-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.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (9.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

r4pm-0.5.1-cp311-cp311-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

r4pm-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

r4pm-0.5.1-cp310-cp310-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.10Windows x86-64

r4pm-0.5.1-cp310-cp310-win32.whl (6.8 MB view details)

Uploaded CPython 3.10Windows x86

r4pm-0.5.1-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.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (9.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

r4pm-0.5.1-cp310-cp310-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

r4pm-0.5.1-cp310-cp310-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

r4pm-0.5.1-cp39-cp39-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.9Windows x86-64

r4pm-0.5.1-cp39-cp39-win32.whl (6.8 MB view details)

Uploaded CPython 3.9Windows x86

r4pm-0.5.1-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.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (9.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

r4pm-0.5.1-cp39-cp39-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

r4pm-0.5.1-cp39-cp39-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

r4pm-0.5.1-cp38-cp38-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.8Windows x86-64

r4pm-0.5.1-cp38-cp38-win32.whl (6.8 MB view details)

Uploaded CPython 3.8Windows x86

r4pm-0.5.1-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.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (9.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

r4pm-0.5.1-cp38-cp38-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

r4pm-0.5.1-cp38-cp38-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

r4pm-0.5.1-cp37-cp37m-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.7mWindows x86-64

r4pm-0.5.1-cp37-cp37m-win32.whl (6.8 MB view details)

Uploaded CPython 3.7mWindows x86

r4pm-0.5.1-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.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (9.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

r4pm-0.5.1-cp37-cp37m-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.1.tar.gz
Algorithm Hash digest
SHA256 92add2b90c9677af33f0d1c060c25b4b791f76e4bd0e3e008c9d3c5ef45dab24
MD5 a821b40bdbadfd3e0957e24d4adda02f
BLAKE2b-256 49674c83e1b836c9a24fa45a55b618ab7734d33db11883792eaabcd41584aa51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ca5dde4d2134c2f696137ebe944e401210a186e9c0306ce415cc3197cc18cbd
MD5 f318a63bb162223d9fea2833cd1afde0
BLAKE2b-256 f1d211cf4863c161e418eb0d37c60ea634147de4d8f2c6ab74b79edad3b2098f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 12f553f4a8fb62305075e5302846de84d4758082bc9bcf6da9e398c97a7f4e14
MD5 bb2452a50d469ba7e19be181e9218d1b
BLAKE2b-256 2f25a652aae9710e27c09e9f4f3e8ad8faa4a5b06b742cc45bc57e6d5156cddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ca6737f7b386795615714952d8dece96a3a3650be9b14661447424f760233ff
MD5 a74aaabedd6a30ecbb63f525412d7be3
BLAKE2b-256 0ab7188cea19526d95d73a5eb0010cd054b785434e27e661dfb5a5f2f9e89ae9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5356440ab746da67270c643e1d98b099bf68fd29e53e448fce09665a1d87b9d0
MD5 738e83d24a599d46429d60ee7b5ce459
BLAKE2b-256 fabdf3d0a71eb2d5e8b618eb6bbd377da4d29d65f7613c2e675da64a82a1aa3f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c380eb22537b41ab6f30bcfbcb1ea56d916d3e28e4549cb9298728828ceaca74
MD5 f8dd14b858e9dcdd734a5ec0753aedc0
BLAKE2b-256 f262244019f54a67cf1e5f3ad20f1f84b1cf42f5fbe9de092898537dc213a025

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9abc0415aef340eb7340ba6345953b7256d73003439e955ba667d9d5350c2665
MD5 3d84e03d041194538a614670a27f42e4
BLAKE2b-256 c3ca4c63ea1122d96921583e13ae1a3a2a5d7e48d9f5dc3917eb72bf0e5f26b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0ede383fb330c03542becb07775c9cd71bdb7b951e0435b746c1da81db8ecae
MD5 e39c7b99879835dbaae765ef3a749f5a
BLAKE2b-256 57b17076777c1a019ad0a873fcdc2dd49c6f852b2949e84d725185c4b30a586c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a604e435c313dd42622b47d99529922225eab082320ef2fe09b793a85e64fa7b
MD5 06a5ba2fbb07c7999ed8abf9392fc269
BLAKE2b-256 d11609e90d7829c6a026dff4c17f46bad45dc3b5a9dbbd4bbeac34606999d304

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5060c10d45740892be23c5ef4b353522c6a0491c75c2856b94562896090d6058
MD5 a9d5709f2a35735da8f4de0a04b17596
BLAKE2b-256 2b0f16e87c72c7e18f08313369134eb5d4b0ea54debf939e7bfb16e6a14d9ff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce92466cde63fc9ec6add4adf9d39f12b4fa949cf4fdd6ea3e323a1a91ce340a
MD5 6b57e301b9845f355aec70970fe024dc
BLAKE2b-256 ab6dfad7912669601f6fa0117e2df9ae816530f2cd4c7d7d64159c398a634261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88c30ae0b685268c6ac21e38278fcd7ee42da6f850470bb19466797cdc79babc
MD5 3f61566f7d20cf2e0b9fcab0195fdbe8
BLAKE2b-256 b823f9870a880df0566587ea8df3019c83c05bba173e180c6c156d00b506d8ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f7af8892e6625a5d5668aebefbc509a8ff989316411cf56cf2c0f3e97a40b36
MD5 51c8a15a7e639bde5f86f6059171e879
BLAKE2b-256 06413a84e16ada7d456fa364ec6a9f7dd02eadccc50e183f20f0b40f5e4fefca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5db6ee736de4d7931a90a4d996ce968fb41bbfed575c22cf520e48e3aa3b857d
MD5 96cad6faaf3d906b7c29a0af0b1e0e69
BLAKE2b-256 6a7ec2a495a519a5b009473f1571552cb933cf9d2327f61de2830271190b7803

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76b8b4ec6bcbb3444c0d30c5f0ce6a320191efd378adaaa644f4da6b22743d80
MD5 b68fb19efc4ebaf0bf323393569687d1
BLAKE2b-256 4640697025590a6eafaa8a6f00891d16fcbe8e555b264aa959a65b9ea0656786

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d7dc566b9a323e77e6b3ee621b34f24c5d1daa16df955fbe246ac678c1361d69
MD5 23aa201eba96e65d8230a8c5f494ff3d
BLAKE2b-256 32221000f80c123cef7292c2624048bc4d31b01d73b22fb0452624587ef77a82

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8afbdb879c733a3e3962af01eb3059b81d2c953bb35f4fe1c6c2deb9e2d985b8
MD5 5ec5ff2ac25df1bf3b4775ac28cb5667
BLAKE2b-256 bb25b36a996140a7e9236f5643e65395777b5c2e109386c180d4390669a187e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9769dd1922f0c055c4ae7e56d6cdfc1fb4c62a2a39ba4053737bf1dd576196a
MD5 c0f4241567ba64946847733317c0409e
BLAKE2b-256 c4a2919040f6323021d4c4ac3746bb3d1ef4ebd60e2d3c059d330b369662c3c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5fdddeddf81d15f5c86947fe1ffad8d66aef8ae4b3a54ee8fd0d454fcf674022
MD5 080e6a4fa8ce0c96bb12d7b7913bde80
BLAKE2b-256 a1fb883e49723daa987fc1b09d58272f624d8bc1d1384026dfc6e59be165977d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78ee06ca82c003765b29501888cfc1640c5a91690e689a906e246b26dd9f88b4
MD5 b28dac6bea082f7b9df10adf7d0f4f6c
BLAKE2b-256 2fe64fab8968331f0b735053e04f629c48e8e715c162080324793966c2b0a380

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 99cc293f80be733acf5de39f294bc3d02a3c91d4d02f41c3f83feaeca2e5aeab
MD5 51dd34d55eb4ce3fc717a41d8a60ca4f
BLAKE2b-256 207512ed766d79a43ed3edccc4f8b762a3770feab8dd4a0abc60487c4cb80e67

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1a7edd3ee6ed5a00ea2c81e5118c3a92e5add2052fc0eaa4b9333c0c6c092a75
MD5 78bfe657b4ac050a018abbcd3881c069
BLAKE2b-256 0761345e89aaa517da28d7bcb800e8fd63c0506ea351587b8166bbbabd0ad3c7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0ef3ad59b4a5c49fd0fc70cfe42f7b9664a357c85b04137503479add12473726
MD5 a9c124a749636099ea68b49b6c4fb843
BLAKE2b-256 b41fc798d736b2d0a95f66ca1c8ac0da1244c0dc072369ee396b187ffe01d7fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f44469d552a10324162e0831576446f84e11c1a4857dbe8e882215474260d9bf
MD5 a48dabfe4a1842e66d96c357dac62290
BLAKE2b-256 c27f15a1e210383aff147a397f303e4117469141c2b9e83f7d98b817ad5f63e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a88f6402bf1e31763b90001cd0a842cafc1bd63ca822a9862f7d7aaa4238d3c8
MD5 2da1189de4afed75e8b0989ca09e4ef4
BLAKE2b-256 f7113a9ef064072e00e08a042df0d75c4dd4740a12cbdc18ea42e80d3e385548

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 132e43ce40d9978e01376e4a254e111e275866792de9743149bcc3fe37f9f298
MD5 5a8e2de103a01097f05c884c1c8b8d14
BLAKE2b-256 a410c03c4eb405cddcf75b604ab6416987978ab76404d4846b41e9af67b7084a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ee9b91272eb1646f49543ca6f81d9359b3ba5f48242bc450ea328635ff2edb1
MD5 597f4dd6f4de65e72bfb3a1ac377f23d
BLAKE2b-256 bcf022a6fd070674ec277f60bf9a81c4937dec3f89e95f6034ed387974b3e613

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 09c37863ffa21e8e303f684fd7a31d3d30a506ac53b43ee23d3110b98f55b985
MD5 1b38eee41fcb96c89ba2b69392edda98
BLAKE2b-256 9f3317392222df43f9d6e8588bece07c0a56449d6db8bea1493a87456b31149c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 eb8129da1c290291d2677505845adbaaf152d77998f8d5ec6417ba814e21110b
MD5 0828e1991e2768195409abcb37d2a55c
BLAKE2b-256 a7f2e6d086f851abfcc93ac222ebb53aac307eb52bf5c685ea0d4e3356b13511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 255d51a7afdfb391892b4dc06a3e4ee86a26427d8b962d8547a0d6564f6650ff
MD5 5c727e8d770b7ae6af365ac49f03394a
BLAKE2b-256 399fcea986c68dc40c24a436eda1bd74a4f086d3353ab62be0e2e19f014ac7db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 992e40b577481ea690dfc429946e0a2d258fef7d6bd1aa98354638a00ba836ab
MD5 4ac5573152f5508586c5478331583fc2
BLAKE2b-256 2875103f62e854dd9b8b4dd60b98e9ad83b09ede3c49017e29ce26098ed4e10c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2050221b26376da344805654f5cc367387a13ff3db407dcd2b1b117f39819960
MD5 a646faaa1fa3f7dcc80c5a55eaa8b2b0
BLAKE2b-256 d3c7b58f8691a8700a3693a39125e75a3b0c2f81e9faa93b031eacb4bdc08aa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d906365ee35ba325606fea41ac23a86e8cfe88e6de7c7ea576b6e9c5acf519f5
MD5 b4a769601ccac3850af476b623668f1a
BLAKE2b-256 fe725bb67439515e951d69b3c52fcd55baa953be85e2b1b59e95d477b2ff680a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a802299cda3932f9eea0e15b03f7178659fe55498cb06c5867345d44c9124810
MD5 5d20bcff53a3bddfc5aa177d44512e68
BLAKE2b-256 13e5c5ce21c408b97eba99684367163bc43e2907a58d9062de3b1f908f0faafb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d481cf88b585423ee8b4b0d472bf1c98e9a11347e27395b0b2d89aee5a702c31
MD5 1e405397e867de2f240cbc06d09fcb98
BLAKE2b-256 43502a0a969cd9916d1b884836353cb2869d3196ca25e800adac6e8162acf28e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7819a2b5b259dfe93b252103a79efcc4cc636f1401447711923ddff556e05e95
MD5 fbabbac73dbd7b614ddc60cb3ce67861
BLAKE2b-256 c5d9c83ae9a2cd3335b7a2887f7dfb22849d4c71241b5768e10376429d440155

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c17887f216bd6abe3649146ec50ac9fdf41998db6a2a75f335f1d528e9e3a2df
MD5 917e63d81bb0829115ea230b2b2cb290
BLAKE2b-256 8bec6e39c67978de6ad378198020c8b658c2c7ae54699fafd6b0bb1a50dc60bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8fa5fa4be05d2c282c06d5971c313a9a6934169b29f8c60b5296af685b6e7a2
MD5 fb4f148ef6a720a584f712f23a46e44f
BLAKE2b-256 684ad92a8f5d573f507a3825c95d044dacbc4820bedbfd45448e1bad48f0b8a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1679ad11e430b3de811bcb132c2be6a174718dafdfeaa1b7ed270cf7548b6522
MD5 55be666da9d42cc1c7772f80c1aed74c
BLAKE2b-256 e2482723b7cabb2aa3e8d19a0bcd2282e16c9502f281015b991dfc0b68535f52

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 aef5dbba77483895afe3612aebb5d02832eacf0b6f1524babc99d2b9ccc85fcf
MD5 73947ab0cea5032f131e67a52d0899b8
BLAKE2b-256 7fcdd09455905ae26a8e56f75297d7947ed1e697eae1ddb41820c5621e3f195f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5c70b9ee610748e267181a670dabfb1a5ee28268cb9dc91801ceb48514d9b47b
MD5 3e3983c023898f516cdd02ef9e222ed1
BLAKE2b-256 59711c60223d29ab3a231c8b967bb4870e206e7376cc400601dfcb61dfa4036a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d1cdee95f5901d7259850ce128a4508b689dd43af36c8f89c912f9809b195a4
MD5 f1af4519f55130c360614f547018c0fc
BLAKE2b-256 d64a5dae03c3ca5ccfd42b4d6ab039a0a4fe03b801290eba02e27922a2d61531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b48bc1830f7de871037aaa25f52978e93be96967aac251f9a861620fc6e011ea
MD5 8b4039d4714008cd1a4ba04cd15d49b8
BLAKE2b-256 1c74299cb55a2135bde54b1a4a031685b6dd6841942cd66c53e58d6e5d11c4bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92631d303f0fd62dfe214421939059f2e3993d713812524ea3ec2692c2f6dc71
MD5 34c0edd19ef16b7de63ca07ef55b2fa6
BLAKE2b-256 2dc69c203f399c1727f562b79a4d2bf7779d4ec1aada37296c18706d4dc5ddba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6171b3ae9be304a1a0f72c2a79311678914191c8db72784334d68d87b2c07c6b
MD5 6d27056f4ba90869f38aaeff2f005604
BLAKE2b-256 a03bd6e4a28147a3b5116b415052ba450cfbb8e2d616538a00bbc03341e58d91

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a6de212975216736b4e5e8575f46eb7c7a7052b68174a08a3a7cee115c0f4f46
MD5 0a08a4cac17548c94b60977e10272665
BLAKE2b-256 b9ccba8858f081a182c73a3e439bcfd2663fa0b9ca792c18fae3031428dbc513

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 fd30863c4fa21e2d0f58d4878dc9da56ee4e985f6afacc069ecb6f632ea29ccb
MD5 18915c6e747d04c48d667e4ca86ca148
BLAKE2b-256 17ae8424f2514a999a99e05bf787fc15f2c3e518dad58a3145a43665cef733ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8a29e05628d971193611bafbfc21c0af99e047258aa71cac707bd944386a795
MD5 7d517276f07454ef58c3a556bcab1698
BLAKE2b-256 c5de0e691c47e3dc81072e5135a06a622229b88ebeebaadcf6b24d10e441eb99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ce1d448445f48a849390663d6253b4f274c7cd6868696b09483160cee3aa673
MD5 1b8d5f7d7df109789520635cd8f80f25
BLAKE2b-256 a7809fe8229fab5a757aeb1be0007c4dade0adce021f14e3c54d580a98906a28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae716c9d57c152ab4dfed0edd7a6ebd5f408a61e60b29f9df2242123eb3fca56
MD5 61c7099e1c716c975acc186f58688bc8
BLAKE2b-256 a7b23334405a0921dcee1cdd943fa9f9f412d29c843c9906a788f0df43899f88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4303d0387825f5f3fbf2bd04be2a0281f615eb092486f3a5b4f64924c5c47cb7
MD5 fc7b3d658aa3d798e82760176cada4e1
BLAKE2b-256 a4c5ba44c1fa5b133834ce4f2e05633711b149c112443891076b73d599a5461a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 37186b19313da9956ac8d58933334861e0587fcabfcfc6826bb1b54e9f207522
MD5 0264bb2cddabff362df97fcf36101c7f
BLAKE2b-256 ea23334c213bf7e38da2f308cca81469d16db3de3ab049877caca076eedbd1b1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3f74912aa8ff7be9462bae559c9607d4b8389d7dddb5ac9bc0d486f3608ded99
MD5 e2bc3e163b8fc9888ea4cd85a6998451
BLAKE2b-256 c4294ffd0801c49813bab40a84ad61bcd2c68252487f19ebd42763dd11425d83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 149c29ce92bc64b43b04211bef9c02aa0179b48b8b83f44ab955fabddc0448e0
MD5 8adeda282d9de8ea2333e466be3f2e07
BLAKE2b-256 e2c92f6e3aa2dd2e092be75fc3fe194d9e1dba31773c880d50282fc8717c02c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 509aec3748c3b11006cdcffe80cc94ec4c247e353c6dde45314ce2b415978dac
MD5 2aa3c77f39491d176a121e7db8afd0d3
BLAKE2b-256 e1224ea1deec8efacfaab42767bceaa9f538ab906f6cd8a266e582fb120d3122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.1-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 88a0b7395cef80238bfa0b6776ea89a3010eade691ba9eb1f3236495bb8a17f5
MD5 25c14ea50c67dc6594c39eb807d1f969
BLAKE2b-256 4ca15b05bdad8ef1a68166c8906fec487ca467c9801ed3bfadbff3ce2eb002de

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