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.2.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.2-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.2-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.2-cp314-cp314t-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

r4pm-0.4.2-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.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

r4pm-0.4.2-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.2-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.2-cp313-cp313t-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

r4pm-0.4.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

r4pm-0.4.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

r4pm-0.4.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

r4pm-0.4.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

r4pm-0.4.2-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.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

r4pm-0.4.2-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.2-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.2-cp38-cp38-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.12+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

r4pm-0.4.2-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.2-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.2-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.2.tar.gz.

File metadata

  • Download URL: r4pm-0.4.2.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.2.tar.gz
Algorithm Hash digest
SHA256 133919047a04efdd615074d7fe75eda45e12ae9522e14835b7e8c5344780480f
MD5 cadfef86e18a75ffd19fd793087efc5b
BLAKE2b-256 f48f863b9be8bf33fdfd1b7dce71b30966a06904064c1ff85e15949feb21b2cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5620e8d04288c910d57b88661510606f48a46441abfc9266eae7ecd3848ce94
MD5 5b6bd97bce5e27452ff9c85f781c2f9b
BLAKE2b-256 f1eecca8d14116ac307fa05e3b6f3d99b01be915aa84e7d26566f1cbf060b637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8375746ea8d4a94fcfe8a5e2d9d0451ba4ae887d30a365b7252e21ffa2724029
MD5 f690fe477758d6ecf340c1290974b5e8
BLAKE2b-256 493b8eec5b33220c301913daa99524c70a5258356c4b35c9d8273d35dd63366e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 917d0f00347c90ab7a605044144b505130190e33231f1a21c9282b2e98e7a3ef
MD5 1707f1c90ec5161ee9c0f7b928e51809
BLAKE2b-256 f4f4f81fea2fd1997ac537e478cd27304221a10e1c3c3cc032e42da9a99595a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b849dfa7ac254626ca401ff20d98258b6c6ff0098fc2c8c3aca8714b087e217
MD5 30bb520a4c5711206499c44e80ee7835
BLAKE2b-256 9df783a3b64a54d2f9dc0a6fef4339fffdd266f7fd373e0e10053575d136568c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.2-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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1c39b7e77c31795ae7c973438e5083e16e0236b062e40aa547575d3e80417ef5
MD5 249cb88165b24a073778d3c10f885687
BLAKE2b-256 5cbad67ee11f5bd63ab21c155c90103be8b7cb6a9579c5f4f0bc77f395155344

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.2-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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8f29f5800b6601613b504f83476ec86c37f21c5e3c4ab783dc97eea6b0a2722c
MD5 b900caf0b0c877536e44921b78a03b36
BLAKE2b-256 c89f18177528b2a396b90a79931cfa8942b6e9a6d1d78f9c4460782d78f597ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b299892d110a1187abf68619b7d111e45da8c9e3326a0522415dfdfce55f0c17
MD5 06b17d36a1c806ed5e4b8d30cefb1c6c
BLAKE2b-256 becee7ed3926f46b7d0cc2581810941b3e440c20566ea36f157d80356957d71d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 23dfda72569d6a2be8bdb3d3d713a633465dbca6ea042556a47d392ebdc61c7f
MD5 02af4e230b57de5676a80259fda2c10d
BLAKE2b-256 d054ef1e59091c65bd2e46ebdd585439cf4a90694b24afb7b8d403789fbe45a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72f5ddd8105d2abb3a8f230050b7620cb01d65778d26cd7f71a5da3116237da8
MD5 f3077aa7f15b218e3e80859e8d131b2c
BLAKE2b-256 60878eb7a9d9210fc37bc70315e62e3dc21ec23774123710ee5a2a11e3275764

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2cdbb2f9e83c08fb4c6cb30adb43c6a4b830bd68d94faa20f1c9083edcdb5603
MD5 1377e508fdfbca5a6ddd4202c35d3b70
BLAKE2b-256 df54356eee5bc747eefd7a3ee455050a82968750d52b3ffaaf077d5de60461b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb6c996007c1576b2749c8e89b4654acae776ab1e4ee9862c1e69a42e8e4cc28
MD5 9bf8815f5336d958a61dbf5787c11bad
BLAKE2b-256 36f7f3cf739c27b2e1d01a8e279f1d1b874bf984f595dbf943bb473de491e174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ec79211306171b8b714bdbc10e8be879a55c6a14d4bf07d5b23ff74369bd8e49
MD5 ba053857fd94302b07967e66080a94f3
BLAKE2b-256 c1dced4b626787bfa6cd199c50ed1d07c084e48d89160156b40115b0e793cee2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd1ffa53013098c71c2afda7179e9c60bebf02585a427b8374f531289b251745
MD5 345902b5d7707245c79a55169fff7574
BLAKE2b-256 1ba23a30419786e3ce5791cd85ec30ad4353ecc1a8dec8c0d46788335e241c70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b81161d056acc84a78b9d4835c919a57acb1c00aaa566b2348d728a9478ed9b9
MD5 e525c114718bff94235dbf5d689c7f0d
BLAKE2b-256 9d89ab6a52e62e36ca19aa05e4ad9d824f2551d4f6da80ec6dcf6e09fed7f184

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c333beeffcdacf168280793f5c4ca081b5a2f0164c7a089ace2f9d2755c47e8a
MD5 68e94e86e2088f68ebb4ddb3b50c4436
BLAKE2b-256 b8bc9cf4b36ca4019089af399e712cee7ccaab3eae82b8690e8e86695c2b7689

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.2-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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e79b830e203b035cd33c317c69785b862f4bd056934e29f578ccdd094534acda
MD5 2d849eecc3c5d942468728488444d602
BLAKE2b-256 55e240b2fa27a09a2606f35b42d38c47153f13106357dd552ccf455cc02a46fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97360f7b220b5a4f911ddb9a6b5632f1516b3941b8f943d410b0500be701ce53
MD5 d9400e7667b8c650f1c226f3a00b807e
BLAKE2b-256 717a28a3045ee91957d6d4b174b3075ea04d29bdee48aef87fd4b846b7dc439a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c07e3b28e916f71e569f2bc5f34bb398234e204429682734ab19e0b67cd6915f
MD5 a12539e4f32c6c02177d0caf0373c4fd
BLAKE2b-256 17ac218f583833d5066c08873d4c447c3e586c4019a64857db374ef8178cb14e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1241716845adf8b2223afbf46d44402f33f8741396c2d6e1182288b05e43d6fe
MD5 ae6d4bd5fa2a807b3e2ba4b78fff94dc
BLAKE2b-256 c25f002d3e26d2b6a2f1956f333ebf00a80e54ef1d8d533c3517e8dd17471804

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce4748107b8faeb7ece4c267ae63455271fa4354db4af6e81a1685b5e0c978eb
MD5 3da5a18c867ba81403f4314cc1c23ab1
BLAKE2b-256 a7cbb5aeccc14d29edf34d6d8cfe87c38e84ce6ff99f1b430e40f2ce87140f62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fce178c232f7cfaade8a8ad80462a56a81600670ad6b89e19c629d9c3494a731
MD5 d739f8410232ee9044e1c898ad56bb65
BLAKE2b-256 2f4ef04f63b6c23a699748e7b34ace826aa39bf550af219aec402f8d8ce9b6a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.2-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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4e370d26b7359df571f50198d03ef2fd01678a33342b1717f29291e3f56c4d11
MD5 a50f603024ec41e63abcba3c30e57ef1
BLAKE2b-256 1f961f8a134e76970555e9e9f9361a15ff11465a087cec69faa7f1ffc35d95cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 465cba5d58f400646c3ffd612323881643c6105c9f62116398c7e44ba067c8bf
MD5 29ebab1b95f4a1844dfa4b5de508e339
BLAKE2b-256 08671222655db41fa5a08d9bb538603c0c7a705cc3c09d433cba003a2e44eb08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b17feb4ea83e98621132f48ea268bbe72de91e765fd8896d81654c6ffe4729da
MD5 24fb4ab89fb82051b43c8ebf85f4da3b
BLAKE2b-256 5268a6f60be9d1eac557d878b2c293e1f399c5a02c7cbfcac4a844d257a5504d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c26d6a850a714c1d217a7329914bffea470b8ac290a6ee12539c4b2eb26f7e1
MD5 23747f6a6e0b907a522a729e907cd574
BLAKE2b-256 f36b27d328cb061f35bd26340bf24e948ae1612a32758779c6efd0393b4baa61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a0f753b3c7cc47efd4883a396a600f62bcf67f6129e937eff2e9ee534c4e0278
MD5 6aad1aee053ed23c350a093bf06bd83d
BLAKE2b-256 8f830475d6bee31e6fffbdf67842007b276e3c3b85f72625841bc8ad4c0a479d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 80cd7312901231d31b6089cb63a1bcf1b78a711238d72e5625da8eb071c6c1a6
MD5 80b205687853cf516b1a2adcd444ab4f
BLAKE2b-256 95da7db911a237c5771a3ceac50610a5113d129bdf7960b4de0b6a58e8d1c1e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.2-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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3bc8c8c6e837c475b83c31bfdec6ed121f6d0a0594846cd7bcef259fc4d7734f
MD5 2204c923fb56fda7fbc5aabcf6303544
BLAKE2b-256 7695f7d2e30fcaaf38186e418b8822b8d4a00802a2d75ab3a703a6b9bb530375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00dd2e3e0a9b33dbbb9b83762ab71e4c2255cad54f24341946bccfc1b27a3ac5
MD5 3f5b8b7ceebf4b0c42e8b8b18f3c33e6
BLAKE2b-256 a11f024367d91d9dc6ca2c94d5b49f1d8906e6bbb2ad97f41580e4e29853a9c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 88900d695e046675e80d7a678cb63bd2e6e1b9969e60235edb0a500c60cdab46
MD5 f8d95333161a0907cb7dd73f677d9ebd
BLAKE2b-256 c07578cb1c95a3e7093f788a27db82ad933bb8cac32c335b646c7bdd80ef2673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 205684a317ac0aa4ff6846858e9931ad66a249a75bbb51c95396d1240df52e43
MD5 b94a655aa396c3f2f0b7d7949482ec97
BLAKE2b-256 ef89652ff10fa04ca9d70cce54f63cb021e93b252e17e5f180bb66cf91012bb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d8ba174e9d99c85cbbc1811f5fc4d7b94e2ca113769202024fe33ce36780bc58
MD5 ba236127d7b0c90b6fc82a6f2d3388e8
BLAKE2b-256 58d4ec5f3e9236afabb5268113e1cd607e47718abe22f5893d2f1b3f5c3e4829

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a2266116feff42a8bc6321b2b12d6a7328394e3130f7f6070710ca42bc2f1292
MD5 471d7405fcded5c50e2a514aabe20563
BLAKE2b-256 08161aca19e71680410d27df5007232e59c67e70c5d1539db8685bc85ee8350a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.2-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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 99122987dee4dbf4787859f5f68697167187c66d538cb7f22704203112c6497f
MD5 00c89c4d425f4550287c00c25c7fa20b
BLAKE2b-256 46b11f21f1cfadb6bf9f79bc4746768844ae514f5b6ab17f55365c538c38e50f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47b0a33e158a6b46c7bd02a8cf2a400232b4df9bdfcb8b9245598942a782788d
MD5 8faf2b5dd1a67611bad0a545dd9725cb
BLAKE2b-256 2fdef82c26d09177810cf831ec344d5c7bc5863d6928991cb33c5e47b6c6ebbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4c271564b2ebcef2e7907bc0f187f74076aa5f1ba9fa7f763d98341e4660ceae
MD5 b2cfaf14577c60e2188e4d0adf054657
BLAKE2b-256 274d5aa1ff6864a5565fc606b87495be077537f3a9f14a70cea91121cec4bfc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64793aa1daef2f1e5497d4e1c26f3df0f4d6a0190317c4e78567141d972f40ee
MD5 ec3f99666a08a48fb59013efa23a2a8b
BLAKE2b-256 013c57c1e6c42a94abfd6c9a8ef3122c23f265615e8ddeef8b725213e2e27f99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 21de7081e9dd700a084674f2058fef51758f274e9075d361a0a56b91142229dc
MD5 d16697cf5375bffd3f110ad43558ab63
BLAKE2b-256 5e3224a9e5bd725026a4b00fad42ec33ea78d9ec48e06033fe3702cb237472a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.2-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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 da92bf84c045818c9174d9691e997b110ee2eac0d408c5eb7898147ef11cb7be
MD5 f37682188238fc46d7549c9b33f97b82
BLAKE2b-256 2f28e6dcadb1d86954547dffc070e866b34741ca8acf8699c57a8394bfe636f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.2-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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7515ed1a9125a6433787db85e8e9c13c998b5b591f4ef7f97683f0bdb794b82a
MD5 b227315beaf7465cbf820f3e1e17393e
BLAKE2b-256 c235ae4c2d5f386f99c0726adbf7fb22ddf5fd6779aa0570f1375807472b2a5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12c870ea99d4444da5cd9259449a4d1b643eeb1f8036b49a192fa7e313d409cc
MD5 8004dce78b0965d636830a8e4199f862
BLAKE2b-256 40704584f39083a317a65b25533ef11cd82fa11d7ab3feeeb9437498e7c4f622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7727d58424a922b607d94b553edd04773813c63071573e4be578fd3667079670
MD5 e6c567e9a0cf146d7e9e4ff978648d1d
BLAKE2b-256 f4bbe1a6722f8978e1652df3498cc589b2f50d6049c4e230ec7f1147bd3df2b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 375cb1653b58dcad96d5a7f06914764e93b1c3bf90a987eb318fe9621a15cd3d
MD5 afd8c84516073a44f55bbca5f7b76546
BLAKE2b-256 2234f3610832293c1fb79443d437a8a654850b0b54c9fc36893a866c46d393fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 42fb845c2513280c4a798951610ae36ad88b3b3b14f2910ebfe4b8ee63bd2a9e
MD5 9778f14d79be3e143f611a63174e0193
BLAKE2b-256 b9f21f6128e8a56021d14ad541976aad1fb8508da96a7ccd3223b6b05e4bae91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.2-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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 57222eaa33c89daac9fc9370cb3f66f0381cf712ff0490a369bc79efc7b0a211
MD5 e114efd73af91d8765d29c9ce5c27e50
BLAKE2b-256 ee9622a7ba83f2966f41d6fa501e54752270ae7503a30e7f8bc7d5916e1144b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.2-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.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 195b30206913a3293d728f965e80dbb394b1f4ab53ea2fa51f5869f4aa1d6e50
MD5 7aad737a0636d55e82dcf9b079cdeb32
BLAKE2b-256 deea05c5c9294d3236ec5b768843d8dbe451490c31363446d2497f1b5280e552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2362968ee3ce2e8150ac215c8229e18e380568c6a56d279c5688734ab3b8d10
MD5 95bb5d2881a5a98b8b9e3ef27dd5ef3b
BLAKE2b-256 012a3c3dc182af54ea1b27e68122aa13f40693bbc34a490145faba934f4462bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc1b5d225dc05373d104a716c98ebfd6e83e176c7ac33ed4c2112f803b610f5a
MD5 de1af106c453b79e123985cca02c1681
BLAKE2b-256 72d653f8ff43e5bc09e4c0314c57c58ee24f6f906453479c248b70bc92cb4fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7ea081e803a2db7f25aef40d393c709380b04fd80a3e778474e11331089b7a5
MD5 8a83c8c254cbf8080a6772c9886757f7
BLAKE2b-256 650e5a925746e40a7864da01653863cffc9f0b6012369e02f53c1f3d4a99c29a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c36ed07ebed5f8633a6adec2609ceaff70e7fc6656b94d8eb5a440df7c75507
MD5 13a6f285738daf468fcc1179a987b1ee
BLAKE2b-256 b297292de81e1fe269eb27272c4b014fb132605dc3c66d02a58e1621b20ad2d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.2-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.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bab6803c5f553e6f27e7fcd7a63ec00c86db0d41535b97d227d58bd87e0da885
MD5 e8d8871b7242ce8678b72f7a8e8bbbc0
BLAKE2b-256 3d466ed323518418a076677fe817d1372c0cf3d4a2792e64d80d498968d9eed2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.2-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.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bb349092273f66680f84ee981d7f9bc2ca196b2ec6759388370ec1f6f190643e
MD5 b32b57529b704f09ad32678f3fd7c996
BLAKE2b-256 70d289325f1069c4a18208e1aaa16cbd0c2968aaaa0a8780f627f010c258ae40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff4bdeffcf6c7bc94c4beac9d301a8ff6478376cdd2240d36d52815d0f55a0e1
MD5 cfd216b5393616a3072ba74f8e67efef
BLAKE2b-256 cbe74b222c487aa2ec69357a96bafd8d04360932e98b2ec38512923bf1c17b92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aaac0d1971c082aaf4ecdb4dba714cb2957fdbafe86334e47b9772f433ec67f2
MD5 02ae06e1cb5ec3f400b9ce713d543826
BLAKE2b-256 b9469aa4f2671fae6a2c07cf5c3fc73c259c74a40f097e53eeb37868a51b281c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.2-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 288c3b24bff839f646e5af364c4133cc1b477388c1a36b488156e7c5a563b36c
MD5 00aef9ba65d78628d94918f36317e9ef
BLAKE2b-256 f175cda5fe112bc58edf027ff051e031ed54998499f698ef6961df1f1910bc58

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