Skip to main content

Rust-based Process Mining

Project description

r4pm

Python bindings for the Rust4PM Project: Process mining in Python with the speed of Rust

This library provides basic import/export of XES/OCEL event data, as well as other exposed functionality from the Rust4PM project (e.g., process discovery algorithms).

Features

  • Fast XES/OCEL Import/Export: Efficient Rust-based import and export of .xes, .xes.gz, and OCEL2 (.xml/.json) files
  • Auto-Generated Bindings: All process_mining functions automatically exposed with full IDE support (autocomplete, type hints, docs)
  • Registry System: Manage data objects and convert between types as needed
  • Polars DataFrames: Polars facilitates the fast transfer of event data from Python to Rust and vice versa

Quick Start

from r4pm import bindings
import r4pm

# Load an OCEL file - returns a registry ID
ocel_id = r4pm.import_item('OCEL', 'data/orders.xml')

# Convert to SlimLinkedOCEL for analysis functions
locel_id = bindings.slim_link_ocel(ocel=ocel_id)

# Get statistics
num = bindings.num_events(ocel=locel_id)
print(f"Events: {num}")

# Discover object-centric DFG
dfg = bindings.discover_dfg_from_ocel(locel_id)
print(f"Discovered DFG for {len(dfg['object_type_to_dfg'])} object types")

# For case-centric event logs:
log_id = r4pm.import_item('EventLog', 'data/log.xes')
case_dfg = bindings.discover_dfg(log_id)

How It Works

Auto-Generated Bindings

All functions from the process_mining Rust library are automatically discovered and exposed as Python functions with:

  • Full type hints for IDE autocomplete
  • Automatic documentation from Rust docs
  • Type validation via JSON schemas

The bindings are organized by module (mirroring the Rust crate structure):

from r4pm import bindings

# Top-level access to all functions
bindings.discover_dfg(event_log=log_id)
bindings.num_events(ocel=locel_id)

# Or use submodules for organization
from r4pm.bindings.discovery.case_centric import dfg
dfg.discover_dfg(event_log=log_id)

Bindings are automatically generated during the Rust build via build.rs.

Registry System

Data is managed through a registry that holds different object types:

  • OCEL - Raw OCEL data
  • SlimLinkedOCEL - Memory-efficient linked OCEL (required by most functions)
  • IndexLinkedOCEL - Indexed OCEL for analysis
  • EventLog - Case-centric event log
  • EventLogActivityProjection - Activity-projected log for discovery
# Load files into registry
ocel_id = r4pm.import_item('OCEL', 'file.xml')
log_id = r4pm.import_item('EventLog', 'file.xes')

# Convert between types (either like this or using r4pm.convert_item)
locel_id = bindings.index_link_ocel(ocel=ocel_id)
proj_id = bindings.log_to_activity_projection(log=log_id)

# List registry contents
for item in r4pm.list_items():
    print(f"{item['id']}: {item['type']}")

Simple Import/Export API

For direct DataFrame operations without the registry, use the df submodule.

XES

import r4pm

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

OCEL

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

# PM4Py integration (requires pm4py)
ocel_pm4py = r4pm.df.import_ocel_pm4py("file.xml")
print(ocel['events'].shape)
r4pm.df.export_ocel_pm4py(ocel_pm4py, "export.xml")

Development

Setup

# Install Rust: https://rustup.rs/
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

# Create virtual environment
python -m venv .venv
source .venv/bin/activate

# Install in development mode
pip install maturin
maturin develop --release

How Bindings Are Generated

Python bindings are automatically generated during the Rust build via build.rs. Thus, bindings are always in sync with the Rust code and do not require manual regeneration.

The build script:

  1. Reads function metadata from the process_mining crate
  2. Generates r4pm/bindings/ with typed Python wrappers and .pyi stubs
  3. Organizes functions by their Rust module structure

Building for Release

maturin build --release  # Creates wheels in target/wheels/

The wheel automatically includes the generated bindings.

Running Tests

# Run comprehensive test suite
python test_all.py

# Run simple example
python example.py

The test suite (test_all.py) covers:

  • Automatic type conversion (positional & keyword arguments)
  • Process discovery (DFG, OC-Declare)
  • Registry operations (CRUD, DataFrames, export)
  • Simple Import/Export DataFrame (df) API
  • Edge cases and conversion caching

LICENSE

This package is licensed under either Apache License Version 2.0 or MIT License at your option.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

r4pm-0.5.2.tar.gz (61.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

r4pm-0.5.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

r4pm-0.5.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

r4pm-0.5.2-cp314-cp314-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

r4pm-0.5.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

r4pm-0.5.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

r4pm-0.5.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

r4pm-0.5.2-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.12+ x86-64

r4pm-0.5.2-cp313-cp313-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

r4pm-0.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

r4pm-0.5.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

r4pm-0.5.2-cp312-cp312-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

r4pm-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

r4pm-0.5.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

r4pm-0.5.2-cp311-cp311-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

r4pm-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

r4pm-0.5.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

r4pm-0.5.2-cp310-cp310-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

r4pm-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

r4pm-0.5.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

r4pm-0.5.2-cp39-cp39-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

r4pm-0.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

r4pm-0.5.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

r4pm-0.5.2-cp38-cp38-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

r4pm-0.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

r4pm-0.5.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

r4pm-0.5.2-cp38-cp38-macosx_11_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.12+ x86-64

r4pm-0.5.2-cp37-cp37m-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

r4pm-0.5.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

r4pm-0.5.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (9.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.2.tar.gz
Algorithm Hash digest
SHA256 4bea62259baf674ac0265e36afbfa186420c18c8340ec9693afc0d84e913996d
MD5 2d5f9d5978dbc3cae7e1181d7a9dab3b
BLAKE2b-256 55b9aecc626dbf06243b3b5e3ac3a6ff13eb779a85300ac5269c9aae100cb7dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 414672664d3352d7e97e3173c7b0f9981b6af86055236fedb36165340eb36f6e
MD5 f8a49617c95b6d7524ae3331238f2c7d
BLAKE2b-256 e0c1c9a851b183b9f78c3505da4411315cf1e9e5c892267e2b7e3fd0d4ce62e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 510123cf598dddacbe3568d30df7c5e25ff015974ee198f1159a668204aa1f94
MD5 d82a5d735962ba7e07145eb90d09dbb8
BLAKE2b-256 35a30e26677e1048e097fcc2bf8ab0dc1dd1a3f2d89fab265b5850c3d4d14a61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6046332f7c0293780a7a7c271bd2b609691411e1aa164291c8c71eb37f3061c0
MD5 f2238dece6dee22bae214b80c5cec3e5
BLAKE2b-256 fd6f1df34ff0c98f71c2be8c7884176399f1b095cfc100e1093d1dfa6d922c98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4900f85548e08cc135579f811c804fa9719d4e0de5f76d754cff49d609cd3724
MD5 f85c4d658dd7ecfdf6d8fecdc86bf12d
BLAKE2b-256 816e670e42009d46f5ae64e463e1d39eab79d472d178f43ce704c53fab21361f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 41ca248ad3be59f43bd7c80a9aab28f570545a63cd38c6ef157d21ec5380961f
MD5 3cb2c60d026560c7a68995088fa65ab7
BLAKE2b-256 4b07114d594eae3d0368d8f1fa539a73933bb71f6b0f9ec971b0fa8512a70fa3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 331635ec42e1d6a86845a6692cb5ba979ba49835a0da92a84cf1b645d8bc64b6
MD5 ea4eef2d5b344155812b8dd5be781fdb
BLAKE2b-256 bb1467fc05b29dbe12bc0c3d7158e38182bfda7dc3230e0bf923f962d9e3a3e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe6c07c40ba8efbacc91d3706c11cbeab08d498fdf135072f00a6cf02d9b16a7
MD5 f3053641fb21dc892fb8d72f81f1f452
BLAKE2b-256 bee3406c57dff298561210846bfa138cd7f3ff84e6b5e2d51d4be2e879856185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 229274433bc93b32b967e32ac691d068bada325b326482d2dd8f2b2b91acdb7d
MD5 43fb14b2b630c67a490020dae72021ed
BLAKE2b-256 695758e1f008846b671e4207e3c9f8301046cacc767ceb01019a34411ec50f5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c786861fbc139c15c85549caa9fea57cdcdfd5a0b56dd37b139f02f5fce2bccc
MD5 c42c03ae63be7fb63582d11275b8c9e3
BLAKE2b-256 506f0ba2d699bf0ece014e67f486314d0ec8ddf44c49cefc4f4809784e9c837e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e0d1544851da09d23c02fe641c53896cd2b61d320727288554b91f27c54dc5a
MD5 96d4fa52aec37eca755867c513de0213
BLAKE2b-256 6a8e0bd6f2090f59a96307fe78b73e50859d077c87af377654009d7a61faacb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1bf4093f296c4617e074cff331ce3f42ec2a8b66ecce62e2ee547ee796aca84c
MD5 17204e3fdacde6cc75351529ef56ada3
BLAKE2b-256 898dff7a59ad09d3321143cb9d3ae21600cf532e7d0cf4bbe29d4757e28420b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b67ca1eb1b477b631d73d566ac3f073420fb623505cabeabd642992dc3ecf85
MD5 bc438f0f9873ab1cb8c07962d27e868c
BLAKE2b-256 08e88fd86cde5f90153787426b23103ef19accc9112d5dfa23b0e3ec176aa294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2d9e2b7d0ae655f394b93fccca983498217c0d57fde086720b331abb7b2d9e6
MD5 26127baf55803a0c9ca60d9d6604c83b
BLAKE2b-256 88a3fbd35356ec439df562282e22d65346d92c5a9e638d7196e0c495cbd874b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 929b6a1cd46c3559ea0babaac7754d0eb81306b36ebc8e72adb0cd64e2b97d14
MD5 bab63748d6d65a6ec471b48b7d250031
BLAKE2b-256 a85858f78eea8a42981f4722c0cd54261de46bd135682dba6c7d805057e766e3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6249af850d604e06447ec5b7c9588890946bf80e99e79b49e4de8794d23886ea
MD5 c995faab2ac830ab591b9870dc22c252
BLAKE2b-256 3fdb1bde0680e33be99c54aa75338bf87bf4eae079570264a23c63f8c08c7ae8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b02d962a77a06fcfce431608447aa3c4f86a1caf5944260d6313e8c4d7d543ee
MD5 d6c6f1dcc76d387abd93a75935aacea0
BLAKE2b-256 85fe45e07ef3a60cba3bb7227656f5a1ae36ca245044ace46d4cc93bfb94a3a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f7bfa33587e4897f657ee135aff6fb72812447cc5f69e376998e92f96abbc34
MD5 5ad74a903ec2ee35e37912876ddfcaba
BLAKE2b-256 d885c943885b8c8dfc249f2706f3ce34ae6a558ece95142019b9a46a718ad591

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 55840c819b25603bea5e626a0f67a6110f6c8d876464167744dd048fd6d09d8d
MD5 43d5df6ce2f276dd79aba5c368cdf330
BLAKE2b-256 a1fae3c71351d1b5f97968f2b89c9a9aa5f9abaabab3cb6e239c77bfc11d9692

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d122badf2cb47bbf19af0aec18b04b31a704774c2c71344b5888e1d89f81b228
MD5 a25e6f378fec8d0534d478892684e05e
BLAKE2b-256 f287d35344d3b6f48261737ecc36a963a1428ffd97fd80c7b70a22d70b6351b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3fcd6d72d38f7eec1487ce73b7e0a06702aa65d2a144e354c483d427480ebb67
MD5 9956ea16a44a80c451501c3905b480c5
BLAKE2b-256 42f5ca4b0e3188c158d38e01e51e8ee6d481075c345fbbf55d5a19494a5abf92

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cf9690691c17b1abc757466c386491f0e4524b7219f376b0c80a4e1dfd284a9e
MD5 fcace50dc486164bfaa9c204d9b689be
BLAKE2b-256 37f78b3a853b40fb9a3b16e85b0ac594ae9558eb83e74c532fdedda96381b968

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 540b88d9c503fcb3f46ecac4eaf00d8b12836ae1b73ca523a2da6cd66eff92e7
MD5 385847444d9f6fa56b54154acbb1d914
BLAKE2b-256 0fd81feb171f1e71cdf6cdfcf2f57918b47d9f6571fe38eda65057d314bb2fa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d287441ef086473c240bec1c7a51708ec2995514611e06e3fb49f805e80576ed
MD5 0e00bd79617bc517ef80dd92eeb510b9
BLAKE2b-256 766cf10b223246d9f62146667532ea9b534a5fc678195e9c4cd9e07948c84246

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5e9e06ce22dd25ecfaad062c9c677f024a71b84fa9c605d661346c6f1afa261b
MD5 5cf8d651305ad9d6f9dee6aa1f12809e
BLAKE2b-256 e3220da3a5b8ccdcd1785f11606ad8f215f07755198482d1799a443204bad496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 019edfd8fd3877e3186f706d4a0ecc5c0c49df2c17c507d838754bed8bc7b1a5
MD5 537d54698c8e84e46a83b82c5c12198d
BLAKE2b-256 5cf4036dc3481c419dae6a973f9136e3168a445f3eb1bbf327e13daf26601526

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc77be0109c6e26da9a670603fd5911f9db53a211b44604bad511cfea6ff1e97
MD5 abf4b52caf6505c4a227af456e86e91e
BLAKE2b-256 dbb1866708d3f836afb37b8de177675dc4da56794063d261dd0c19313b4b20b8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ecc731cabaaf19f5c23b19bba4964de7492b2abd9918021ddfa74e27309eeed6
MD5 476d3939f9dc733572364815f52b1056
BLAKE2b-256 5be86707d178c744365bd3a87c80995b68028ac3b5b876baf8d4b6d4dc68771d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e6d75e5bbb336295e420952d68b374e05f2bdcb2bd0a641d674d165bcb7283ce
MD5 d3814ec43eb2c5cef705cf26ca7b2b5e
BLAKE2b-256 bc6425a41326fc173544e3510b3ce7e4effa3ad2b145cd0004e5f905cf932d97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9bc6729ccb78cd9e7a2dffee35e937fbc36a8b2892b6d7c340030f44257ae82
MD5 771cea7295d489b26eda52cd9fb968c2
BLAKE2b-256 554623a691cf89f3710d2c06d621704bf3a8c34ee224021056d2381cc497e6c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a711719f5b91d98508cdb7ab207103a7acd167bd900d99d026076c461ac4aa32
MD5 dc1194f5b1e36196e18c5ba8a8527b70
BLAKE2b-256 04332eb55b54bed0baa1d41038a904f3823df5989a2199c60e78b075c904cbc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0908c0dd3a7c3987cda241a578efa7867e0d07a1afe76e5c265481273bb9f29
MD5 1331f875aa6aa2a271ce942d1f003bc1
BLAKE2b-256 066f5d96f2822dead303f05025d3cc69ca45c020289fac7cb06a8bcfa7c0c50b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b78d965691d9232dd5eb94ed2701623a026dede721898ad9fe70f5bfd1945ce8
MD5 3c632daadec306237bae15ba833f717c
BLAKE2b-256 5377cd9c5a9be513ae78ab5019f2da688dfbc0107fc2cfca78855676bf75058d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b24952f71931f133821bfcb0acb3be796af5d89aecfb354ccaf6b958a6fd64d3
MD5 1161e6f932aca7b849dbbe6de67dc014
BLAKE2b-256 cc384926856d64cc61d9ad36f6a00cf23d16f934e2fd31eb8c3d4ec6a27a2af5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e19efa08c64057b6660fe773681ac50092a1e2284b4a0bde4006307f52dfefe0
MD5 63cdeb6c124385cfe576e3320709707c
BLAKE2b-256 a1dfe937812981db679771038d4d473e0859cb4e65541dd9c245e812f373bc45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e278a4ac8c3ca8c27ac1d29ecc6fa8da28df2ed429acf77b6f0400213c5a921
MD5 8a4a0b5aaf77ef418a88aa9258717346
BLAKE2b-256 b30fd1c80de6257acd9afc90898b22e9c2905e3a38e78c04e65e2f72b347c261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d14a73d24683975e492380424a4f995fb87b319192edeb5f25e1a19d1740fe1
MD5 388f330f7d14177a14c24455a9e6bf3b
BLAKE2b-256 3bac1a73e4512164905fad98881d7ade256db79e3f47e65c4c536b413ab52c7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed45d4b4b9950b6c7d58a236660816f1538a0b6e300d7b945c200f8a01292d07
MD5 3482431c9cf4ab03222ef43ebc5c8959
BLAKE2b-256 20d973277caf269eb882d05579a9860f7b03acc5d665e1c4485863fe79ab23ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c0296b342443e0ef72c90e45bc1f445f5ad60e2c15c4c33451bb88b2b9e5030
MD5 2868f30f79dc5e2afda5654555a74771
BLAKE2b-256 7414430daf4e10f3805a2e90e7362cd1fcea8ace4eb2b7880200f7824b473274

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ffefce40289bf04528666250024936ff0baf45a25fe1cb1b6f3fbb8f20262b1f
MD5 9292d1cf92acf82355b2c55cd7053e9c
BLAKE2b-256 11b56dccb660c217baf88909ef72e3795795edb58c2b3abb77012c739af8871b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ad7416d653dbb1e2eb30e7223ee834078599abb2f013aa5a22a7b72a3ccaf44c
MD5 622090c290e34c4407420d4bc483f221
BLAKE2b-256 36e7bd9634c4695590f605696f24d4046a41a67543cb1f0f67dc4b7e43515dfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21cdf6c918f6f28fd2fb778541271da50a40d1e32bc6cd19762a01d6aa4379c6
MD5 afa06e0a96347aa1be22df5c591441a1
BLAKE2b-256 d89728776022e6a5459ddc41d9710c1c6b37432949f473f9a3f70d55106f8d9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00e1777db2c49684d470454ead16343a3fb0abca45ebd6d411bac8d9c00449ce
MD5 1ec98f688b41d1a3d3fd121717d6f94d
BLAKE2b-256 8d6a3084c9cbbc8d13a66ae07d29d7272a7f26be4fd05ef5bc3857e3616ce6f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7b7af72f233850e7a13513b355517b9913ce7238aad4d31912cfdb879c88516
MD5 5b63836cd6cf286783437c468560f8fa
BLAKE2b-256 f6711e1cafb2792b92883caf8a4959204ca653ad6c5e146eeb441c9559fca92c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d4a5e05f12422c1aecd9e0cea1e57777cb0345e98290fe018995267b623a3cc0
MD5 98e3044451c2861828e74744067d1bfd
BLAKE2b-256 83d42b6154176604a27fc38e507bc0c4293d46163e8db0d9886cb84ba21aab8f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e52396707001124c6b6b5f2998d53f824a6453aa727458a712fbf4f1e4415151
MD5 9b531b14dc7ee5ec05e7d706ecc0574e
BLAKE2b-256 05d4acd49aa54133ac31e89802b37fc3127680d61ac3cdc22b45fb3a900bec20

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2f0f160d32ebafaaafebc639ee34a41978880671288c4cb23d5e8040218d7a86
MD5 640361fa643bf7c816c7efe2a1504786
BLAKE2b-256 7b57aa1bfa25ee644c90c07195ed2ba3db9172940afaadb0c16a90e0b1437ca6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2eef0d3ad0c169b24aff15cb6f354435a0c2a24e5c485af126c77fe881c50bfd
MD5 a23458e2ed540e4c25673d76d3ffe373
BLAKE2b-256 fdeae320c175c767ffc0169804e2e4d19e7945c864f610e342488c2ab15751b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 60af7a08c9e9f5969426f756cff4a3432c9c4bddf76a7c9e9ff29557aa6fd5cd
MD5 63708dbabb089fca323d7aa36a2d611f
BLAKE2b-256 c74a30cc75e00b702956813a2a6280ebc7016049ec2dc4c5cc7c5669dc37af42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c57bdf90649c7200c06660266b99f7ef269275aff328e29509c204fb6be23f1
MD5 bd215c1ffe045cfd460e44d939d455d6
BLAKE2b-256 f462664470bb4568895d4a59293004cfd28fc3841be70205dc8646861c976292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c6bb5572e6835b6a7de6b5f9a3862e69209d8b462834e24da0551c3af1125388
MD5 17e266dae9bf05df16c5b7da5b7ff26e
BLAKE2b-256 6562111cc45de73f029a4f3ca92975146bdf50cfdec314153d0e320bf1b18832

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1f82b3b0b11e010f749d26f72c78725b5dcc6521529ff2ccccb8603f6b911b3b
MD5 a04a8c53d2173c7713be80d2ce74f11c
BLAKE2b-256 6810449af033831140aed445054eaf9d77786aa84cabf6e400ccf6bcfe1381de

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.5.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 525822876b9ba4e5130ea2b416fa488bd68aa55f832e01c421c028f019c4db2f
MD5 3e0e1f414b5f01898206f069e84eb396
BLAKE2b-256 0f655196c8b37be989512c52052da04a84ec89f828dbd8b735a516ea0764bd79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab1e871e15f99243c07474cf7171a865d19bc60bebe3ebcd61f565f4a2dc102e
MD5 b12fc416c82efbf5ccb06e2cdb5254fc
BLAKE2b-256 e44f0f1cf796f331dae84145b2b62f6bc53776f1fff07a9c4f153b0cce63cfab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95c7cabf1a81e4617c9ddc3e465536a0e50dff9fc736d89329b87b303a45c8b9
MD5 80a69589362ee4a2927224d75069c503
BLAKE2b-256 fd6eaae55f1c2a783e1addcd465f390dae3ee63edf52896496bee912b9935de3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.5.2-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8685f7036e39173f2f0b9f8b0caa81da0aece67eb2c0db8ed1f7d0db5f499231
MD5 b8c03e72b78eaaceb766ec7f8a8c9301
BLAKE2b-256 2be8f273a0c2da88d50ccd3397516c7bac2de23d6608dc5620f6b2fdac78ab7b

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