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")

Petri Nets & Alignments

A Petri net is a plain JSON-compatible dict (r4pm.petri_net.PetriNet). Import/export PNML, convert to/from PM4Py, and compute alignment-based fitness with the fast Rust alignment implementation.

import pm4py
import r4pm
from r4pm import petri_net
from r4pm.bindings.conformance.case_centric.alignments import align_variants, compute_fitness

LOG = "test_data/Sepsis Cases - Event Log.xes.gz"

# 1. Discover a Petri net with PM4Py (Inductive Miner infrequent, 0.2 noise threshold)
log = pm4py.read_xes(LOG)
net, im, fm = pm4py.discover_petri_net_inductive(log, noise_threshold=0.2)

# 2. Convert the PM4Py net (+ markings) to an r4pm Petri net dict
rnet = petri_net.from_pm4py(net, im, fm)
# petri_net.export_pnml(rnet, "model.pnml")     # write PNML
# rnet = petri_net.import_pnml("model.pnml")    # or read PNML directly

# 3. Load the log into the registry
log_id = r4pm.import_item("EventLog", LOG)

# 4. Align all variants with the Rust binding and compute fitness
#    (the EventLog id is auto-projected to activity variants)
align_res = align_variants(rnet, log_id)
fitness = compute_fitness(align_res, rnet)
print(fitness)
# {'log_fitness': 0.962, 'average_fitness': 0.907,
#  'perfectly_fitting_frac': 0.626, 'total_costs': 573}

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.6.0.tar.gz (65.0 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.6.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

r4pm-0.6.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (10.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

r4pm-0.6.0-cp314-cp314t-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

r4pm-0.6.0-cp314-cp314t-macosx_10_12_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

r4pm-0.6.0-cp314-cp314-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.14Windows x86-64

r4pm-0.6.0-cp314-cp314-win32.whl (7.2 MB view details)

Uploaded CPython 3.14Windows x86

r4pm-0.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

r4pm-0.6.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (10.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

r4pm-0.6.0-cp314-cp314-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

r4pm-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

r4pm-0.6.0-cp313-cp313-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.13Windows x86-64

r4pm-0.6.0-cp313-cp313-win32.whl (7.2 MB view details)

Uploaded CPython 3.13Windows x86

r4pm-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

r4pm-0.6.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (10.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

r4pm-0.6.0-cp313-cp313-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

r4pm-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

r4pm-0.6.0-cp312-cp312-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.12Windows x86-64

r4pm-0.6.0-cp312-cp312-win32.whl (7.2 MB view details)

Uploaded CPython 3.12Windows x86

r4pm-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

r4pm-0.6.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (10.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

r4pm-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

r4pm-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

r4pm-0.6.0-cp311-cp311-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.11Windows x86-64

r4pm-0.6.0-cp311-cp311-win32.whl (7.2 MB view details)

Uploaded CPython 3.11Windows x86

r4pm-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

r4pm-0.6.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (10.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

r4pm-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

r4pm-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

r4pm-0.6.0-cp310-cp310-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.10Windows x86-64

r4pm-0.6.0-cp310-cp310-win32.whl (7.2 MB view details)

Uploaded CPython 3.10Windows x86

r4pm-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

r4pm-0.6.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (10.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

r4pm-0.6.0-cp310-cp310-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

r4pm-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

r4pm-0.6.0-cp39-cp39-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.9Windows x86-64

r4pm-0.6.0-cp39-cp39-win32.whl (7.2 MB view details)

Uploaded CPython 3.9Windows x86

r4pm-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

r4pm-0.6.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (10.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

r4pm-0.6.0-cp39-cp39-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

r4pm-0.6.0-cp39-cp39-macosx_10_12_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

r4pm-0.6.0-cp38-cp38-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.8Windows x86-64

r4pm-0.6.0-cp38-cp38-win32.whl (7.2 MB view details)

Uploaded CPython 3.8Windows x86

r4pm-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

r4pm-0.6.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (10.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

r4pm-0.6.0-cp38-cp38-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

r4pm-0.6.0-cp38-cp38-macosx_10_12_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

r4pm-0.6.0-cp37-cp37m-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.7mWindows x86-64

r4pm-0.6.0-cp37-cp37m-win32.whl (7.2 MB view details)

Uploaded CPython 3.7mWindows x86

r4pm-0.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

r4pm-0.6.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (10.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

r4pm-0.6.0-cp37-cp37m-macosx_10_12_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.6.0.tar.gz
Algorithm Hash digest
SHA256 d2a5929ed34e2508c8369cacb468dfadeadb0ef10e837bdbe4c46328f1f13afc
MD5 08d09cac1c795894d529c311a620f711
BLAKE2b-256 6a2ca543a876077b47303a14fb66f97ae6a168ea0ed5a1f394643db19fa380f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22e1f67b385222f7b8b8194dbcc36b47381855fc8eb1694011b3a2072458f6f6
MD5 a6758d06263aa893d2ef99491dbfe422
BLAKE2b-256 fcf8daf07fcfaf590f08e283ec0cfb6915539c757a23bf067e3bc80cc27fa5e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82a8785f83b01dfe1c1ac590f47161fd123166e97d6bdfc19efb8a0b876e88fe
MD5 576f3bd46212add041385c2e6e9c43ca
BLAKE2b-256 c1ec886786556c85f7cf690c8d22e7945f8ca54df19a16b891612d26a07e39d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f12ddb0d45697a84495c8e482682a08490ef14a4f38ff507adc2b65cdb9f86e
MD5 0f455ad7b7a59f071f8c45c24a97224d
BLAKE2b-256 848a2d29909929b1f46b40ad88810a67dff33c3e8157af72c72c15f4686d60eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 04c299b1259bcfed922ead7f9946c9450749c09b4f3a9d77ffd5fd095e0dc5ba
MD5 eacf8286c7058726ed5d9a9ae0db8d3d
BLAKE2b-256 91e418b5fb4d9a8aa1f6b31116d9f3e29d3cb48d3acd5fc59ba9d55ef136dd3b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ab1d3312f89c633628bcd1688ceb8d1d9a6b86baf6f052a4ad43de1e2e77d439
MD5 a379c8e8e2fa8a3ee57bbae2ef84441a
BLAKE2b-256 807d1bec36b8abcfcb30e5f147460eea6a20953d45c2add6a51184fe6c604bb1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.6.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 34fc00d447b2cd1c95e99cb7e4b29310b7c6e672d8feb0e291519bee85cfe59b
MD5 4cd9e2c5df1e79de9365b8750dedfaaf
BLAKE2b-256 f4fdedc4e11c7e2f7f1c3b240d1a1087d66edba637eec283b1898d498103e529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50f750887ac6e4b39dbf55985cbb3b7be624587b332936c11d05b4d5daddd30a
MD5 eb445bbbe05827f04cd98fc7dd09cb7e
BLAKE2b-256 601ce18e0902f32d6ce01ac22dcc5ed5f9657a416075d1db2fc27ee8bf3d8227

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85a1a856301b674b5702ae7326787c81ddbb190146394b76f3f2c5f3ab9fcbbc
MD5 968b2e006281c52461b6664e6edfc7fb
BLAKE2b-256 89040673df2262022eb9a0692880bee7cfaf60e9f6e38203c91667bf8c2a129d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3943a6c7d4ea4ac3482028d13c17b7979489c8d14ad805badde8d48b4c56828
MD5 954f56cbedd382710b4c0c42da50eb68
BLAKE2b-256 b5bb760cd7f80030b83dd1d9f070470e5969615e6fe709843c8cf9363b905d5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec851f47761c3c10e27bcf8f1c411ece8a316b547b1dfc683a42bd720f857754
MD5 fcfe093078da037677ffc28b6fd1d8c1
BLAKE2b-256 488e332f7d657b16a325c886373d2755e6c266cbd783b0941d25fcf64b526881

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fc0200e14ccdcd7c23702fc41f38924da10d26720d8be5a0baa5cb62f6a3900b
MD5 e2a2ae711f528127261fd312c23cfa12
BLAKE2b-256 0de64dd13b05a45a4723767bd0770bc843f48a3e09fcf71f9690bc85a3b477a6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.6.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 56448888e3148c161fa0d9e6a5a8b73ad39897b94818689e3579ea606a74c142
MD5 9cc3121059d15bc2a429cd4683def2f8
BLAKE2b-256 e5202dd7aed340e930ad00240a3e28e8a36bdb934c1d3953a56de5ccceea75d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5c68f99e0d8c6059ff82eedb1e2cece9c47c4dd6f17b456b9c8d548d09be32b
MD5 5438614f6179e498dea88053a795b71b
BLAKE2b-256 563f5c193f78413db0673d8dc97de8850225cd6920b8350d711432639758311c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31102bc7b27e5da3f088a5020f0f06bc685b3e4ed7a0a76631cb3ef4dc6ed138
MD5 c17aca84ea306209405577a08966042f
BLAKE2b-256 494c58255cc2e54903e39485f5f6d0784b2037b7d8831bdc8fc667dbe46532d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79f674ef8e0e7394ae1783bf068f05ff010e2a542b75935ab716a9f33d0ff4c5
MD5 4ec51c4f4817f9c72dba9313efd4a9c3
BLAKE2b-256 9047d29d5baaa0b9a72b1099f04d05bf81eabda0661eb5ae8c93d57fa1645b7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d1428c48f6f4a3dedd3fb18a7ad8ed6c9b6b7fc37b2a031787a89edf289c9e2b
MD5 bd1d4ba3df88e00a5a1931897ca22f3c
BLAKE2b-256 cc8d5992999bb3d96e57c54b9f52804ef971cbe23466319d6a760a2123b6c4c0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4cd5f081e425e9b72ce4f247f62330730616f7a4243ee2fd6880668874ed6efc
MD5 04ae7b8ff79c553b1a2b38376b327a93
BLAKE2b-256 72378024236a32a3889d9b0c0327f98c3794556cc529889f1feab52b341235ac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.6.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 924207e2c97d484b7cffd8aad7c534cf8cbbb0951ed38342c4a71f91c7c328b8
MD5 7ed0c72eb8646a4917ff4a188b890226
BLAKE2b-256 db6707155ec4c117c732539672f0602b2bd0d96735712654fd3e39a1315b21b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f742ce77df0ac50f030a90869a8bc29dd383b6a14df7743a5132f96ef8bdcc5d
MD5 765356782c372c698f6c089cd0d0d292
BLAKE2b-256 af0664efac237c4d1e58b661caedb658ea554e9a169f1dcdfe0fa7bb6d745585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c73cf2e944aec594703c5d2c05bc1341b759ce77baa20aa0dda00175c626c61f
MD5 7b06a0685b24c7f9afc0da8b170fc71f
BLAKE2b-256 bcce7165d3578f1ca652fcab532fee20c005cdc3ced97f10398297dcfc1eae0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02a683f03c047be4e936a04e97fc01a735ace7d15bd99ebf013cc43def927cee
MD5 93ba5061b5d685300768bd3d615e1296
BLAKE2b-256 6690a98d68c007b3432a1f4131dd7ff72ce8f1b9759049d7b8298f1551ac2c74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 72fa4caec777334666736a97e5e8b20406cf3d6431315894521acdc0365a2900
MD5 3323a6cfd11ebff5e848b5615ae84cd0
BLAKE2b-256 2aa18e8115cc0c655fd8d17c1d96c039c072f0fc72a2daf33f82c0bfae309876

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 abf06ccafca122605209a2035200de9e84468743efb3c18b8adad75c66bbede6
MD5 0207cc3e9c5b300456517dbec6c5a0ac
BLAKE2b-256 a11f4b78f201cc1634866bd4039c271ba522a5ca5934358bded40a33495a08e2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6fb9f2b3ca82c779c7bafddbdf74060a6cfb7357a613e30ce47ea04a373a9025
MD5 e1c3ce75e80119b1a60e4c42f57f70c3
BLAKE2b-256 c8fb69333942b1e8a39180d1aad90c0d6c089f9752afaf936524d48050a39622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a68c6d27f5cf5df06466c0ad6f50d0097c0c11017a70cf82b4586b7993637845
MD5 1eb1b2f8698a523139ae7ead22ff3aa2
BLAKE2b-256 820147ce2bd234dd83718eae9fbc2d937bb001b77afc7efe319fee94eb15260b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f86f26f9437e7050e8617d07844f2da7dbc9a51566ec582840e447ceadba4289
MD5 f330b9fa79840f922429259e2990332f
BLAKE2b-256 501b5891a86e4fab0a5106fdec1e75300f305cee7272993154d91bf560dfbccb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3bfb20cb8af7863977bbda32a4c14c7e5b3ab986d9965bc4de98e297786863a
MD5 c04c8b53ccc3ca44ee1455b86f3bd6fd
BLAKE2b-256 a03b373d38de5b804e76353f0365dd6bc8234c8e14ff0d19286848b4b9e53b9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f577271516bd7d9f17b36e5393f4aab339006e8f0c6d54e129cb87426bd935c1
MD5 7644e0e23c6dd20daeadb8685387e465
BLAKE2b-256 36bde6ec5af8d05429fd1103997b89a3a46710213b3d24edf02b0df0feb7be6c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 76a32cb452bf06a09d0b4239e569e59a8d32c0438b43c41a860491d0d0e2b0ea
MD5 d32629acac956c1f0453aa15ce168ce3
BLAKE2b-256 5b308e622be9a29cec0ee7a09101fea09401dc0f7d88628ddf812959a19ac07d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.6.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 235d06bde890744d9a7aee445c6636bed8ae82cac0e5a24987a29f041bfccebb
MD5 c7969703bd82aaa80876312d9448d33e
BLAKE2b-256 5e4412cee4b7e6bc883d14adb5b0eeed8f78fbac1f4a8fc8cc6daae5c819d30f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c831b58742f37ca642f99b3713c4e0ac7b1a8c26cc20bb51ad6ca91925ff7dc
MD5 91b3fdf3fb5d88ee8756c37c3c938a20
BLAKE2b-256 4baf7be663e538dd9ead03c9894bed5bfcb50b44ae1879794da848a6a696fa40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c68cb6d225338380dec0605bbfdda66dc62822168b0bed2bfaa6dec2d450cfe
MD5 23689a53888ce72cfc65d7295609a179
BLAKE2b-256 24e021fbd720f16ddb41ab48b058d1f188e58b937fdd66d8d1ad8bffd1585e85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49c5e63dbd0f6c0e73a6d28929c2d3101e0da5c5199f62fc0c09e3419ddbe696
MD5 7b616710dcfa31d1c07615bd504998a5
BLAKE2b-256 ed81e2a5bd34d840f243df5d613f4fdb8ff776688f143dd878b9a8d9f8fd217d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d06031c3d293e473e9ed1ea932ca50b1f610c0db727b476bab1d36b0c49d7cea
MD5 45f225d82cb44e9fcafc56fcc6f2e5df
BLAKE2b-256 ba842f3f0f751db0e5d88a0cedb26d3ed9848335c871e40a674d1e16bc13922d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 58dc91a30772709997e07fd9449a92f5800b644fc731bbda2eb3282d1f8a5637
MD5 9662edfecc40412af79ccb739a4fc34a
BLAKE2b-256 28019046afbe49e5269013f455a46b6120bb480001287cbb0af5a28615d4bf31

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.6.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 63725a7b4dba53d04d50da36174924f7ce4276cdde552ba1da7801c66834aae9
MD5 d9e58d7b196562d511aa899c20a07ab1
BLAKE2b-256 a606e6a74e6b9d73c207189a9b94f094ef549edb08923e773d94532021ec9370

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cd546f62805531e244406ffd63a17feb19a21b44d8f3ac1f9462eb0d6e71a12
MD5 5e0ef754b4a5868e0e7c1989f1aa20bc
BLAKE2b-256 c0379c3845256d4df62cc95f3c2df13f9a6d5e69a7f3199a8f7febf2bff42e5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d8a16d5b470b7d38bda68c856fbd1305c5df0b3d767371c5ecb44a18eb23b043
MD5 4573aa127b3fde70b38b09e0d260938d
BLAKE2b-256 ddaa52c88ba475900b535f3b0a3636ccfb7da273a244c4249de09acdae86ef2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19665868c1d66878cb69847dc434b886453f4ac6c2a8a6f66281ad13f59833ef
MD5 faeb1ff78dd9353d3db148e410f47d9d
BLAKE2b-256 476409075b8dcef2f4e01c7327c0c8de419baab8fe22ec4f68191264ec7105d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a1e6e168a8bc13e6aeeb1d09b23daeaddc2bb44396ec4b6b32a26c0ce09cdc0
MD5 51c0fb9a374e3871ad2d81a70cc9c55b
BLAKE2b-256 6078bbaef3352c77087b0a9856ee1c86089e325d4a369056d2c881230609fb45

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.6.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2f924237263dacb4fa533b0d51531e880bde7f9afd663a54726ca90a46682b72
MD5 21cdd25804a8a30cf83f5a0cdb131e40
BLAKE2b-256 c793b281c8f45ca044f38476030e7500f4819cdceedca3599bab0f731ada820d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.6.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2e7a703245446db2b0d53a0b28e876f6c4c89947f08deeaef7098bb87fe05e8a
MD5 53fb025adea8f85270ed325196f912df
BLAKE2b-256 89fe502e91d746629cb71460fa109ba16a4626a2220cb3e581246ce6995d567e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d551888646eaba158a82bc9b2c1084d028fc9209762bc0934df960f6f702b49a
MD5 dde6909f23347349e85712c302d1e43a
BLAKE2b-256 89fc32d26aca16b621348c66ad414d490ae03afb43496cc32a366c63f1914663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c7f7fb4f8a8e22848d19ebb296fd1f021b4dc3a376a0efb6eba1463f95fff30
MD5 5add56cfb116d8bb482104385a325047
BLAKE2b-256 c7a8be83a689be1701b2ab13f2da22dbe3e3eec89297e00f5bbc9577e7f7c4ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6316a850a9b7fdaaca0e770ea2e61631f269eb990cc59409223a087b055dfd59
MD5 d6647d044255cfa12904454f68e500fd
BLAKE2b-256 2f26966eaeddfb8725ecd2a1a1bc65cfc90ae5b7fa1d256f698dc2d812781aae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd98680d3f9e03d251480567bdefb9c767786da1d862cc879cbe382e3fb56699
MD5 7e767bac7c81e55cafee666b3b6192be
BLAKE2b-256 eaf71c32cd4ad3b11170962d1a2a27e325de8a5c4225cb68981032c48688c183

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.6.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 aeb1c79ce3b6aa1dcfa3fefda9838b0ba4433a3b440f3a6317cbdd90d5b2db16
MD5 b8a783c724138ac3ac819fb1021dbaab
BLAKE2b-256 5cc17a3e72a1b3bfe4d9df733e88a1a3231d3388cd3f710b4765f0136ac1b387

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for r4pm-0.6.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4022799df1c8b45ee009939b325b7887fcbc3a04e4e1c4a00a0cb2b3f8c282ae
MD5 455b8f142982e5c8c217a8e83c7fbde9
BLAKE2b-256 c1cee9e52039059cf2f163a17f6db4d34150663726bb9d25da48e475a2c1c8d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8724cd14ab5bd5bd74ece992e81d63073d398b5d0b8d279a7cae88f26cdd0944
MD5 376be7721fb88c858ed3e47caa3fb19d
BLAKE2b-256 10f5c778be619fc41de4e07101693a69a1685bcc2f4a1c8f30665ed8d42fa398

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b91889375b4ad2ba1bd242536782e618446b816cdc02d747e9599404bac7864b
MD5 134d2d97a2ac2d61948c744a8ae4bb4a
BLAKE2b-256 719ffcc69c3df302696433be81468ce1aa732a10a15490f0eeda0e1ed901505f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for r4pm-0.6.0-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f64d163e7cfeeb865602634ce97f420eac36dd2f635417d24933628456482667
MD5 f0551c5f456744f4a5faad05692eb016
BLAKE2b-256 0755b141e772c65e3b6248de3ee41a52f4f50a4390c1079736e7aadbfe6f4abf

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