Skip to main content

Rust-based Process Mining

Project description

r4pm

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

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

Features

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

Quick Start

from r4pm import bindings
import r4pm

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

# Convert to IndexLinkedOCEL for analysis functions
locel_id = bindings.index_link_ocel(ocel=ocel_id)

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

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

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

How It Works

Auto-Generated Bindings

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

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

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

from r4pm import bindings

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

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

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

Registry System

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

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

# Convert between types
locel_id = bindings.index_link_ocel(ocel=ocel_id)
proj_id = bindings.log_to_activity_projection(log=log_id)

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

Simple Import/Export API

For direct DataFrame operations without the registry, 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.0.tar.gz (55.3 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.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

r4pm-0.4.0-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.0-cp314-cp314t-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

r4pm-0.4.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

r4pm-0.4.0-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.0-cp313-cp313t-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

r4pm-0.4.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

r4pm-0.4.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

r4pm-0.4.0-cp311-cp311-win32.whl (6.6 MB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

r4pm-0.4.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

r4pm-0.4.0-cp310-cp310-win32.whl (6.6 MB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

r4pm-0.4.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

r4pm-0.4.0-cp39-cp39-win32.whl (6.6 MB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

r4pm-0.4.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

r4pm-0.4.0-cp38-cp38-win32.whl (6.6 MB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

r4pm-0.4.0-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.0-cp38-cp38-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.12+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

r4pm-0.4.0-cp37-cp37m-win32.whl (6.6 MB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

r4pm-0.4.0-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.0-cp37-cp37m-macosx_10_12_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.0.tar.gz
Algorithm Hash digest
SHA256 42fbe7d2be52118adfe9716ffe203482435f94b37c1435e0174968143f59dc26
MD5 9d902aa860569b29d83f9ccc13bf8b8a
BLAKE2b-256 c1faf77be89a17392e28a5792b10020d158b74008fd74cc45a98a8c3ea0ffab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64fb868c3087281165e93c912b97fba7e58735022f81dce364906169736e43db
MD5 2d1770310c457dbf4f7f001c027bbbb8
BLAKE2b-256 037ee25bfc25baa232691f451255e893f597e2212a9f8ab4d164cd0124fd4616

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 78534022593ad26b5a00e784d1b06f3bc84ed515e0adf129e61a5984c18a25b3
MD5 f5b48bf5e32f2b473f3f6e70b42d222f
BLAKE2b-256 b6838c07d7af8479d5b9938dc65854b8676990b24a2b6730a69afb32e0f49d13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b14e514a6e965b5897f2dbd6cfeddfd85788491e9f5b3460c9e1f46fc1d3dbae
MD5 93479238f31a8a3a5e0edbe31dbeec1a
BLAKE2b-256 7c43b16797fd38b16c53e7efc3ea6305e8ddaad1ba88d15a7e98eb72d5154206

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f4f3d2c75340fe3b91fb6290114c5b1d46b54b10afbf5b2759a15503a48abe06
MD5 3cce5a836979c24fc1723959ebc3dd96
BLAKE2b-256 a19f95abebf0226f2b91f17f1c5ce48c897e69da5f0954dcdc38d6bfe1c64f5c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 470f7617f1dc1ec01e0dfdf53f06cbde2787f3a57c3949aa105e6dbf0564862a
MD5 d94e008e9231b7a579ae5177b8fb0801
BLAKE2b-256 6a1492b65fb60c629f5abaeacf85d0db4f23885ebbcfa32e855c7895c8ccc25d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2c5081dcb37eacd3166274f6fa9a060a8e23643ffb2cbde60a7570dd1bcb150b
MD5 d07a55fac88e68814e3b1aa109b033f4
BLAKE2b-256 c5251e8a3b4f5774842b230d04a2e9bc478d1fc2f46fc88013ed833bd65b74f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7416a9c0910c74068595fe8f447366e9e98c1d32e63ce649ad9bfa9c9e275dc
MD5 3d112dd3a4af41a3e58e1664a0fa2337
BLAKE2b-256 f02fff0fc722ee879f38b2a9c1c9ebc99361ca6f7eaed8734fc6cf17ef7a7c6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5d30b84beee3cfd57bf903bec71e7985326d91de85c2bae030990f4d9516626
MD5 1c1247b7a3a4ecb755fefe809d75fa8a
BLAKE2b-256 9d33f225a2c4ae49d202b3c45e5a22d9bec897c7c9e765e73de082236987c080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 033aa725c21cb8d9e905b85ee3590d23d4ed6ecee9e42e9fe1dfbdd3587bdd33
MD5 7e37df7f271db08d66238404dc4f1efc
BLAKE2b-256 5853fe32a1339129c115a15f50ad440ffac0cdd6647337fcb00b2b5e80e68ba7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 01fab7f9b30bf36a253dec2601d6eb0e23cdbec1b19c3a2bb0b6217731579acd
MD5 58084627d2eea31fd5d2075afc16a014
BLAKE2b-256 2a786439c173dff7c2d66f6f3f3edfc3ed8e323bea47bb364180a8b83b0a472b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a884f51aa5d485bd1113ee9fdf7cf14930f270643ed56d07ada612b3de619f79
MD5 0883d4107f3d4de7097cd69f23ae2d2b
BLAKE2b-256 0264325160b70c903796f42415ee9dd2456d5c64f35adf7d2d94f5df069b9671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 36b309ac0ebbabe26b775654cf6d67009393700c7082eec2d50dc5016a004dc4
MD5 5ea17f46b6e1d09afc1adb933050b9b9
BLAKE2b-256 2ae28cf11bb571b74e2cf3d96e768b41aa1b304fcc27018c5939ab56b7706363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18540abe00a7298246a4d310bd93bdbd3f446593689a12ce2e4f4db00b54379c
MD5 609c4dfac057e10aa5a28b7de9a5dd56
BLAKE2b-256 2ca616d50b94b89a1db366eaa9d7e35cfc674f11f638b7c42d44f2d58e82c2d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5dfaf856c040125b4fc705c7f907dd72b2f8697f36e48b7cfccb617bb73e4ae
MD5 0f1d90bde8e005d24f4b2e6ef247afe6
BLAKE2b-256 88de4d39ceae29769e246cb54499e9b3eed4029524bdd92bf103403288155dd2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b83e98ae46a5bbedb097e8dd5a4dae876f2a4d9dad2580b666d68e29d4fb7817
MD5 7a25c3614af6d1bc07f2049d71938366
BLAKE2b-256 baba56d07ffe1a44ae412976eceb569420aaf87b33136cd4d72111ab04fed9e8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 97e9a4f5487d60fc3aab2c2c1ae61946ef55efd2a021cd76c56677247e5dbec3
MD5 4102e60751dd450167e441e465732da3
BLAKE2b-256 c00eb986b03989cca150a92ca9c18031fec2a99ba61bda10b3886dff2aead3b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85947aa9a591aae42bd319ebc2ba79902311a7a6359973b135b3be114658e16d
MD5 cea21d4122736b2e1fced8e87c62a627
BLAKE2b-256 8b42863d7a1f276d3726ded7a2eafba5643b50410c0e3776634f53937eebe840

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 06fda9cdc103c010a007678e95793e2f0c8148185594bd00691711ea91f32f40
MD5 11820d8b475c797bed6eb38f4984daa8
BLAKE2b-256 35bb7552d603996f231dc5343c911546b33b166cb4921b4ae3fd876baa5dfbb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fc07a650a9bf299f69cf3518640188e8155c7d7edefddd4fa82821c0f1a8d11
MD5 8bfe25a887835de6bd7f7b9dffa8802b
BLAKE2b-256 95e60252e6f15bdb74aa333352a65d8abf20c612859865f29e07a6b34baba0c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ecaf8c266fbcd36152b4c4958be4c47339d0b59a9a89205c6521d64361792d2
MD5 9c229eef5faf97a6d5281ef4ea82c9bd
BLAKE2b-256 b4dc58f11697beb938db14698924cc290ba321560997e46932d3e113eaf18d83

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dec041e3b8c422b11c555c5f7caaa61b1ef2c6d89b5b51d4c766b7024e424c20
MD5 09b558511b3146819da178e1f5e21b7a
BLAKE2b-256 176bf9bb486e08b20a527ccc853cb78a36d26c380c9da087639a9af36b450028

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 346c1288eb6f272343baca35ea2f83429045ed91e185c35a01c4e6d53582b2d7
MD5 c9af17d6a137fa566f5b919692ff2d0d
BLAKE2b-256 7b08b8481fa0583708df8aabdb7d30f3df825cd0fb8b7a6c1cd3ee82310598aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c21ec809b255782a1328c0eb5741a816f2501927874c22cf3118e6e136242c8b
MD5 076e7897849e6c5af1933c2a85dbdb51
BLAKE2b-256 ab8aba33e26bddd28ba0ff41f134d2617da1513d6b346b4e982ae9b192cd1bdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 12ce7e3ba3e1b1c4e0eff7ed48be5087b79514cdce5203d7b8d58d354cf4bfe9
MD5 53a9d4b8ab4fc6745d7b07aac153a619
BLAKE2b-256 bd8f4d20d03d42328f8157a5939f01af6baa096f71d13b296df61e3491b61b23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d29146a365783ce300d09825e9d297409af745dd4756f80bed87c2ede18c0dcd
MD5 85d682188c0703f0e23d1845a3ca84b8
BLAKE2b-256 0ae947f4e938d6bcf4357e319f97e15ebd9f43a71a196a4721db699b3998bcb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e224db764c4c8c47b239a0a34d9830808778765f7667444da50db02c290d62c2
MD5 7ee3cc2454b081e5621e91ba4ce962f5
BLAKE2b-256 6918068fd89e4b829598afaeba4da35c7d2ddb25128249003babdae1400915f7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ba2cce77b1b9b9eedb2b7df3ec51badc7eed73b3f459c5efa816461a85966b8b
MD5 6fa215c69bbef13d6f5ea76022cfd4ef
BLAKE2b-256 31a284e353e716cea9ad678b10f4578692164923f503a54e00fa0d10312ccba3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 6.6 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 31b723456bb0e60fe774b39f36972a6a7a3a0f66873c98586ee0f68f01ada42d
MD5 01dc5a0e5527adfc72c1a7520dd90a8e
BLAKE2b-256 b0c0b4a81b49c9a1af5673c927a84a04b534048deb636a5d8f2b10d81589ed04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3cecbae5fe3d8b8eaee25800f6e3b6babe9f43569d70a753def41428c0722ed5
MD5 f526259c6d3456367497167f5204f450
BLAKE2b-256 9ace3265031aabde8817f18cb5ea8601c5febb2b56a8cac1d003887c9ebad8a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e9ca3d7d4876da046cd982f94f2ec12bdf106a3c8a39569fa193bfca4657a4a4
MD5 1c547a7216ff66d2fc806f852551c588
BLAKE2b-256 0515f2ecd415abd6984e8ddcbd60e6f93bda4afcaa9648344b2900b0c383eea2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c0c6d4c6d5800bb0b89c84c0d5b584f3a611da729b944899a789f755b1a797c
MD5 44cc7767eca2404e51683725bf810d36
BLAKE2b-256 1b76898e64a4e55fa825b3065034ab38490d390ae7466835fc1da5795409202b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 52742f4cff0c3b2417ff667e16a0dac98e63e4a13b922efba111926da37f02d2
MD5 ef1e88ab05eaff6ac9c6f7d588ed0f33
BLAKE2b-256 67fee6b91602bb0c96f7133f3cda00365460252b3f77c4ba91fe0d7b24f1c084

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 62878f222c407cfbd26bd48b4f603ace01e45977fe0eb5d59f58c82d40239caa
MD5 2a99168e496e8c420a0df52a663a6e75
BLAKE2b-256 6ed2fdc11620cadf864a1d4607f847cb6868d1b39753d51aed5e55d0d2f32964

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 6.6 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d1ac4fa051279f32f36f7b805071a8e400022dfa426bede30c7ccea1cd23d643
MD5 1effc00e3c4c8ba0e3b1ce889a7abb7e
BLAKE2b-256 284e15ab338057b59d3a73a0d24078fe1016637048bfac63e88c9c5b9d059804

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7eae8bdf0fd8d76c7b0e0b074245805790d4b7b24eac69f0c01afea4874c726f
MD5 14ebf67eb9e146f51ac4b652a58ed34c
BLAKE2b-256 cd449d01719fc7d0facf5a83805172214c0165cad18a6acde1446d8036961223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 78724390fc3601641b5fafc16bda2782b3a2859f1b5aa01c027e190d5980487f
MD5 881b051a92dcd0935c29b2b5fd040cb1
BLAKE2b-256 81766f578e46aeeb0a7404cf4a281e1414ae0e0cdd90d87b21dec8ffe8988e3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a2283d70c6ead961849a512708f3dd27ab848dbd10a3b96485874e732b4cd30
MD5 6e2f0b85a4f137306de6b49b785099ca
BLAKE2b-256 ee29359373d383993ea8dfd1fb01f340d945f1f95448bebf4b5d8a231c2029bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac7b9a5e2cf0bd237fa2e1d363707f6740e3b648313f333eb44624f1e3777432
MD5 60fc8da53a5c25c060c9d99c19590684
BLAKE2b-256 c62ad5c2ff369b429ed7cd9fa654851799de4dd7d06bc62b949e8dd8f5db93b5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 45c46dae233fba93e01ed1d92b607a0c4909fbb29363189a55b775024ec421df
MD5 d42cd938172608bc5c753eb538a7fd5d
BLAKE2b-256 42f590147207fdd963de0ad94109be2dcc5a99bcf22e5444e73894f25f76e583

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 6.6 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 332161a7de6c09217cb9b00c2c026072bb1c19afd606c72d49aaacbf2a461582
MD5 7384e369d135be686932bf18d382a744
BLAKE2b-256 72417e620cdb81d524f3b80efcbb163c41c1ac811889702c44dabf9677214afd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47c32140f6d6316a028c71ad04a0e5eae7af241bffc1df9510bedb5da774ffea
MD5 f89f9c352812ac0cca4e1e97910a4dab
BLAKE2b-256 ab159c32f428a3768982148ef818145a02bff899b74aad569a1ba1f75a9ab229

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7f9f57f5a4b1dd82abf6223018987c2bff576b04dbe332954bb47e0f96efea7
MD5 ddad187c8434bf70be6b733489346fd1
BLAKE2b-256 addab91c766c9d21ea92a87303eab587fc19f0514cbb369e340ed39b6315bc2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1238470e327b77c4b7f8fd4415c9f31c83caf1d528c5947bdf4d4e99c3fb9336
MD5 6dbb2b616bc57249bec5198d4c4d9c68
BLAKE2b-256 a517a37870c128f2f71444b886bcb275aee883737b682a8651d87e1471ede032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4196f02f7d3b8fd5a2b0c8056c46f287629f5ca9b86a9b8e9600625daba6c3d8
MD5 25a6f0c279ddd81edf951b83412455a1
BLAKE2b-256 6d8bda0ca07a3f52491bd0a3322243a3c3c904bb35655f70e590dc1988ea5087

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fffbccd0f36ee784b70f32d0fb9a4e066dc8474060039157c87c31d54a24abe7
MD5 854365e0ffe3b85094d025d8f718c153
BLAKE2b-256 d3942082b53473e534e55e7178620598ed49fd4bc4282ffcf4a9194bc3b91946

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 6.6 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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 95fffb4dedd7b08bd2f541d98574a21b4f4bee1ca1c717e6bffa67232a12f1ee
MD5 0a01a81e7691b2dd909c874fcc4b568f
BLAKE2b-256 41afe2ca58a597da44e54f477aa197422454823ef4ad92ca6ddefc775798bcd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1432501c34ce6ee269dce7df82e2a03b1d478a3c3c40f85c8710bb1bc9c19125
MD5 292d621003a3656e08374f33fb225eca
BLAKE2b-256 d03cd7497718fdf36e9bb86745df1384ad9ad817d42da17a2172ab5cf710d172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dd4b54a1831d9919e0f3d8d77c2c1b05729b62a8c2246874ffbe3170e1af9bdf
MD5 ba0e93eaf7bcf1163771a49ae0dc43a9
BLAKE2b-256 691f41476294c361348fd6ded66302fef792ad1e0d9d346750db9e548bf24baf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a76f36d3c1b642ec0af97e3b13aea38749c4ac5532167b2731c321060b5efac
MD5 1c89ea5e44da2c44e5d670ea6567953d
BLAKE2b-256 010e4d2621b93792acbe87af7851780fd4a46e76256d75d94dde71e01711affd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a8c9e2a4c5f8f353fc4146caef4acd522452d97ba9617898855c16adb75f7f15
MD5 95b739b76fc6a4da75c345f6be766f75
BLAKE2b-256 66c16ac8219322c05b009bcd1514f568ea1c4c9ea34207e795bb7ecd7a0ff836

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.4.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0712b336bb4d368dcc665a4b7d4ad4c59f25232c95deb3c9c2622d99bfcda333
MD5 a14fcca2ea8ce06e5e423b30809656f1
BLAKE2b-256 ef21ac97206920e52b0e3f67ae8e8c7cde390f99f93d71760d00c0e439c918bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: r4pm-0.4.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 6.6 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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f42f4ac9d6ec935b14cc7ee82827f12834912ad0121cfe8190987240ef4758e8
MD5 f467c0eed11cfca99b97df9a5f40edab
BLAKE2b-256 92d6b823000968b7304a6f8aa9965764f5b149f76b1f5461372429dfd2bfb932

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37f4d8ba43f60d209c4e3c20698c36781074c87f3e9d52153df9f6707699ab31
MD5 2f272b5f36cb7aa79c5bbd8eb888c1a8
BLAKE2b-256 2c8941f03d72170962e660d3d93c0e69fca838dc5b27464a049ed508e46d98eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3f522502a0d558badde1aebb88a841860eae3aab773b25494ef716d3efc1f2e6
MD5 9c1a160e1f027bea5a14287023ef9d05
BLAKE2b-256 0dc26e28f5b2feaa662017ecb1db93af685d36275dcb305f2a7a66676587137b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.4.0-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a217ae696ce82a8bb5fb1f4a801c213a16def3f4aec47d8ccc39f40a7cc86dcd
MD5 d8d43f1a8f76488980599109f040eefb
BLAKE2b-256 890c39a7fd2880f529bb6e313e27e4a5e0b28d862ab7dc74fd3d4ab5a5d799a4

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