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.4.4.tar.gz (60.6 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.4.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

r4pm-0.4.4-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (9.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

r4pm-0.4.4-cp314-cp314t-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

r4pm-0.4.4-cp314-cp314t-macosx_10_12_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

r4pm-0.4.4-cp314-cp314-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.14Windows x86-64

r4pm-0.4.4-cp314-cp314-win32.whl (6.6 MB view details)

Uploaded CPython 3.14Windows x86

r4pm-0.4.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

r4pm-0.4.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (9.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

r4pm-0.4.4-cp314-cp314-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

r4pm-0.4.4-cp314-cp314-macosx_10_12_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

r4pm-0.4.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

r4pm-0.4.4-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (9.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

r4pm-0.4.4-cp313-cp313t-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

r4pm-0.4.4-cp313-cp313t-macosx_10_12_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

r4pm-0.4.4-cp313-cp313-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.13Windows x86-64

r4pm-0.4.4-cp313-cp313-win32.whl (6.6 MB view details)

Uploaded CPython 3.13Windows x86

r4pm-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

r4pm-0.4.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (9.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

r4pm-0.4.4-cp313-cp313-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

r4pm-0.4.4-cp313-cp313-macosx_10_12_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

r4pm-0.4.4-cp312-cp312-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.12Windows x86-64

r4pm-0.4.4-cp312-cp312-win32.whl (6.6 MB view details)

Uploaded CPython 3.12Windows x86

r4pm-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

r4pm-0.4.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (9.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

r4pm-0.4.4-cp312-cp312-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

r4pm-0.4.4-cp312-cp312-macosx_10_12_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

r4pm-0.4.4-cp311-cp311-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.11Windows x86-64

r4pm-0.4.4-cp311-cp311-win32.whl (6.7 MB view details)

Uploaded CPython 3.11Windows x86

r4pm-0.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

r4pm-0.4.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (9.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

r4pm-0.4.4-cp311-cp311-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

r4pm-0.4.4-cp311-cp311-macosx_10_12_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

r4pm-0.4.4-cp310-cp310-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.10Windows x86-64

r4pm-0.4.4-cp310-cp310-win32.whl (6.7 MB view details)

Uploaded CPython 3.10Windows x86

r4pm-0.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

r4pm-0.4.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (9.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

r4pm-0.4.4-cp310-cp310-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

r4pm-0.4.4-cp310-cp310-macosx_10_12_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

r4pm-0.4.4-cp39-cp39-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.9Windows x86-64

r4pm-0.4.4-cp39-cp39-win32.whl (6.7 MB view details)

Uploaded CPython 3.9Windows x86

r4pm-0.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

r4pm-0.4.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (9.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

r4pm-0.4.4-cp39-cp39-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

r4pm-0.4.4-cp39-cp39-macosx_10_12_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

r4pm-0.4.4-cp38-cp38-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.8Windows x86-64

r4pm-0.4.4-cp38-cp38-win32.whl (6.7 MB view details)

Uploaded CPython 3.8Windows x86

r4pm-0.4.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

r4pm-0.4.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (9.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

r4pm-0.4.4-cp38-cp38-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

r4pm-0.4.4-cp38-cp38-macosx_10_12_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

r4pm-0.4.4-cp37-cp37m-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.7mWindows x86-64

r4pm-0.4.4-cp37-cp37m-win32.whl (6.7 MB view details)

Uploaded CPython 3.7mWindows x86

r4pm-0.4.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

r4pm-0.4.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (9.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

r4pm-0.4.4-cp37-cp37m-macosx_10_12_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.4.tar.gz
Algorithm Hash digest
SHA256 684943a586158582d79a728cf9b431b94d5db1e2f3a4fe2aab2d16e529e96363
MD5 6551e7a46dfaf61b9ba33811cd2afad9
BLAKE2b-256 58d76d452a071dab5c21cb1670c1582625bc406162121ca2cb70d29c88c69084

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ea8511f4da7683cef324d6f3ba7b2c3867b01e6240d4773d6104a88d753cf42
MD5 25ad101873a9dd5ac65ffd0deda1a173
BLAKE2b-256 cc9db0c0f61a28d4fd94e353f1519b1be8bd3d6e5f14c7be23a0cc3f20bfb781

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13586562fb87db341f3bffd080bd56bc5c4c7f95ee7b598616f78fa8633d3288
MD5 3a3b949b2f3b1dbe8641667391a9320f
BLAKE2b-256 60cab0310785a8d8b8ede933c8a786c9b815c33658eecb812066f6292e100845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5922552b0bea98de42b62193d600547f2bd12635a746312793483600d652557
MD5 ef8478992db0dd8da500926281ff38f9
BLAKE2b-256 15ab4c35db7626ed172b8f8fce1d7e0b89398053f93e48043530770da55b26f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03787823d7a85ba1a65c90fab3f31dce0e59167ada1f7936f8b4f8d5e312fae8
MD5 a9d9731aa3681a99e8a9b56569d5d231
BLAKE2b-256 f2c226ce0a066a94e3a4fa955730e4afcf0635d79aaf5aba7395a15f9ac864e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 7.7 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.4.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7c1a582d43db05f6a0f5d3624dbcfea077510cb6d43e0dd3324f83f6ce580149
MD5 049e3925080a49d8403ce63db7d5a889
BLAKE2b-256 5831e714b9bde3d217398757206f2de67138f15d0afe4953ac3f036a8cf9f27c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9124f3f784af2245ab3ea5036dd63e65fdbdce5594346fe3605f880909fdfd7e
MD5 e17a290cb37108d1b81c11a618dcd88c
BLAKE2b-256 ca03dc9537cf39cb5f7b16646862fa0f2eca32278cdb51f95c9a9f4a6f148d1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 251657d41d75562892719fe369b8cd157a74b70a21dc696ac9c0d6d9f18abce7
MD5 5c9b7e28d0ab960ba69f5c1a3259449c
BLAKE2b-256 123e7c35444ebb72add3ff2d75d9c0183a0b6a58480438d599bd8dde5ce6a3e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cae7000f4de8a742b449d8a368cb0a3ea18ae3be450d59129c4137017b30a97c
MD5 5b8b8b41bb4854052f61f413c25729f2
BLAKE2b-256 07365fcfac3dc9ffb52c69579b3273f45613a449c95c5bd83c8f795dc8b65dc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9f8db936ca66df6aa65a400f5766f8a58328f1a485cd40bac92d6875496a2b3
MD5 23a94021ad39fa7ab47ce1a4eb9716f8
BLAKE2b-256 65b2891d1794560a522cd4abb24b8d34c816095aebc027bb3b98997727dc389b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5e75f68310ade64ca0acbb1e46b1074309a0657a91aa746ac9b48ab62c50a2b9
MD5 2b0d4ac157e2239a17ac8a2617d55fde
BLAKE2b-256 8d7cb40f1be76ba2bcc744ed9ad621c96ee3e154c54dec8d84f7df92adf74575

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc1433dcc4ae19ee91f8374f1416cc41dfffca42d414104a0c7cab24e6f74b5f
MD5 35bc3a02614dcfb5c3214ba3764f3842
BLAKE2b-256 3038761c945f6b42df06c62e51a66fca3eb463ce64f47a371d21fe8c3e4c5afa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4821190c8b026cb1803374955bbf18d5e63554e5ece25cb697aebb67043e23b8
MD5 6b201072cfaa66e09251aa87a999159d
BLAKE2b-256 254b1a130c62be89f273cbe3bc539595c57ce1e8913bed935e697ec219ae2b88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0dbd635fb1dabad2ea8156f52a65eb6fe0cb1be71195d0ae161e603db16abf17
MD5 95d35226bd82ad1552acdd7ec716eeb0
BLAKE2b-256 d1e2461ac7cf75a5a8a276e8a612613c982ade312d6e642f9770baa5c6b774f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 13a7095c757cd000041ce0a52c8cfad526bbb0ce2a00351a3858778da7cf65e5
MD5 03f1518bf8d4888e82a95a06d8bb5681
BLAKE2b-256 1f85368f4cfadb015580929f4160a90801c3a11040e6ad6a133aa9dd9689dfb8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.7 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.4.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 150b5857f9c98f09ff5f00d978ce1575f90af727b6396388a01e5a7ef6b24294
MD5 456f948e93655b8a607cbca0c092a256
BLAKE2b-256 f612800acc40bcbb7d5a592ec5ed75f1d6d3e1857befd3f4043d5a5d307178de

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ab2b63d6c5da66c2be80e891bcd2de4a3f75660f3cd672d55991c32436b4a44c
MD5 6516e8b2433ec94bf078943f5efa614b
BLAKE2b-256 6408d3608287c5c02a9ca779732e2bd908716112e088c30dc91f735df661ad75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83d546b2457d2a4f79f709b86da5f715be1bd5af6767daeeceb88fdfd0a00a7f
MD5 35d82a5512be1d457c9eaf29add57b30
BLAKE2b-256 91d8e07f1c7ffeca91adab7ebf1807cab4fa77e5a1ade03dd0d38ef7dc3e06e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3eb65024d59aa5c5220b4c27bf605d1b2ca98fa9823beee1dcdb45bf90e9c0f9
MD5 69c95a03eac9aabde382e1ecb76d79fe
BLAKE2b-256 8dd263d2a4c3da57768267ea4d75f4988e1b8921a56fce48d97d0f330137bc39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f43d347dac014ecdf30e4701044452c9d360bc1b59631329fa6706e8ec0ea9ea
MD5 3d6fdd81755c7d659259aba09eb3c691
BLAKE2b-256 0aec4917307d0653bcd95a08a8b0f6435516ca9b421141f314a4052da81604a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fcd2aa816e18bcf92925fa0a292764ab0cdf0e459d3bfdcc07907b394bc649f3
MD5 69ce0e4cd1b235e70b467a76e062be33
BLAKE2b-256 9295939726f19f36e4a9580f6e9d97ca58e6917005fc7b380a14623a5a834274

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.7 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.4.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a5ba8e5f957f08906c65c6c5f2dfc024b384e60672fb7f5c45a2745212183521
MD5 aeec06669273f74d583aecec41bec15c
BLAKE2b-256 ac4504570a3b5fe8b76fc3a21657bf3bb5357174532beda8f6cb192676a3e1f0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 12439d88e36928e55b7d8c77a0389e01f2fe85f30d8795f8567a13bb12ec42fc
MD5 c6be8acecd43c63ec037b3bbca29f86e
BLAKE2b-256 40b14062e5b7ea03ccfc3fbf104af128cb45d7b1e7d33686225701ca1fbc7d6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 564ef4a1b1899ab89ecc4cb6af24fcb0cf437f76d350c9cc9536138adfefb8e1
MD5 3107b55373fa2de6dd0cb58d7e9c2204
BLAKE2b-256 2107e0c7a1eb341a6680918cc9d1743ba6035ba1b24ec3aa240bb7185d466099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ccd46aeefe210ef4bfdf068da02d8a703b70dad80d0345df7074d596070f09a7
MD5 96ec826252ef71222a8254d08d011816
BLAKE2b-256 b71f16608e6cdf6e4a9ff2de562fdf070e3c83f90498b789ed5ac31cc4989d42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 635398796c6797e520addb422f393213420d6c33c815f35b590c14808437bf0f
MD5 f564b2d422599909a8f839174925637d
BLAKE2b-256 756efac35bc6bac52b1b99f64969a555e4db54b65f1906a5a358027168910a03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c50e6af91f0d3e11ebee3d81c19681cc1834a0636513d43b1c483594da67297
MD5 c0e07b7fb22b2209147db53c7fe97e2c
BLAKE2b-256 799d7e976d323076450363e3d6a0a60eebd0a20be8968e694f9da2e7d32f4a6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.7 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.4.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 836d01d2e82e33d515b7dc7cd02921b7102c1c3b045364b29a568f528edda8fb
MD5 d97f799601e755a9ec7e728ca5bfa4e9
BLAKE2b-256 bb5acc0814340acd508cc8be622fdb7f1c3104a79824bd8611b2d1ee630d921b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7a6ed9f1bbf18b0ee0049715a30185798f2653847c3aff4a612062642296e7fb
MD5 7f4eac03b097c033fefaabf808b89744
BLAKE2b-256 9bd0ff907b696f39df8fec642aa9b975731e0ff84f7b44f054589fa62d8dadd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9097a29bd2fac7260a650eeb87a77629cd525c5008efc630ecac55476f300f83
MD5 ba9f174bb21dc269479fd5b0b7578ea5
BLAKE2b-256 31313ce5624b002a09e44ccd43eceef083c7a3f92edeb5930e8ecf1ffaca6f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 170910b612e6686beb42bb8f73dddbab0695458d3cd2f63eda6229566fff5205
MD5 4b2ee6d90e253d924dc4818c6e85f87d
BLAKE2b-256 ec784c7aaf759c86adfc99da457ffd39f630f614fe912b825d9f46cc5bc3551a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31d2870dec5ea9919b494283276784cb1fdb7fadfc02c1f092606e83b848b05c
MD5 7232fec5f31537ecfcd79f6b2ac96b65
BLAKE2b-256 37014caadf09a12eab2c23dc65d11270ff0c30e84d11adebaf1478ed4fd6c52d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3d89d98d70ec9325d30700ad8faa089b145e0c8e8d3347be9acbf5b81d11f1bf
MD5 5d4727b45bf99366ef98ead0428764cf
BLAKE2b-256 94a8a712b16120612984caa4cab652adbf4126b2d727d3cf3bb6ab9649a929e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.7 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.4.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dd733f33f438da841ac2f3d2e4e44a00158724c7721045fecb7c981e841a68b6
MD5 e0bb99248489adf3dee59a4449a7db1d
BLAKE2b-256 ea72706cd921ee72eba48fbeab6116dad9bfb6e6a9ea40bcbc852dacf57d6afa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e71d50006badaee75687eb5999aa848024d6930112d6f9b0485c3320d6ede6f2
MD5 6e3742508349bbb0b3cf10a4d1a25d77
BLAKE2b-256 18c22407d543c57846f4961bf79eceb53b3fd28e7c46911593ec7a9c7c1da415

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f261a89113c3f7faa6a6af3f9a0f7b1dab5d2dbf0b1202f2aa22c509a896dc24
MD5 628a85d6d2dbfa7155adeb01be3c23d6
BLAKE2b-256 69616fa757a80579f4bd6952307a52977d1febd12563478d19da5e6e06cc73b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ad58f5fbed9acf38756f44dbd00315379e5b952a423d98409a9f5de6eaeb9db
MD5 7432457f39fa1f43af0aac4d5c2cc43d
BLAKE2b-256 d646a7acc02711847708774e839dc076c68ce44c38358bf96b6c460637183b5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3b6401a9a2b633503bc292b2d971d3eab50ae0fac371b00714635d199c538c4
MD5 bc6897b42e08337b3c1a65d136843e77
BLAKE2b-256 40fb0b38b3e6695021eb078e2ab87f5f93c8fb8e0d4eb448d8e5792f848cbac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a5dd4bb53214ce0d0d278238da51f1744dfc06971c461cdb6e25ee388883b49e
MD5 6fa83820c58e59d9589904ae2daa597c
BLAKE2b-256 d1e2fc7bd66231ddeb64493db2163787590138d1f5e22b9cb8e34de4476d811b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 7.7 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.4.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3ca6c61cd750e7de69ede254bd1e7417f0f1d708f8663412600f9e995b850257
MD5 346ee10e634d0f467e1e1eb88ceb8a8a
BLAKE2b-256 ecb52892b016f59789ea01ffa7e16b58a69b104499b723c1f80f6c4b55006c97

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 52cfc29994e9dc20b4b9c6601c9b2f698f90d2ca95375597af2e3252e8ba92fb
MD5 13988327b5bdf5ca63dd6763506a23b5
BLAKE2b-256 f8c3c978d98e0901cda4943283550a819d2c500490a9ebeec3385ec75715ab1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 164c99e0e13507552840232a11f03d6b177621effeab85c513bd6f934b80e26e
MD5 2aefb0af372b805d00d06152fb95c15f
BLAKE2b-256 7b21cc5c7dfff3e2ddd842f2af87135429d3a2e519fbb3e503215f30d150d650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 25437449187e854e52df4a13ddfa53853febfd2470e141c6adb10815c06fbadf
MD5 1198558b90706802791f8af2fdb45de3
BLAKE2b-256 6a6f6771b81490cff4f5b33cd7c3e8249fb177ecd0f623523eb5023476b5199f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23b3adf391ca855d5345472a3950d7afdba8298bae7e74ddd184e3d6b50b35c5
MD5 dd6d99b8a5201a42f408d8f7874319cb
BLAKE2b-256 ac50cd2ace8071188858b0471b649b244e1e45032d2f70fafe7b349e5e880563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 75f9ffc47be9396bc5ea9b98c2228388162dd435076e1eae42ca733c67576ecb
MD5 a5eca600d0b5dd99278a7d2af99c5edf
BLAKE2b-256 7244ece8e2c356aa7b6cfd5a44767e6310cf19bbd3c52076d5e5cdbbfb5a4135

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 7.7 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.4.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ff39daf122f14946c03afe50f69942fc6c6685e2994b597ac3e5f844dc207b3b
MD5 33d4f44792df1ae5d16330c212db734c
BLAKE2b-256 92f8a247a52d8ec6e04ef1d6edb6a6555a1d942c31b24688119102536e015a55

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7ae3da230be61824c9a6fbf924f3d300287f6c239407b7d5592acfff8fe3f512
MD5 2730d427ee72c0c6cb7058c5dded0ac6
BLAKE2b-256 dce64692ef2477074be3c90f7d5cc1ed0664e4f316648454691d102ef33eedbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0dc34501da700f755f6052c3bf1f8ed416120b078e00af86a8fce52adeac4df4
MD5 c61f0f852d8bf6257be17c51fead632f
BLAKE2b-256 ea05c551b6fc4d1fa7c4245cf9dc7d678d0491088306aa8f478ec9fa7e4ec9a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af3b8250d17c7a56e901232f2ca4ea680676783796cff3300a7d2f4ec92ed9a7
MD5 f2602a44ded4dc0cc8887b4f77940981
BLAKE2b-256 4cd52514540713f5bda2c4664943ad98ecf9fcc69371af8a4458300e7da08d01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 583f529be183538251f1ae84884d9821b8801a1242c4ddd474392457511c5485
MD5 c886512fcf1fa1bf0752500a77cf5e11
BLAKE2b-256 8a48367f40e78b084df9db4e49d83518dec3b7f9bc59a232c061d2b1bcf92a2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 77da92af84edbd96f286f6a32cc2b870374993c489dda1fbb1687f3ee028733a
MD5 f8106634e5cc98cbff8bbba0102413be
BLAKE2b-256 cf33ad4ec85e56f31efb6132c4c85232654ccf2e629a2c1c60e595cad4d152b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 7.7 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.4.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e5947b6839bebc2efc30045a6ce5b6fac72eaa72f57443e4def1814c3e1322c7
MD5 c8922ffd526987cbb810d27278a5dc79
BLAKE2b-256 52f559ea293ec1e2e87b27d8aeb5c037dec7d3b6f95bf2e9806601705a2d06f6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5795f9ca46330fb4d3dc804b2abb69f4ff65bba037347ccce8900aadd754b968
MD5 38bf4018284b1a6d4ec340b372e69b5b
BLAKE2b-256 50d7a84f61f5c04c4caa6fcf4de84a91db9607f35802a2f78f2cb56b18cb3709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 839b6a8a5a622e40947c20421076fe70e7f9820198236124ff15fb4da8289f83
MD5 d31fb199a50164427d4951ea1c949be1
BLAKE2b-256 baba8f25f39ac897f1016d6f57a1ea7f93200decf046836176c006c4ae41ddc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73eeca9304779bffae7efa5c6886e1f8da186720cee054b4c6684d5cc33519d1
MD5 0226cae67a5d0f78697cd5bfcd057366
BLAKE2b-256 74e8e28049d32fd6bf18c55835f83221358ec6927694fcab1876b1da6b6e05a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.4-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82e97195a617c874a0d054c3c432f42b52c6843fb48cefc6bac64277a99dad0b
MD5 5131609864edf9588753bda1e5accc62
BLAKE2b-256 0dde8e7d192c21f380871c941ed9a7814ce1a47c5db5c912bf10228021c935da

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