Skip to main content

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

Project description

MRRC: MARC Rust Crate

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.7.0 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.7.4-cp314-cp314-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.14Windows x86-64

mrrc-0.7.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

mrrc-0.7.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

mrrc-0.7.4-cp314-cp314-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mrrc-0.7.4-cp313-cp313-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86-64

mrrc-0.7.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mrrc-0.7.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mrrc-0.7.4-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mrrc-0.7.4-cp312-cp312-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86-64

mrrc-0.7.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mrrc-0.7.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mrrc-0.7.4-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mrrc-0.7.4-cp311-cp311-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86-64

mrrc-0.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

mrrc-0.7.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mrrc-0.7.4-cp311-cp311-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mrrc-0.7.4-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86-64

mrrc-0.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

mrrc-0.7.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mrrc-0.7.4-cp310-cp310-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for mrrc-0.7.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 649c4cc7178eb1d79a15e0ee1190641ab27643f577eec3af6ccd8eecab8d2adc
MD5 7ba3014b4d52adb068f2867b4bbc5403
BLAKE2b-256 13060384a70eaaac15f831237c948ae70f070e0b56680f5d5eeb34d5ac0779a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce63bef2efc2aa4e69c957f30e60ffe2e5ceb5cb18f728c2608135ebcc313f4b
MD5 3958b794347c7acf3583537c4b3a26c6
BLAKE2b-256 dcbd31eb4fa3117a91d04b325855185cbc5479e04ebe98bb12a3e2bf47644f27

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 59ea7d4028a45e5ee2467ec0cf8957f4c1836f82772e85c2dde741954fa61a6e
MD5 1d729985786155b325533d0eb558e0cf
BLAKE2b-256 cf76cb03668228757dc466b8d858c915b06f16274dea038b09a22986e3b736af

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ef84baa07cada0adcb1728a2888faae780426ca9f98a3568da9113d34abd2a7
MD5 b721091b8693f202efcadb79cb54e3e5
BLAKE2b-256 e113663eb1f2d23f1990ef17d7330da3d0728fd05bc08e1ca55b69db4c6b3e0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 341395ef3384362428bf271eaacb34c20531225168077c1dcbfcbe52a1c404fb
MD5 525dc7e908394408f67b985a240e98fa
BLAKE2b-256 7d15c3723b837a4515942a001a6ea988cda20076d3425b43777258ad1c34b857

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for mrrc-0.7.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 500b6db130052bf9cc0e707b4768adcf9eac2ee1d39e825ea4d5ecc286039928
MD5 aff3d6fbf2314cded4878862d2df6904
BLAKE2b-256 0c5df755aaa2c89b61bf54a0363d39ed4e151c1aff446f9321fddc0fb3fec284

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82d495cf7dee72e3c8df4a0132c17ca185fa102785110047e3e94401cb15fbec
MD5 68adabc31361a7d0d827a09ce3de277e
BLAKE2b-256 a731133b776c4b0fb15106b132dc46d9e9112050e9d6f1c25c85e3019400e59a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aefb4d76affb4febc9e006b978672c4cefb32804542312e0c93c5784b842c0c2
MD5 404529bffc65377b11fa6f53d6647513
BLAKE2b-256 2ecf0c0b0485bd6965eaa122824ef015825d16b4d11bd5301fb48b2a48c9a2c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcdee5d0fa76c10698f0bb28a5adbe1ea3fe1a522569c4aceb56674590608003
MD5 0b5ff5c41f2201c004ffc90840e1a8ec
BLAKE2b-256 36dafc9895063248142a750f12c6b4276a6803a6edb3f02d58cecb761374c0fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94c60c4f2c3e38186a98799d355c7912463c0b0cffb59f51d956db438783b80a
MD5 bf327d7984722d6005da70958bb817f0
BLAKE2b-256 e0e60c74d1dfd5465a941ae0bd0a4746a1fb40487fd67065227c5f4d0b59c6c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for mrrc-0.7.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9ee062211c67f26304912040b77d5ca29149273ff10d83cf3647f84a9dd34f07
MD5 029d2090106df55f8a65d614e9b40ba3
BLAKE2b-256 0696a3d7dffd00cc85f8e8531adf7769271c55613d8b37b3bc1e5b98df011e9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e46663c3ba8021ed0d7478c73de03c4f6b9513fea93783f9aba5f82129fce500
MD5 424b802ad7fa528d565fb4ddcb6fd819
BLAKE2b-256 6f42a2a7c76395d2f88cf9d22f6168daf954ed73931ed0e4ab08122a32718cb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0dd4b21f64bdd9b9b7e4ba0cb098b8419f60d6944bbd6c270ec0700e965434c
MD5 b1cd21fb3106090996e123f522647f63
BLAKE2b-256 89974ce6cf22e686eef3bfa9f4f6dc0aae11861ca99ee70f4766abc45cb822f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed481c504afed2c463de158f5f9ba9b9323b89845f2a8e61ccdf4d8798cbf7e8
MD5 3e424d2be10657199182766c3c9bb605
BLAKE2b-256 559f355ad434722004238de7b8a148fcbfc327b552cd3dbfa5d958744868d5f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3045da705eaec7de2a781450a8fac1d69227b91e9d6eaa5b5c86d93c003217ed
MD5 48fa5bfa5682beef364d4cee8dd89e8a
BLAKE2b-256 a9c04908aa5bd791f9ad00b1ff316d7cbbddebcf422dde2ecacfbf3b16ccc151

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for mrrc-0.7.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9c2c69b664e50127225111fb6f22beace68b2f72dd4d81ba98288af90ff3853a
MD5 047f3db1dffa7a2bc3bc0eeb5b104046
BLAKE2b-256 8ec8843c875c28a7e79ff91a335f0c78bfaa967d5c94719c29ea5a9ac032a0ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa20a9d5d5e3e9061f52fd8b5a5dc1d95e0335466611eeb6950a420a419f707f
MD5 de69d017865f7d99e2be6d95744233c5
BLAKE2b-256 8b5d19712ec0bb0dd9141653cea0a0a833dc927c29820cb645a359cee8832b0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 11aaea727cf1c1053acee82486061fc73ab2fe55515829549824be292e96bec5
MD5 be9e61430220996d076e8c578dc8a89d
BLAKE2b-256 033cde08396ac58ac2247da9243eb9a187f3e46b273c513b2ebb891dd7666f4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 667b819d43ecd9cc6f8822e2a4c063c9378bd42d1ba094145d8768ae5e0621b6
MD5 f6001dd3945e408c0352aed936ebc118
BLAKE2b-256 ce9e527477fe9a99b7efc6e827e1e98cb037093ba195aacf68ccbb9efe23d29a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 623bf19fb20452b40c8a10346a6d95bad1092a4d2f7d8cc1ab6cfc17e5311110
MD5 6bcdd0e6a3008f5a3ecd321d5550a7dc
BLAKE2b-256 0fcae0c0fa35c071b4b85bf0886d247bf40eb2d2560fa85c987d8c8e9634521c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for mrrc-0.7.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7dd8663e5dd8c50c36168fe5e927f6a4df8aaac7d932b86b7e7991e0b8bf8585
MD5 16641584f42f4cc0644d674ea5de035b
BLAKE2b-256 af774a78ef242f74c964b2b8739245395bd00ff643c30ccee27af0c598c218f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c40098fc875593626a807889e7a8d66732928a9082c0d38baadb270f06a012f
MD5 e88c3b053464f63ede676cc90dc2924e
BLAKE2b-256 d45d6780df261adce3ccfe3c0d349a8788dd0bfbea9645e774109a8d311ec595

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 50a898c4af06aa73beccc477ec8b6a89bb3ddbaf3d259542ec6dab9babc75f66
MD5 d63f320cc0605d87fb6e7ce1c021f304
BLAKE2b-256 8c189f4501bd169e00c3f19d2b3849f8ed3eb574251f03c6558fb171e39ce54e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7347b18ea6e9a2a2c90585f793c6ef7aa454ae430d6e67415ce9dfbf5b027f7
MD5 5d12398b12568cf9043b433e31584e8c
BLAKE2b-256 a0347282f7ef744b7a201db9be75727be12328e950baf946da60405f61f51c30

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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.7.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mrrc-0.7.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efd4bd9ddee3652944745c15dc08c0ef04430fe67d47bf310187a1453023c9eb
MD5 5ddee3521099f4c3686b8c2607f44149
BLAKE2b-256 d6885b4413c9c7f7938cfa39eeb66be9a85d3cde245f439d2b686e0a99076593

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrrc-0.7.4-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