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 IndexLinkedOCEL for analysis functions
locel_id = bindings.index_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_locel(locel=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(event_log=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
  • IndexLinkedOCEL - Indexed OCEL for analysis (required by most functions)
  • SlimLinkedOCEL - Memory-efficient linked OCEL
  • 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
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:

XES

import r4pm

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

OCEL

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

# PM4Py integration (requires pm4py)
ocel_pm4py = r4pm.import_ocel_pm4py("file.xml")
print(ocel['events'].shape)
r4pm.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 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.3.1.tar.gz (57.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.3.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

r4pm-0.3.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (9.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

r4pm-0.3.1-cp314-cp314t-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

r4pm-0.3.1-cp314-cp314t-macosx_10_12_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

r4pm-0.3.1-cp314-cp314-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.14Windows x86-64

r4pm-0.3.1-cp314-cp314-win32.whl (6.5 MB view details)

Uploaded CPython 3.14Windows x86

r4pm-0.3.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

r4pm-0.3.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (9.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

r4pm-0.3.1-cp314-cp314-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

r4pm-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

r4pm-0.3.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

r4pm-0.3.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (9.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

r4pm-0.3.1-cp313-cp313t-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

r4pm-0.3.1-cp313-cp313t-macosx_10_12_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

r4pm-0.3.1-cp313-cp313-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.13Windows x86-64

r4pm-0.3.1-cp313-cp313-win32.whl (6.5 MB view details)

Uploaded CPython 3.13Windows x86

r4pm-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

r4pm-0.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (9.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

r4pm-0.3.1-cp313-cp313-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

r4pm-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

r4pm-0.3.1-cp312-cp312-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.12Windows x86-64

r4pm-0.3.1-cp312-cp312-win32.whl (6.5 MB view details)

Uploaded CPython 3.12Windows x86

r4pm-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

r4pm-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (9.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

r4pm-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

r4pm-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

r4pm-0.3.1-cp311-cp311-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.11Windows x86-64

r4pm-0.3.1-cp311-cp311-win32.whl (6.5 MB view details)

Uploaded CPython 3.11Windows x86

r4pm-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

r4pm-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (9.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

r4pm-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

r4pm-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

r4pm-0.3.1-cp310-cp310-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.10Windows x86-64

r4pm-0.3.1-cp310-cp310-win32.whl (6.5 MB view details)

Uploaded CPython 3.10Windows x86

r4pm-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

r4pm-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (9.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

r4pm-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

r4pm-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

r4pm-0.3.1-cp39-cp39-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.9Windows x86-64

r4pm-0.3.1-cp39-cp39-win32.whl (6.5 MB view details)

Uploaded CPython 3.9Windows x86

r4pm-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

r4pm-0.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (9.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

r4pm-0.3.1-cp39-cp39-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

r4pm-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

r4pm-0.3.1-cp38-cp38-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.8Windows x86-64

r4pm-0.3.1-cp38-cp38-win32.whl (6.5 MB view details)

Uploaded CPython 3.8Windows x86

r4pm-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

r4pm-0.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (9.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

r4pm-0.3.1-cp38-cp38-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

r4pm-0.3.1-cp38-cp38-macosx_10_12_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

r4pm-0.3.1-cp37-cp37m-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

r4pm-0.3.1-cp37-cp37m-win32.whl (6.5 MB view details)

Uploaded CPython 3.7mWindows x86

r4pm-0.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

r4pm-0.3.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (9.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

r4pm-0.3.1-cp37-cp37m-macosx_10_12_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.3.1.tar.gz
Algorithm Hash digest
SHA256 7f599c4a9d2cbd681b2de0b626d17ee5b075ca5c4ee46e754e311e1901a84005
MD5 fd55fc9d69a834135cb7c891cd686504
BLAKE2b-256 1a15666b6c99f5514097e5112dd4f0d5a2b53cf060f9db4f1be52890b62f5534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8214067228215b6721b55aa1371f81e10e641dfc0cb0ca5e1d4dc7c97ff8ea8
MD5 fee39a020bc956e98cbdbf29c36ef7f8
BLAKE2b-256 f7578eb790588d1bd0a6a51c3edb8c165aa9cb07ed062d67d4b52e3f04e418d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 69bdd52f7161d934b4b2e2a38d56262e78e705435c32af651a702c4493e74560
MD5 c9b7d39f6019cef5f86678e828da9da0
BLAKE2b-256 24d1a6d47868b79f9be527c3919683a2fb37a4dd046724e7880142ad6ac17945

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 637dd3571ff10e3cf2991f59cdc21927dc37787968a83917bc2701ff574d78a7
MD5 966111d440c43ee7ebc270f75bc49086
BLAKE2b-256 31a1c203263903f1cfcb250540ef898434c03bc7f0f4a517560aeed1147313f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 633426fc1311fd9fba2d1aee4522d6d449b60ebcebe9557d51c474c3fbf5cae7
MD5 086565c2c5beb9826c8e217d016979b3
BLAKE2b-256 5014efe8f6efb94149cc1951d791b4f12c6053bc7c80c77684787e6bbba53764

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cc406ba8c287017484b8eb1fd4be0bb1c51d5043fd3db6150ed351fc2247c545
MD5 39b954b951cb5bfb17bda4f3f66f7721
BLAKE2b-256 5848b6e1128e6ecf999cce60dfd6271414d6501f4901592c8a7d171eb9c624d5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.3.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 29d50d113b65b875c023bccf10a68e1115c609bb01d217468fb8fee17668bfaf
MD5 c6b259c7a25f7f5d36855b5ebc6e02d5
BLAKE2b-256 4081dd416cb54d7d858446c78515ba9769c2cd22fa31c70681b4f642b7411a8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb4860964f848d1cd1d20f002b292a24a814fd940ccf55a2e5b351fb04aa89c6
MD5 de381e6af33e8479093c06525704b740
BLAKE2b-256 623a082f5fdff6a79977845ddf35467a538f8a6cfe66eac8ef5c3dd87d2595a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a2ff5e5588a4a0edfc613f0aa8ac9666a220e7549ac6a17427ff34ffbb4c189e
MD5 a1949332faf0e627c39364180ae1de3d
BLAKE2b-256 75aac1c05371dfdb8b17ccb82388c40713b6494b38c98474d3581e0aa2c02e2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cf1592a72b8920c3f59eab36fb419ba93a48552bffa7267b514575eb4efd79e
MD5 19ccc3303b11d2c0e45b376497d2c441
BLAKE2b-256 004dbdd247cb0a94b0e3715d3470ca0e9814d88e08d2833187fc009b277eb777

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 39915cb5767bc42f5601f9e53e90abdcb456c7ab51562c6c8f6a0059f48bd764
MD5 1b907c5ae0c8b47ce22ea2406197af62
BLAKE2b-256 50bbec4a203a87b3e3fca43ff96ffdc74f9f5507ca55aad5e027aceaf70c5494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fed3da891faad84ec1625664474027540a683b2ed0ae30a64e911b38a39b527a
MD5 48aa36aca0c77d18f550640df6c64239
BLAKE2b-256 ade31242001eb5ad9b59f155de5bc89053d89cd94a6073f55273e057a0f21a69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4299b35fd147a72f98cccdd573c37eb6f2dd97583dae590fe114a437cf068d25
MD5 69dcce559e379dc563570cac632c148d
BLAKE2b-256 f76c87b1a6f3de0afe6b3e7797888793be3e2f8313ece3b6d441575cb36f7341

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 803cac1c01c24a9eeb5a754c6e72455ad14d46eed0ae07c68c6e8c0de3cade72
MD5 04928e054f394b20b4e6085ad60ba4c2
BLAKE2b-256 c16cb4edc706cfd4667bd9e87e38270117ee9b89f659b2a5b1a40e477649e464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 63f23868e61e6c7d05edba9ce00532f04e3a539a5a198e85206c0f49606cd685
MD5 2c44582f22759b76f1dd84ebbf50d6a9
BLAKE2b-256 e5ae2edc08bf3122898f406452cfa994bc40b0d1a5bc74f92dedb7f44677b2db

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a46b3c12564311f6d01993ced477fa7c7a78a7eb6ac4a4164b743bb9ef393009
MD5 9e055442c25ef848c9ed92e018c455f2
BLAKE2b-256 a9ce54a0f5a5113f323086ab4d0a5b7978364dcac01d16a025d8f8df213b546b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d50eaa6ea014870db915a40a1c788c623dfc2104a1841e6307781321e279a036
MD5 5922f274993ca4d77383145c3da1b063
BLAKE2b-256 ec91b4407cd5eb6fec3dea4235616b2f61199829be27b3c5f8ae94a34fd5b816

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 590e0237c2bb650c215451fe7a8df9d6b4e1a48fdfed01c339f441bc474a6f6d
MD5 ec9c5e7355835697f6fc4fc979f07136
BLAKE2b-256 2b98a38980a9b78833e80b2d3aa1a8e01802b952bcdae6f39d9504095afcf3bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 596ba812a6863eb44d19b9a4752b87cbcbc453effc1acb8471a35099b3f0c7a4
MD5 6dfd6624b1758fdab2c037dcbacc4ea2
BLAKE2b-256 2155468436e36437ba5816cb847a873a7a195c874b2f2a86a994b973d325eeaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9015d1128cb5b6ca153367a98a918e10ad5c2a8119dd96a0c9c8122d04829ba1
MD5 ec40f3d9e4f9bd9b6bc5593847baf376
BLAKE2b-256 d32db71785c396589e6a1a26aa0f0da92836925241639b61819e96a0b0cfd705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 91aa273575678817fc00122400dbb4f3f55439e446ceb053b9b4b3041951f939
MD5 d189fb3e40abc7a90bf2749be1078ace
BLAKE2b-256 6d09c89133bd8d7b97090df52c244b97ca397867092eee0d799c631a818719b0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 22f665ac6eeb5fe5927ccc82e3f66f448698569847e0b7c09072b96b1f6ce21d
MD5 88a1096a32d517c6b66a1fdc3142ba20
BLAKE2b-256 ab2d66513f03c9a3b6315ee54d87a9ed9c32cf2e92c41f4ee945706abeeca3a7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ec4f124f705f3cb13ea19eb88db22a28347784d18ee2a7d11529f03ed6c3c65f
MD5 545cc50a8158c9622fd59e27a435ae41
BLAKE2b-256 490a85f7d6f6cb96d103ecd438a7f615b18dc54e77a6f474659f224efcd14d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdcdead98b672663bdad4dbdaefa9dc86919578f479f9944a81c0169aa896f77
MD5 eb0cd9a4ee35be24efed636d96a295a5
BLAKE2b-256 5466229567d7798437718872af6853d3db4cd25b86b7d3a27570c1e58b48814e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 59aae7a3b263d2e44561f9bd4781e1efd55f945992f20eda066d08fd1b5ae708
MD5 8a29687893ec4ce084763187d0684d6d
BLAKE2b-256 d1b79960a5c7c9c98885b19f95bf2364cd512c4771230f1a81c6046dbae56006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0b08b5f56bfbe5db4b94af3274ddc0dcba449aba5c6456dfbbd4aba2b58fd03
MD5 fd94f3a23485087704b74030445b2626
BLAKE2b-256 d0a69f21215aeb1cb0a5983fba24b405b0c4bdbef76b42d10879964a58b55356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 40adbd00da7b7373d6d32159858e125d469438b5ef5c07c437c9f10d90d0b78e
MD5 f8acfd261a3f67e7d43298647fdf6554
BLAKE2b-256 a6a09c5f71a7f245b6f413946146e07623b6cd869a8f1a64cca4ea1b788a459f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 71679d96ee7da10f11706168f065b89c2d783d8949fdb3f75e1c3801f86d8731
MD5 305d072b0d34ec3ab3057db13fc234e1
BLAKE2b-256 bb1900286eea108d79f08534581911cd0a62e846a2ac5e68fa1a456482499cea

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cf5b0c8a211e8b354da0feebca624a073cb256ccaf52fea8765d04a28a2dfc83
MD5 51c258bcf4d14c327934c24427314270
BLAKE2b-256 063f88dac25c6a4fb0a913b95a93ec85bd89afd3d7793633b3abda90eca75341

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 babd7355b24a643fc600e944be04d07f11eec977bd220414ec0b6bcb1eb312c2
MD5 83b5730a7b6b399d97cfd43b2d983fb1
BLAKE2b-256 3fdff8a655f039bc3c6977fe9962e7db95698443f5bfb58e62a4d028b19b957a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 62ff8cb82d8d8e8d802ea053efe4176ff834288c8278da2e7dcc68119c506831
MD5 88c7e620c1d444f6f27180d4f822aea4
BLAKE2b-256 8403ab54ec1384daf5bda739e7354c20717b851309a350e3763f7210f2a92192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 551828497cd09ee1ca28789550dd1fb7ac21a5771adb7b660d314b1ae68c467d
MD5 48a20ecde498db4439cf2616fdd831dd
BLAKE2b-256 198f701910f7a9b5afe7b27b7c27e621fa1f40d7224b2ec570618ad89f18968b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 59f5fa4247be6148b1909371b7a8a4198f52a18dc5cdc362f5cc6bf1f6b4ca67
MD5 1f1f52295092d5b982abce78743690de
BLAKE2b-256 90953d6ded7fef4ab5697897f3d417593e01dce61ced18993b208b4f95e8642a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2513b92ed166cf918075d57452529f41de7322f3c9dac31665c95e61e74cc170
MD5 b8f0a6ad3b68f9d161f70621aacd87f0
BLAKE2b-256 a4b06d27397a2cb671cde39e3cdf13ebb56ef84f7969b0df27ea759af25a0bf3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 054cbfb578243894ec13616a75bfc8ef384aba60bae358f0cf03ca089e56932d
MD5 57230f8766932406e414e60124e13614
BLAKE2b-256 8e53fadbbe6afdfc1fc33f7c18ad961d31fc72675468f07af28c117ae36cff2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 742ab61fa901f34cbbec74b184e6d08e245dc099753c5f7e331d30d4171dbfbf
MD5 65027fb3c02598c497080a881ca331c5
BLAKE2b-256 94822bd378863a10383b9c210220744c4b18e6553b880423cf93315e2d37b830

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa2cd180ad1c722c64769ea25c082c7611b2d917dbf2ee810c8c530ea809a421
MD5 a1475376955e5fa6d0813ca20d402c9a
BLAKE2b-256 83e4bf7424bc6a02960dc0ed1423b0b5b4f68c90581af00ae26ab0f2c002b02c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c521e435fcc0360ac1ad83b08bb69aba9a0d30310adc05450434c9af87ddf194
MD5 09c3a8aee559f5718bdaeca24b2dfe5e
BLAKE2b-256 e732c6a4dbf969bbf3ad20441c42fd09a0e047a327e542a649a60a082c2adb69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9faf6e8064880302e2ca911e7127dab3da4ee9b87f4fc10504778645473bf5a2
MD5 d39ac24369cfefc5c140569475bfbb25
BLAKE2b-256 6dd2e64441d37e3805d113ea14609cd25292332c5e18242db4716396147d0ce2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2af513594530f713b137477b6bbf62b7b45cb25734a76408c5dea5941a04c819
MD5 b03aee476d07433a7e723be802c0f26c
BLAKE2b-256 961cbf77955701a613b9454ab3cc0c213d6684f8ac9bc822284d1f5854a5dfd3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9113e05950d2587508dc729bd2613f1e187b89d916a89df43802d3b915652351
MD5 466c1e8b7d47996f88a9dbb6fa0a9882
BLAKE2b-256 2a990ba503a3b631f326a0e7beaa8013796185d6f1ef3561c575141376437fc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a04dc47d15a43d717fd658856128aa21d7d4734348376b74353cba0497e6e952
MD5 ee0bb02fea34295a0dc16b3b71bb3e11
BLAKE2b-256 f52fe54ceb02837ef0578393f3e8f9a243a3f5541dc47680906ee4de56238b08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0cf6a6b8a88fc8697665d984a8a4a660649a8e3c682a07e233276ca1670e87ad
MD5 8c00fd2e297573d6f4d68a39c48120b3
BLAKE2b-256 60cdfa9aaa6a4a842e0e088884217ec13675ee38a1805db50d20a2adbe65df05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2381ba1215aa7697dbeb46cb57d98d6f2acfa3862b67758f1092ae2f4547ede5
MD5 0f6d7f288b7f8570f058c3dd3490660f
BLAKE2b-256 0c687e8fdc085a609da99d6e77549ee1d8c16d328ef2ddb11cb0c699e917abb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 71f447f6498deb4de90c19905f276b85c73787cd23a1957dd0c7712f82cb9eb9
MD5 cf5847510bc86afc85e28f62722b101a
BLAKE2b-256 c13dae96dfd2b646862e9e2f66c540bd467f200dea2818b155223314b2aee12b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.3.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d5937109ba42e26a50206dc093b03ac256a40f4caa838c4914227db07d583b8a
MD5 1d27e7d033637005f68a330db55e9188
BLAKE2b-256 25437f9cc573416c71e3109dc165ea729a40f0b91114395acc69bd8f70d45760

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.3.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0dadd839ead2a99eb0b6cfce0a1903a614703917b80f812088d011c6a9c28a3b
MD5 63a4a003c03020c6ee601bf65b39ef4f
BLAKE2b-256 3c49b73be3a57dc90574f298b9188d98113714fdce9b5e69ab4b27350960624b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a3bc91eebfcff3f0094fa63cdc275cae61aa60f175a5be6d969da9a784726b9
MD5 cf22b16b281366a195d046a6b1f9a8af
BLAKE2b-256 e17b04c1f0fc6a408c04ce636f23b9e4bec2f43b1974b82c308ae56e80ca2753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ee7d69dc955c06cd2776bbf300af2765dfe0e19cb39a08cfb314bb7df77e4ba8
MD5 065ce97afe2c8b34979a8caed42ae59e
BLAKE2b-256 68bead61ea41e7ab5c66e1cdf98e7d848963c62c9f0e5a45d57f4ccb76d83f8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40c64a581dc27f5dd84774546d4579323d609564e8a7385a8f183b92bf73d7d5
MD5 a38fe85b2ab9d8447be1163d1a8789c3
BLAKE2b-256 4731a54911b2f86a914e56e581a309810e9737d6a4e55847b12c932ce18b0e44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8219646c4d705e4e465c843971fd2e1ca36e494743bde1719147396d4a316dad
MD5 39fb1c98c394ed4227e270ce2db84b89
BLAKE2b-256 a933fa3c748ffcf4f44c8e18844b407e45001d4d8edc30349557650dad8e0942

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.3.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b09d06b7ea5009ce901c90620a9e0c5905afb21261f4af066c15f799075fef23
MD5 6bb0efecfab44e705423efbd0ed809a9
BLAKE2b-256 a2e2d77d124763feff85089a2f0169da425301ec87e765af6543045fa2cf3798

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.3.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 05efd14c298ef73e71114842298024f446c8871ef76ab58b4a3ac77246628c4a
MD5 4dc5653d8b464ce5c38682471191e5f1
BLAKE2b-256 dd49fc6f62489bf35b87f4dc871bbccc351b75f462b4e553ae652705b7287856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c175af7aad42560ae86e887157d4af4b5fa11e902bc1ab0d9f9ed8f0402baf54
MD5 6570a6a35285cae119e8c1ff9538a364
BLAKE2b-256 770346499b4b78d1d4b2ec530b79282319dd9c1a89d4c687461406d312af5503

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6eac4bae3e164504a646bbe2baa485f8812dab9391aebdc519f8278bc19066fd
MD5 e79f75bcf07f491be55c9cf74ca3bd36
BLAKE2b-256 30abb5c518b10f83a903f5300c167f7bc2ac32f2437307cc409b4dbf601f53de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.3.1-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8befb267a594b2893546dd2c877b02d578631f7305cb1f9c77a38ef0d62768a8
MD5 a08ef3faa55fb6ff7a63ed2a3d813d2e
BLAKE2b-256 24234d25064a510371f798e18089a197bbe7318e5d97334a9353c4c2765cbf6b

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