Skip to main content

MRRC: A fast MARC library written in Rust with Python bindings

Project description

MRRC

Tests Lint Build codecov CodSpeed

A Rust library for reading, writing, and manipulating MARC bibliographic records, with Python bindings.

Note: This project was developed using agentic coding tools (amp and Claude) and uses beads for agentic issue tracking. The package has not yet had extensive practical testing by humans and should be considered experimental.

Features

  • Reads and writes ISO 2709 (MARC21) binary format
  • Python bindings with pymarc-compatible API (minor differences documented)
  • Multiple serialization formats: JSON, MARCXML, MARCJSON, CSV, Dublin Core, MODS, BIBFRAME
  • MARC-8 and UTF-8 character encoding support
  • Benchmarked at ~4x pymarc throughput in Python, ~1M records/sec in Rust

Installation

Python (3.10+):

pip install mrrc
# or with uv:
uv add mrrc

Rust:

cargo add mrrc

Example

Python:

from mrrc import MARCReader

# Pass filename directly for best performance (releases GIL)
for record in MARCReader("records.mrc"):
    print(record.title())

File paths use pure Rust I/O, releasing Python's GIL for multi-threaded workloads. See the threading guide for details.

Rust:

use mrrc::MarcReader;
use std::fs::File;

let file = File::open("records.mrc")?;
let mut reader = MarcReader::new(file);
while let Some(record) = reader.read_record()? {
    if let Some(title) = record.title() {
        println!("{}", title);
    }
}

Documentation

Format Support

Format Read Write
ISO 2709 Yes Yes
JSON Yes Yes
MARCJSON Yes Yes
MARCXML Yes Yes
CSV - Yes
Dublin Core - Yes
MODS Yes Yes
BIBFRAME Yes Yes

Full format reference

Platforms

Pre-built Python wheels are available for:

Platform Architectures
Linux x86_64, aarch64, i686
macOS x86_64 (Intel), arm64 (Apple Silicon)
Windows x64

Status

Experimental. The Python API aims for pymarc compatibility but has some differences; see the migration guide. Rust APIs may change between minor versions.

Roadmap

Version 0.8.1 is suitable for testing but remains experimental. Before a 1.0 release, we plan to complete:

  1. Real-world data testing — Validate against large-scale MARC datasets from LOC, Internet Archive, and other sources to discover edge cases
  2. Code review — Thorough review of the codebase, particularly the Rust core and PyO3 bindings
  3. Performance analysis — Profile with production workloads, optimize bottlenecks, and update benchmark documentation

License

MIT

Links

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

mrrc-0.8.1-cp314-cp314-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86-64

mrrc-0.8.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

mrrc-0.8.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

mrrc-0.8.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

mrrc-0.8.1-cp314-cp314-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mrrc-0.8.1-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86-64

mrrc-0.8.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mrrc-0.8.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mrrc-0.8.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mrrc-0.8.1-cp313-cp313-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mrrc-0.8.1-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

mrrc-0.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mrrc-0.8.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mrrc-0.8.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mrrc-0.8.1-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mrrc-0.8.1-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

mrrc-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mrrc-0.8.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

mrrc-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mrrc-0.8.1-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mrrc-0.8.1-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

mrrc-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mrrc-0.8.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

mrrc-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mrrc-0.8.1-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file mrrc-0.8.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: mrrc-0.8.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mrrc-0.8.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f1b1fc4c8938e2a5172c0ba4c1ecd62c367ff9e7ab4a4e345521b2a167b85d2e
MD5 1035f551ddc08aec4c76e6f696ca7ea1
BLAKE2b-256 579fa881e86589df82cbbf5729b78cdc6da38d2fe84fda33a46596cccd3e9799

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp314-cp314-win_amd64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff87a75f68d9f209cd63fc1613bf0c2381af99ba0d7ad6e00eafa229f0e0636a
MD5 5019c09692448280a84c0f3bef5f6bc2
BLAKE2b-256 e6071c2bb821336a08fa2996bb0ab6ada1a998ce54126a8811e81366e84a8118

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 033663080948d257d1c091c99b4e2168b8766769b43156811075d1f07a519eb5
MD5 ed7211adb2e35392b841e57478d36b31
BLAKE2b-256 fd5a1872d6803ceea0e035a25fc5fb5a4b99bd754a50dafb0283614a6a730be2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03e601cdfe88abba756c32532578990c8b2fd6885740417130c30e2456d84890
MD5 58889c2998db53f4a19ad8ef2e5f09ad
BLAKE2b-256 508c43108b093d29b1fc2ed4bc350fd67e5b4286043c3f248c404ab87bdf5691

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27aedfc8a15567ce8c0bb8e891437a1378c3cf14b8dd5cd41e790b58ce1ea750
MD5 a79c9f716dc4a72d8b0ffae130747dc6
BLAKE2b-256 82234897e0b19df0edf0e366a2dc897c229554e0a8333d11ae81d157ad923e3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: mrrc-0.8.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mrrc-0.8.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d8bcf49ceb0134281ffb020305411141d7e45d941402a21443784e736d69317d
MD5 b3cc5041642573ef67d52e351ec2641e
BLAKE2b-256 2cba148cfe7505221cd05d8232345b6ae02abbf2e829a8e249d03d43144697ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp313-cp313-win_amd64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d3487c703317bb405c52882a702077bb41c8e563594831722bdb36313b94c60
MD5 60b001ba7854957bfb69e790117a3332
BLAKE2b-256 9cbcaefc63963d72c3505cf4fa022f65cd9633ea0a00ff9305721576f955cf63

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b98701149eb6d7d03339d528f1137652c671a2fe756bd645b873bd2d60fe2a2a
MD5 00a60f7b1a7d6384cfdc3a4beb84b71f
BLAKE2b-256 96852f3234edf8fa351a9202f35f49a3f4961dedfa8a2a66a6be3cf5981f3fa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e766ad479b40a8379ebe72aef3d8a712a6091e8cdb3b3869a01ec09a4044b08
MD5 f7b167dfea76c0373326407b122852dc
BLAKE2b-256 d551bd10ccb773bf3cc5b692a6d10fea90f2f787ee5aaddb1e48792621b44112

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dee6b3c3fc261b0cde514f0a44490e27aff9d92bae9841bbf5255afd2d75a6de
MD5 e2e682294725e8d6741ef93cb6e0ef6e
BLAKE2b-256 42e052563fa6ccfe45f211d5b0c464d8ccc9031fc6955ff5b0c6cc885750836d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mrrc-0.8.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mrrc-0.8.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 549d5e8f40058235b8042475d4bd2e8b350b29636deebf1c56b9a615efc7985e
MD5 2e0fd109e30d818a058e48b0108e1466
BLAKE2b-256 9d7641589ffa3504b9c25a68647a36e3789e84a84fb828f8a9eb41e2c49b2572

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp312-cp312-win_amd64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f2eabc3ec93c74f58ac7f65b67d87ce1ab873f59cde6e9076a8d2a7aba1b12e
MD5 0df65ce3daeaf25ede41093332d38f24
BLAKE2b-256 8dbc99563ee9cd3005eb4fd93d2d1fe56c881089a06af54a853f85d19be58d9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e45c390d1e40948e45ba4dd39db0c7f20581b39c985bb788ed7743a98a5d100
MD5 a1019d1c9c2032dc9dfa300d9b9fbff5
BLAKE2b-256 c6fce2f6a93351eb181ac46185b3411a5d5330acab2c44f000e0040c62143709

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7a593a893c487a1719352bbe00e3d522913304fa3b9864d298debd6148de86e
MD5 632be731ae60051e7eb6620af2a72f27
BLAKE2b-256 9ff22d2075519b34a0b1367db41ccda6dd5b396184a24466ccf41352384991b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0484b4f267766ad1366b6b72edb4a711e5c69c44976fe75f5f3a3b1d15008fec
MD5 bede43151ad0d63c17e2b9eb46d0e825
BLAKE2b-256 ec7115abbeca38884373c9e96fc3531ce828af37804f602d8fe1bde62e22f736

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mrrc-0.8.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mrrc-0.8.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f73684f0d396737cbb4322df058053fa47751d01b0b9579620182dd0bfcc0d9e
MD5 e574e0cf767f18ff5a5ced91fd67417b
BLAKE2b-256 0c7deb9931b364ddb726f9e03f0f11d7549c5adee3c523f94497b7d84f5a4b3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp311-cp311-win_amd64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e37da6da62034c3e2d068d7c4327546d3ff4924499974fc9893c5554c249f976
MD5 636785c915d92223f9dc7fd577c9d517
BLAKE2b-256 32350b64a2805d5378ebe65bead69a6f8358371073dabf26156b7d3250f99df9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5ed1b69cfb5287194a1672c451214ca08619570ff0c6365837983611f8bbca9a
MD5 4d9d2c1a86442808a86cb5c0d5e0c45e
BLAKE2b-256 5695fd7de20f99628c84da6ae84d30eb14a372c35d54c81bf9f535ac7e407774

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2c2409929650518e313ab63ae2f3cb0cedda9efd1da30192ec0556987183da7
MD5 3cc023c9ffcb6f38c774dd78477cf555
BLAKE2b-256 eea4f19532f6085d7d3f26badfe1fbdc91886e34736ec8c1df2c97c9f9c1c46a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62ebb5916167644e706c283e051d6a8148ea098d0ff13657bd0b9382587597d8
MD5 a062cacdeff2e976275415cd2ac51a13
BLAKE2b-256 465e0fa0bec5e9150e72a3769598197a5854ce7ab966981b5b071a76e5575ac1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mrrc-0.8.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mrrc-0.8.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 62fc7cd90ace656647e3c4efc274a1934be5b6699aae10aa0673e6a4f69f286c
MD5 f1928061a453d9c2999227000a5916bc
BLAKE2b-256 fd67ccbeb6e51c43a3265b6a48016bf89370fca4f976a43987bb4e939ecbe984

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp310-cp310-win_amd64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d3d137e2ccff74c75c31dd66684fbd53ea57f6b612480fe9404df9f4fb99135
MD5 e93b3f383de81e51a25c5572086f42b0
BLAKE2b-256 478204b288704d6dc3a7800e99fc105781f1a8a84994f4b97e7614231cbce47e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b9b576b1b26aebb5b3b377f7ade60a7d0c4c7f53bad5440104a152f44375475d
MD5 4b48d5b97197e8fb34b8ecfcf1bc6480
BLAKE2b-256 37c0c1518ca96603d0981f7d163eb7b3ddb47b36468e762a0e834b57bec77aeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cfb05f5c7e5b8917b4e15e1aa8080d0829b668ed9af6fcab8fbf49c02559c47
MD5 71452a48ad14c5ed3e83a64f5f11526a
BLAKE2b-256 8038dfe3028f378af676d722f803cd52333fcbd51a0eeb0e44d5c53605d1c862

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrrc-0.8.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mrrc-0.8.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfc265b36d5af716d97e450e951d4de8470dc973f4358412f0beaa29b4e6c1e9
MD5 61478c7d0ca80c87c5c42783487d92a2
BLAKE2b-256 47ae99dbd596f2f62c5c7fab17d8c011698496d501d05dba4705bd25a9a8203b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.8.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-release.yml on dchud/mrrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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