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

Uploaded CPython 3.14Windows x86-64

mrrc-0.7.5-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.5-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.5-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.5-cp314-cp314-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

mrrc-0.7.5-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.5-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.5-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.5-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

mrrc-0.7.5-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.5-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.5-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.5-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

mrrc-0.7.5-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.5-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.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

mrrc-0.7.5-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.5-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.5-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.5-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.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: mrrc-0.7.5-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.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dbd3449caf2407343add6a5135f97042ea20fb458577e4ad50e484e59c6305ef
MD5 f8739946a299375acd4172aebabe9c84
BLAKE2b-256 6fded21f8c97fcc78472db2881aefac87a78c209c7003659e497a9d9cf6a4a2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a189395f5f6638b41e7653cb115194d5d36be0ee7139d6df8adf0764fab06084
MD5 86e3be6968e96f36ba47c541d26a88c0
BLAKE2b-256 7862050db8025a61a9c917060d9e89aed00d5d81ed1185ebb0faf32d50b39f9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 594c0d382eb73ca20682322e6124581d58ddd0695afce254c5de7c7dc6cd6b90
MD5 474e2f706af4264d05f8026d63bf96b1
BLAKE2b-256 d958e8285a5260e4f1b073812606813f742015e0f19bc5c38fbda8324a4af1ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf9ffa37a2f9689c8391775343d60f224990e4dd76d16cf0bb56f1cc9e7d3fe6
MD5 60b5279dd3aefba4f446b675af93a612
BLAKE2b-256 51f9e86e3190ca5021e7fe62c7403b7dcc6e55b4a26758e7b7f942b6db20631b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 715249f577d7dcae31187442834a971efc6bbf6e32c0c8125d4bc69fc3af56b7
MD5 dd79643f01630bdd5c119b1505d021d4
BLAKE2b-256 9737000ba7f415b93e07d9301bde65c4c81b2460352608e5624f511f20095393

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: mrrc-0.7.5-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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6930a7df8cf195a473fdb36612b1d5c3b33c4103127711e2dca8ca772ca23681
MD5 b2d5f45a5b5c701141e4202f9da6d7e5
BLAKE2b-256 5f318a5064f490683a40bc21e13c6cfe5fc6ac3bebcc49f80c672695fa897098

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e11a5fabe6430b98153a1117ace325cc943ba87c3f18980c706284ea38b5356
MD5 3845384e1c4a539a4da559fa7b79a6c7
BLAKE2b-256 06c7be3e5bb461f0a8e6713ac4a426fa58d741c73b7b18408746dc3c12a97151

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 29dc61eb64b8e228dc45379996fe6d0bc1048b23d7682e2949d6ff7f82b54a6c
MD5 c75854c70c16864fd19b2dbb5f2e4c00
BLAKE2b-256 16d91c5ecfbc09f844794f4df8b65684a2b6c1f425c0afced289af5ccc8c8c58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5694fe8f21a3955538260a8dcc34fe98e7db138aeb2955a54fde2f70432e860f
MD5 69ffe64d129ff50daa1d715163eeec14
BLAKE2b-256 c6cbbac1cefec1f4a3951a5ac9442ef5853bb5cc2ce00f3830a8f02944c1f3b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21b5e939b2b25f0f12eba5c59b4556c57c15b01a1bbe9d6ac68b38ed539e90b2
MD5 b15ba10a070076a2b9497ba75f392c4a
BLAKE2b-256 6fd768223acfc1cf49e07cb2b8357d88159f55df3257705a16f8dc38af9b2259

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: mrrc-0.7.5-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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cd03d71aa829b6ef9f78d7db30215e62f31eaf2a64c3fced85d1a8c3550cd301
MD5 7fc383e916d151462c6e19e1b53a9b34
BLAKE2b-256 0906414b545068d994ffb5668b0296428855e76dca8cb9cf679afc4133761fed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27e7623dd5f60bba91ec5b36bed8eeb672770a21c4811fb08c29509d07d2f637
MD5 cbf591d55da2dcf980d2ce274fe885cd
BLAKE2b-256 346a4f71401c56810daa5fee0d4ff9c8c8f875798c6d49dab1c4f3b1efaab63f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 312e9430cb2e3ac5a9d38186dcc4201837bbe0588eef0fee74ee90b01e08365d
MD5 cec7e7bf20ac9d09444aca35f36b911a
BLAKE2b-256 7bb39b2c13989fdbe9608005071ff979adf2e93bfe210f15c26f03e27a94a058

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f72655453a6d52cd81ad5c00709965fd400623b138bf9bd3ea7db6bce04bfa6b
MD5 a89e97b51b162888151ac6f80ac33b01
BLAKE2b-256 85f9cce40cb13b8c7af2673b0996707a8f22999b992f78a3f570f187877b51a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c655ab7b46f990aaeb79b330698255880ab38528cb61df4b33993d76f01874e
MD5 a938bcc192c333b7e1c7c19238bab122
BLAKE2b-256 57b540a18e3c73af1c0f3f3bb1b1ba34f8d7cc1deb2b305c9e2a88d564ddabe9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: mrrc-0.7.5-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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5bbf3595b60a4b61d899bffc04661829911232a732175844d0dff349e4fcf0b3
MD5 636f3a9270e683c4f554485341e156f6
BLAKE2b-256 54b2d9659f5babd0fbc60d368be22382219f08f4349bd3882dd8762a2ea2909a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 425c0b69bd493fe9c8c31fb50588995f48a8ee7043377008fb707de6ae7d5c73
MD5 5a4943741f443a632d38ee9077af179e
BLAKE2b-256 8de426a10dc3396e72781f64f83df7293f2f45334f94b3a6b5327fdd86a580be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 66a36899aebc64f93cac47883e09627144d6608897287166218a1a76a5e5df53
MD5 98f486df96c37e5b15990c039b9baf4d
BLAKE2b-256 9e00e0bd311e644dc5494b1e3a05bb57fbac7f26fab9d684e1444f1fbc851735

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8168ede7e3797fa43b8fe2e9cda180f45f6fddc88cd89a4301084dbb9180600
MD5 d06da08ece4db6cf6db919aedcf088fc
BLAKE2b-256 6fe18e214d9e8a77d73faba0fce728bc774cf9703f9d25f621095330fb7c5d39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63b11b6702592dfd2d56f074422ffd08a27521ccd030365b977da2e992c01feb
MD5 879107dc8fb08bed2a1da3d462346269
BLAKE2b-256 005d525db831613aacbe90c632b5dd65b03fb0d49fc5cee2bf7c43052260da45

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: mrrc-0.7.5-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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3c200251e99793bbc118d7d7c6569fd8578af93c2178c127ecdb6adafcad6f1c
MD5 202b565d0f8c4c3423881bbd11a1e3b9
BLAKE2b-256 b2fb9e1b7e46ae47e186d5754838923994decd6da3076191c850073178c21b65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18401d61488769018a4008d2c67e0fa09651fdcca7e1daaa170956491e973452
MD5 a86ab08afc9fbfeb04d5fb1017f29682
BLAKE2b-256 f9222c433b2341050b12977e47b1fa7b140a52d9e79da22e24ecb6059daf3113

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a793e646c12ad3aac3d0cd083e66ea489087d5cb9cb80f1766670e1686bd4a6e
MD5 8cc62dd701b754a347428f7d7b86efaa
BLAKE2b-256 030262e19f368e32932dc3866a74468ac3a0a9ab64ba606a43b0f280afdea16c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9ec28dfd52fae996f22714608b621adebbff37d0de815e4e5b03eb5a0fa2d8a
MD5 b96df0f4903abd4a5eb02f09592d5cd1
BLAKE2b-256 fc014391037183ea9c828003dab92cd10a33f09a5b2b9de9f5797a6145f63171

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a91c8130e5d747add190e44012c9e150de0836e96bc29cc748a277eb433acab
MD5 62f6436dc6a3ccd34f70d7bd03f086ba
BLAKE2b-256 8eccfe870bd097e55e05d17e96c007fb6d57ef0e025751c1f25fd8adf3d6c7d3

See more details on using hashes here.

Provenance

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