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")

Petri Nets & Alignments

A Petri net is a plain JSON-compatible dict (r4pm.petri_net.PetriNet). Import/export PNML, convert to/from PM4Py, and compute alignment-based fitness with the fast Rust alignment implementation.

import pm4py
import r4pm
from r4pm import petri_net
from r4pm.bindings.conformance.case_centric.alignments import align_variants, compute_fitness

LOG = "test_data/Sepsis Cases - Event Log.xes.gz"

# 1. Discover a Petri net with PM4Py (Inductive Miner infrequent, 0.2 noise threshold)
log = pm4py.read_xes(LOG)
net, im, fm = pm4py.discover_petri_net_inductive(log, noise_threshold=0.2)

# 2. Convert the PM4Py net (+ markings) to an r4pm Petri net dict
rnet = petri_net.from_pm4py(net, im, fm)
# petri_net.export_pnml(rnet, "model.pnml")     # write PNML
# rnet = petri_net.import_pnml("model.pnml")    # or read PNML directly

# 3. Load the log into the registry
log_id = r4pm.import_item("EventLog", LOG)

# 4. Align all variants with the Rust binding and compute fitness
#    (the EventLog id is auto-projected to activity variants)
align_res = align_variants(rnet, log_id)
fitness = compute_fitness(align_res, rnet)
print(fitness)
# {'log_fitness': 0.962, 'average_fitness': 0.907,
#  'perfectly_fitting_frac': 0.626, 'total_costs': 573}

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.6.0.post1.tar.gz (64.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.6.0.post1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

r4pm-0.6.0.post1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (10.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

r4pm-0.6.0.post1-cp314-cp314-win_amd64.whl (8.0 MB view details)

Uploaded CPython 3.14Windows x86-64

r4pm-0.6.0.post1-cp314-cp314-win32.whl (7.0 MB view details)

Uploaded CPython 3.14Windows x86

r4pm-0.6.0.post1-cp314-cp314-musllinux_1_2_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

r4pm-0.6.0.post1-cp314-cp314-musllinux_1_2_i686.whl (10.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

r4pm-0.6.0.post1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

r4pm-0.6.0.post1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (10.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

r4pm-0.6.0.post1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

r4pm-0.6.0.post1-cp313-cp313-win_amd64.whl (8.1 MB view details)

Uploaded CPython 3.13Windows x86-64

r4pm-0.6.0.post1-cp313-cp313-win32.whl (7.0 MB view details)

Uploaded CPython 3.13Windows x86

r4pm-0.6.0.post1-cp313-cp313-musllinux_1_2_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

r4pm-0.6.0.post1-cp313-cp313-musllinux_1_2_i686.whl (10.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

r4pm-0.6.0.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

r4pm-0.6.0.post1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (10.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

r4pm-0.6.0.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

r4pm-0.6.0.post1-cp312-cp312-win_amd64.whl (8.1 MB view details)

Uploaded CPython 3.12Windows x86-64

r4pm-0.6.0.post1-cp312-cp312-win32.whl (7.0 MB view details)

Uploaded CPython 3.12Windows x86

r4pm-0.6.0.post1-cp312-cp312-musllinux_1_2_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

r4pm-0.6.0.post1-cp312-cp312-musllinux_1_2_i686.whl (10.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

r4pm-0.6.0.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

r4pm-0.6.0.post1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (10.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

r4pm-0.6.0.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

r4pm-0.6.0.post1-cp311-cp311-win_amd64.whl (8.0 MB view details)

Uploaded CPython 3.11Windows x86-64

r4pm-0.6.0.post1-cp311-cp311-win32.whl (7.0 MB view details)

Uploaded CPython 3.11Windows x86

r4pm-0.6.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

r4pm-0.6.0.post1-cp311-cp311-musllinux_1_2_i686.whl (10.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

r4pm-0.6.0.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

r4pm-0.6.0.post1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (10.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

r4pm-0.6.0.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

r4pm-0.6.0.post1-cp310-cp310-win_amd64.whl (8.0 MB view details)

Uploaded CPython 3.10Windows x86-64

r4pm-0.6.0.post1-cp310-cp310-win32.whl (7.0 MB view details)

Uploaded CPython 3.10Windows x86

r4pm-0.6.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

r4pm-0.6.0.post1-cp310-cp310-musllinux_1_2_i686.whl (10.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

r4pm-0.6.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

r4pm-0.6.0.post1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (10.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

r4pm-0.6.0.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

r4pm-0.6.0.post1-cp39-cp39-win_amd64.whl (8.0 MB view details)

Uploaded CPython 3.9Windows x86-64

r4pm-0.6.0.post1-cp39-cp39-win32.whl (7.0 MB view details)

Uploaded CPython 3.9Windows x86

r4pm-0.6.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

r4pm-0.6.0.post1-cp39-cp39-musllinux_1_2_i686.whl (10.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

r4pm-0.6.0.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

r4pm-0.6.0.post1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (10.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

r4pm-0.6.0.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file r4pm-0.6.0.post1.tar.gz.

File metadata

  • Download URL: r4pm-0.6.0.post1.tar.gz
  • Upload date:
  • Size: 64.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for r4pm-0.6.0.post1.tar.gz
Algorithm Hash digest
SHA256 37747bebab849f83a11bdeae4e3a71a19e022fadc248f635e91865955063d43e
MD5 9a126d8d7a49c3ad5f000ac5ee4a898f
BLAKE2b-256 b7e0380c8138b9c9ad6bb972815b64af1fe52966e1c3f79b6afd5a1c00f7b908

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f91faa4e0d5c860a1a39aa0cf6b2eb138cbf348e3598c4513ee6f4f643642555
MD5 32eabc4f9ad7e11770bbda9d8fde43dc
BLAKE2b-256 4ca25378dede36168224fd15ed8a79cb84394d158c879b57d7f38b715f63ba76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1206b3baa8ca423a6ace82104ab5a2cc1a2d770a137ee7faf29dc5d1a3eb33b3
MD5 807ca212481cadb848969d3e4f5bee67
BLAKE2b-256 08fe2f435b7727b521a85f4ac1c5e21ef5ab61ee89d36e7d28d02a543d9dbca6

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 949c909c17d155f3efe52f7de412b209bd3e864487c91818244c0cd3602d19ca
MD5 d70b4b3ccac4f604296e6d78cd318f06
BLAKE2b-256 61523dc6e08582c39a8a733fd4b84a90de9caf439494c1c0259aa3afc0b3a136

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f403a8be2e53ad41a8b0606eb8b8dde87fb7518eda8ad0607b4ccf50217d2c5
MD5 4bac71a0e8dba448b2b28a3d84a4c928
BLAKE2b-256 acf71a747c3cfbf5ab0380756f8091d56ceddb032bc7375d28524411e933a323

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5c591bc0cd24d3967f11f2e612ab8866d25e3d792d3fada957bd71b0f657f2d9
MD5 98752a40082fe246b2d34c02956724d3
BLAKE2b-256 fe8edcfa19148fbdf6d7729003ac83fb87fcca453016a0914bc8d518eac368d6

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for r4pm-0.6.0.post1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8f7d78c00b1b9270eb7e365defaf1e7b69abb75871668327cd584899ce5e23f1
MD5 7370151ee333f8ad56da25c353a288cd
BLAKE2b-256 27405f227f6a6831e289e15cafe73e3169210cb112ef14b2f6d7e241e4e9db90

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea617ff4fd56d2ee682a1c0ff72031f2e0ea9f952d7d0778ed15f04e20c48e0e
MD5 6a18fd14c522c4f1865abd21ae4230a4
BLAKE2b-256 87bdfa2e2c91d85b28db149fe9434574ab783b16c1518ba5de663e534ff10e9f

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6dcc4c92f591181f134a322f040d7e6303e1054a71d1f382a56b0d87119edaac
MD5 12810b9f8e92b520f0ffba35e7ea3db5
BLAKE2b-256 2392c686f4e08e8d8b2aca4327308a04cdc9e0d2941d68ebd15a0152d3cdf0f8

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8729a58b42a40221e25e098c40b7ad9b6536f290f49c5b8cd563c9f6ada48e91
MD5 d3aba821abd2fe916d10e70fd7b0679f
BLAKE2b-256 da379fb50c90f291f33abbf4af497f89b294909589bb824d5fe2a4fedd150cdc

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1489a21758a7d994f5b2e42b0c0a4b8536fbd2b151458a1be6917f522e4eb08
MD5 81c44e5e4635bf8a7b8a1e63015d7011
BLAKE2b-256 59d304f72f6fc089455f80e3a77ff02cb28a4bc3a27e823d9dd4364360b21852

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 beca79b7eafb7de45d0c797ef8dbd15e5740f6b7ae6eb3de2221539fee31f84d
MD5 51282538d1b091661a1a450d2fd24538
BLAKE2b-256 43f53ee4a87f23eab0dd7f9fc6b489897b4963bbf2ab0b222fd7eb18f96527b2

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7cbd11d6269c70c391ef3ca2b0401c9d58a85cee94f3f9398fb6d37da883803
MD5 c84e9e97e9d402de9a0aefe5d069abb3
BLAKE2b-256 364699c9a494ec82f81277c52eb72ea9e078f6bb0139c300103df4a1e9dc446e

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 590017137b939c38a8b7750da7fdf7ce5f6145f8e22cdfd0b43dcfa3c05bf4b6
MD5 12f9eea0368d1afa6fc9157950e7dea9
BLAKE2b-256 ffb7d7973cf53d0494cdb9578ee8c5ac4b1a04cebaeadb1f4f6125e4f81309c8

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 352250b971881bc70a7ce4dcde52d23602340b78b8b95190195ec6b6d0181b3a
MD5 b8550ae41c3a0376b4981be8630cb60b
BLAKE2b-256 589eb39d769355296bf0911a454bb211ce90ea2d738a3afb58ccfe62530d73db

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for r4pm-0.6.0.post1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1671c323765c70a87b4f52e7c09d36f9961223b5d3c986c4b1f5ca71b9ca822a
MD5 cc5389116c874016e4ec1dc9f53cdab4
BLAKE2b-256 a4d94f920f55b37a3f918644a2b358e41b9494c165a4298ece465b16fe128b2e

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4eecf2a5a93ef4379b2c4a80a28ca28e99493474c694586a84e10d59a3cb8c0
MD5 c15ec29bb7d5a50743c242e7846000fa
BLAKE2b-256 ff9ccb889e671e392a4aef71edd3cbc7801763e3c393128ec6520bdb41acfeb0

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d339130082c88003f7d67394bea27352b9f52ca8bc76192cf69c1b02e5d5251
MD5 9cd304c50ab6b12047b9aa23c901fe1d
BLAKE2b-256 5eebdfdd8a845ccabc3a41a98ada56973c9b093921194d41e3cf49b82d75c348

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 771c90bf7d656601720b9f051cfcef90437ab915f951f5e9e0ad5b9b4bdd0c04
MD5 e10c6f60778cd7d1e78cf8f3cbfd188f
BLAKE2b-256 e0235d0b73bb8bde7346528a1f884f230a7aa5d43d7e0db881d3be4432a05eac

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e48dd6f8da845e16975f9e83f856164d252bd1fd7423c68246acb8a8027f0cc
MD5 fc8cc82abc16626d430220aaee6a455b
BLAKE2b-256 b03a4281a426ad16d5a2900955e743bc56eebcb2175b857a0143e5e52e1da3d9

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5163e6f159611c10c377da29d2afc4886da388eb1b2fd618417ddb3a75a0fb1e
MD5 86134f818ed0479f2c5883a136bcec9d
BLAKE2b-256 cff7a06c4b7993c8486d46f922b618936942b38054bc087c1128d265d6a4c238

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dda60e4753258974ae7821bd38ae2fd8039fb3345678f10bc36b01e708066229
MD5 6e95a6e510115e4ba9a5acde45841107
BLAKE2b-256 fd71be1e341ad7f74ca6821f326d4264dbe89dc2daa3ea2dddd34bd7e8838e6c

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c68ef7591865fa131a41996f9d3edd8d97a83e2cd8422553c3ae068c9ae9828
MD5 d7560b81ba9dbc7f52a59c97d6bde967
BLAKE2b-256 7f6940cd39396eb9e87fe4007d1a7c8b48c953c68425d2bde94e8a0a29e9e357

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ce8318b9b9c4ba66464fc53bd5b7b6e9e749f83dd7d578f3c8921b328b0ac4dd
MD5 0f51d51a728e75c011c5f500746f23cd
BLAKE2b-256 2c6fac158ce65e4f5da912ff5255aabb4daf701623c83c4654fb6ead25bdca08

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for r4pm-0.6.0.post1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 932f22c2abff26f18a54a1bec13a735ecbe3ae296eb8e775e77018345b828936
MD5 99974ee358f274339a8b9a8628be07df
BLAKE2b-256 3cdfe0fbfabdf509b3c6037cdd86416d9d921d4090e584edf741ac6783f0414e

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7b984dfe58732d44d0a1f7fd46576d9b59bd32564e7e22f0fe1a95779ba2122
MD5 e895f7080a7483fc7340bdbd56016041
BLAKE2b-256 3c057c8852559400bab48e8d4fa976c6754101592919ced8a0bb8fc648340c39

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 760c3b5d45ece731634f6f2c9c7ae761f4ea39b41d50d4b429dc1c2e41f057f7
MD5 719f415e745521eebd697c6fdd6ce51f
BLAKE2b-256 07c904e3981aec74b017aa67167b5a6946ec4a425a3bbd18e2332e644e902b81

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c27c07e8cfef2c710d2af4bdd7fdfa690c5e2272b74ee8ea243e6b422d6a5cf
MD5 d8f2aa6f503b0768edfa12c46580b62e
BLAKE2b-256 8c026c9fdd809686ffefb878fb08338f9c35cef700c60514e5ac030970a61b80

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 56d23139d22ae9f52b6e1b71664cd8416b5b8863a0fb0e861915ed70203ddc71
MD5 75ec91cfa0b89b9bfc8021a14bc89a8f
BLAKE2b-256 5472ce0061a4f2643aef4752f52051ba8ac5fd7bf0c6a1b5208d6434b081095b

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9cd5c8cc2adb8657ca55ca81a580a48c81673cfa899b75a0655783c130d10d26
MD5 37bd7c42dae3f0504bff91f00d01ab16
BLAKE2b-256 f258ca23756569c126967850d5b0a3728dde9e0082b5086867f04dc50052ae3a

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ab7237152ab2965158c8f88da645a7049f6f9e5820bfbe2bdfd7a008129f26f
MD5 d225bf6d30dd3ed2410f1852981818a6
BLAKE2b-256 6ac4692f57f69264d2bffc4b1068048ee2f5af5af639685323c45df74da72b38

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dfd055165b8443b4fb250aa114be648ceb057256d15e203471ab193515a8117c
MD5 a9827dda2e10ffce21f19b90dc1323c8
BLAKE2b-256 9442caea9646767d67f7fc6050a7aae379feae98ee32a9a0a4795b08721f4bbb

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3fa537050d9bc737d37ee431cf2e51adea78fa1aeed361956b56039552608d06
MD5 c01bcda34507e816ad862988e9717364
BLAKE2b-256 bc1bd74e7924330bf523ce1e0761387b682e1c20dfddb9ef0c89a15ea2e05fe7

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for r4pm-0.6.0.post1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0cff85e482ed76cff9257adbdad85d24389c0c7ff9b36064425fa2e19cfacaf7
MD5 1dcc8b27937c4408cad989d414316b4d
BLAKE2b-256 906171e5faa46577ef54ee785d077ba757ad18b56baee3ae1cf9e6d2f5f41004

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5019e1f30c50b6e23d0b84d87493d05c68fcaa21af3372249743b073fa71c245
MD5 9bf04f8773a0689f61c033c051ff9df3
BLAKE2b-256 abdfe8a69af939dd9f095cc47066208f6d8fdf02dd908a9ce7c177dd8fd232fc

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 91b692e7344ce8209f578392e029c4bfde94f976f84a39bed207056a9baf8538
MD5 77a7e37ceeea3ac8442cd21bf0305d37
BLAKE2b-256 a7c59db4024b04313155b171153c1885f0e07e6f93844c1f33797eef2cb3e03e

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 576b90ba11088b38925d6d0144ba41148d81d8b1cbd864caba6a82709558430e
MD5 4b9b26bb63daf4e5c90f6b1d2ca77dba
BLAKE2b-256 97aae8a6919004638464ff903652a3cb6bd28135eb4f8d479c52dc8874aa1fd7

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f2d656451b21e9200ee1afa26206e28cde580dfed17601ba85a22057c6bcc8b9
MD5 297b22cdd5df53b86e4a1da3efec60af
BLAKE2b-256 52e821203d79ec6cb024d6c99d6609318d5ce0442414ad0474f6d3b6cdbfbaa4

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7d8819c09bfab2ce055ee98b318d0285f9e11d11aadf7a609be0545659230b1
MD5 ee46c55847b131b1a73fb18365f76fec
BLAKE2b-256 d8ec95c6697f8ec76e24d78d41ebbf82a8249b484a3cf4a77b743e6d6391f164

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63fb1a350f0ea10a1e2cd64e1598f1c682b37789d33e40b7caf8000872c53336
MD5 d6e9b4c42a1c15d998112683cc510972
BLAKE2b-256 dd1d1304a2ac97406176b1f196cba64fae0c2bd8dbfccb2390481c0748d97120

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2dbf1ef879e97477ef2469c68ff0a56b011b703424cdc31075396d8d429775d5
MD5 10c80007380db9afd782c90011aaf4e4
BLAKE2b-256 a9c3ffd960e0ba0b8f9a3d505274fc502410a3bdeaa299fe30db5ac921a7251d

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9ee44da771e674a1da6a11812f178d403ae508370c5e328d8a0c59eda43141b7
MD5 3e872ada825beed0dd90a4a379019740
BLAKE2b-256 6aaf0a8c0ee3c667aea473fb1cbbeda35578069c8612ecaa9e85ec17804746c8

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for r4pm-0.6.0.post1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 977cc310dc7b5e15289ad1da1d7727af274885e9c2b2f9536d4f7dd01f70ce9b
MD5 b2cd0578ffcca4ea72d1835b324fefa5
BLAKE2b-256 efcf92d4352b55d6154667eae791990c235e907b127482e65e2739052fdea22c

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc8f076ad046b09f834c507737b8af1eae7cba88a0a09ef1dc7de9ff6022209a
MD5 9e44eda87a15ed95eaf39b80786a35b1
BLAKE2b-256 3da0e87eed219b223f24022322faea7fa54010bd7c1c2d8ff8a0ecd29a67bd8b

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a8247872278c5d5947765f53e8a23a4d1f0b8ebb1cf217213b2ad9fc575dfa48
MD5 a4daa8a3532dfe48fda0c17ec5db433d
BLAKE2b-256 cb3cf7ff7803010f4d23f3c18488cc1fbaa4eaab351d9d50a455fe2b0011753f

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8be7da0b520a0ba2030c5f1decb9ae7c711873560f10c101b75e80c4cd0cf3ba
MD5 a8ea8d2c99e330c7076a2fa62e2a1c80
BLAKE2b-256 1011be5c665b64171c33ea7e61b473fcdafddb695ef2c7e04dfafb46479a25fe

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00516b1f99c720ae212d7bc5d24c691d7c7c7a190ef5af1189fee0ecbee7f38c
MD5 4b94007539515b364f50ff5771cf712e
BLAKE2b-256 dc827d23c3ce5d8a21feea6a38da920589d50d3d7c478e60f5301c7e254151be

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6fba350574b826e9ebdce45558bbfe37bd92516b9a7090235c8d6707fe543428
MD5 2691cd2511156db0e508efd350c372ad
BLAKE2b-256 fafaeae36b54a0bf3b74aaff344c1360ea4aa3c5201405f0ef59fc0afea42daf

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b8fabd8bd4a4f68159ddcc05eab59d534cf4b37ad4b245a6e7dca67c3c3da8e
MD5 97f6e87e2601a1d7fa1a640609b60ff6
BLAKE2b-256 06c69583db6e69789ab61d61b60a1d5d94f39308889091529c7dcaa79e3fce69

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4cb618091d20eee78fa88c255d9305bc2948bc153ba119020416f4cd405f813c
MD5 bc875bd4d075626fe17abb978d39758b
BLAKE2b-256 eba1be28406d237dd4ec4729e69a872728c2cb32addb5966369dafb2fa92f76e

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3649b99e56752c0dbb9da9dae40a02eec060cba64bb2d03b8ca85d5693e94356
MD5 f9189292aba3f3a83e8c74d08cdaf9dc
BLAKE2b-256 fd7f8c22c9817bd18515e3cd3db66dec55eab6cdc828e6a4368f12cc37ffcb95

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for r4pm-0.6.0.post1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6fff85744fca529364e0ac7525e271a2c51c4d54c82ce5b7eaad6e87d55bd265
MD5 7bb58f357e0c45c4fabe3cdbc15a0bc1
BLAKE2b-256 c9a9267fbf87b4f259fc4f9cd20d4377992ded22c767b763067ed7f1c09d0455

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 068e695d9d25b530afffcb90a06be70692764d8acb64d84158d9de0466c8257b
MD5 cd0f75dd2268db304bb2784139500ed4
BLAKE2b-256 299921a0f893adce13819f6425cb7826fb27db4dbfaf65e2d515c377a83c14a2

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1b3ac68b0f4d05002cd3f800eca4ce5eee28fb8ee829ee8cfd6ed337d579efca
MD5 77d45a9c1a81fd76cb322089dc148bf8
BLAKE2b-256 129765ae906f8eea9d0bd640985b1da076954d473077291f3ce310aa0bdf7d6f

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e24df7f76fab704b57fc7d2ee0594685ebe63423841fae544c73ab71a6e843d
MD5 04ff9ad83a50195bd305c17b93960295
BLAKE2b-256 b549d37838ff70f51adc652244c268c96296512be0d09c4fac8ceb5af04d7db6

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9ad5ce2cc22f2290a250058319661e369c16485ca18175cf49386c81f8b921f0
MD5 629d092d16a5218a4134895ac604a4d2
BLAKE2b-256 dccf9600e7b3a254f1cc7426b243a29c4259b5979eaab4083e41212277d9da23

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c768f82842902276f6a0039cd196f3a1d5fa8764a9b0911eaeb866dcd5992986
MD5 e159b999363ff7a8b4dcb431a20dd010
BLAKE2b-256 50b7a488287b4cbbb444fc6d6039f790d90305534cfa1a174e551e3096058b91

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ead9d0982a23f3724ce28f13037005d4d99b306a0bc0fe60bbb145fc9c067db
MD5 8d03e231d9e4bb4ead28e28bd217a9b6
BLAKE2b-256 adec575c4e4dadf95671aaa24ed056fa2e9c5069d36a2526ffb63bdbad7b7866

See more details on using hashes here.

File details

Details for the file r4pm-0.6.0.post1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for r4pm-0.6.0.post1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9264e7b964a99e414f971e975eb297a4d771814cd0ef38e3b4830e03cc7af341
MD5 68b1178fed207bd0cb8b1026c2e9671d
BLAKE2b-256 31bdf7326c8f52a71d1f7f9e279a51b2a924c3a107cd6e34c6a6ac3f6b91fd93

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