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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

mrrc-0.7.6-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.6-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.6-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.6-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.6-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: mrrc-0.7.6-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.12

File hashes

Hashes for mrrc-0.7.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c679b7cabeaa931f988ca97e3eb4780c00edc6698160a49baec5714111b12bdb
MD5 d2c99a6b1461d38270de4cd66f9411b7
BLAKE2b-256 da6cdac67fa0993fcc16b321f4e27c3657c199ab5fda9efb53139774410d768a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d99f284ed549fb4448767fdc35428a2b9a98a29a60bdb1c11cbbb9f2802b336f
MD5 ca1db9a8d3133c2d6107825e3c262975
BLAKE2b-256 e92ee72f176910c55033fa8e7d69ed545be197b282c36e8dcb2b80b3d031a540

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 19e3a03fc962b8d53987e0c12376be7edb4f7397210070e6bc3098f4cc12ceea
MD5 adb9479cb5f76aed5fdcc4140cb8c11b
BLAKE2b-256 3e8568b3cbd31cda3cd42532fc778c8c2ddf1b221ab5711bcf6097a62575ed4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59f1cfa9a3b9d8f2f677f42a63e846d47f0045fd4387b55ca64ed096972cbc87
MD5 c93ef4886302182f4f78791ad926093d
BLAKE2b-256 ca86d1b4c31f672c4527ee105f71df52c35532648173fef51987b8deba7023c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f4901a13e1db49b8fea92d5f257da7b2d73021aec6f176320d272fe99b1a0b5
MD5 08d0d1fb9207ac7522a15adf092fb305
BLAKE2b-256 ad857d4db1a17c042e9f78d9517020ee3fc54503e7bcaee472d163b8afcc8514

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: mrrc-0.7.6-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.12

File hashes

Hashes for mrrc-0.7.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f2d7b1a767ffcfd2c612af38e7cb77f87f3d1e7ab3e725b4d21ee81897d7cff0
MD5 bf211c61ed0cd5074c03a81da36641bc
BLAKE2b-256 0d4d5f5988e7b3fc5dc17e307b9c21fc29f3470f20bfd31d903acfcfbbcd0b9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7515c8f4188ba606cabdcef5c78c885d2a024969446687255435c26aaaa4afeb
MD5 0b8e7a5a6f4312141480ea4232855a4d
BLAKE2b-256 4be042ed5bd35b957ee9cb89231afd1fc420e2e26c7738d032d6594806da6083

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 943ec001561e7a752fd9cca21a8cd13c78175f1cef4920e0ad14a05427be8cac
MD5 586ce760f4246d269954f9252d5b34e9
BLAKE2b-256 cc87ce281206bc3630920bb294cd253c4d4e1e2854fa825d281b4f10c94f4df5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9bc6ad8df8671b164c0fd216535b7710c19f03f6953abb69cb77a91c33fb039
MD5 c172e1f51e53944f1ea739691ca98dde
BLAKE2b-256 6793813adbb8bdc74c232df9bf2a3073caa6cb25258737b2236172f89140a320

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7ffeb4e45709985476aa74167b0dedd2f6a01495bca2effb14d6b667ad75dd7
MD5 cf789c907764b106235e277e04b0fd1c
BLAKE2b-256 17020c7571c8c2e8e33bce3199f1faf2c8a5266200a9b8410ea95aa9fa9a8066

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: mrrc-0.7.6-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.12

File hashes

Hashes for mrrc-0.7.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ed9ec0cc569abccac5724c427ad660d4f97368cee1cba9ab8b5dee1cc57613c9
MD5 03628ebbf03013635199dd58920826ee
BLAKE2b-256 3554d50be0ae0df411957c93f6bc99267566271d49cfc99979135b3708d3c4e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5da6e5b527b5602174e215fdca135ebfd5549937d0c189d18a5cb45f4124def7
MD5 4e6681c207c9b2b0a4ba9b01cd75627e
BLAKE2b-256 d9e0ab953f4b500e904a088401662f4fefdb01456f09e3b843073c4af3d52fd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ce426c00919a519cf90aaae084025b48b2d24def29db8ca0287962641f0446f
MD5 bebb1894860c7bec66bf64b1b1762c02
BLAKE2b-256 294f946da5283bc728f6a77cebb67d015824afdf6d6f23fba03592d794bad7e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9f34a047ea091465173450720a327df9552fe3cb57f5c1c8e46736d016c5f06
MD5 0a9ea255421401a157c7a03d7b9fc823
BLAKE2b-256 a6958060d00c9af6aa5b99ce61eb4eb55c5446b5a3da12eb1dc30e798d88d238

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4dff98bd5b1db03d43a3a7b25b22c1ca4b92034440917d4e4d32163e9e99147a
MD5 e7f07460cfb6690708e0a745396a0312
BLAKE2b-256 3c858e40a24bc5138f258e9f925b69ce1493a592d56bd7a8e3c689bad1f3415d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: mrrc-0.7.6-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.12

File hashes

Hashes for mrrc-0.7.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 763bfd76bc2b615445a793f023c426f91a93709d67fb0310411e9254c34f8aea
MD5 72326ed25b5c8ea7aeebf3ee31ad9ad9
BLAKE2b-256 e37c02cfaf9141be60be971a4ae85a722882471b3970cedcfbabeb269945a78e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 492968f4f7c7d9d53d806c0cb228c0eced75cf5d76cd8151147cc8092f9bb9b1
MD5 75db231556da771f7ce8e47922eab292
BLAKE2b-256 a46207d1f79ff73abfc701b6785193ddb25ac3c2be5743f29f55fb160f3f11ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1230214a2bdd328fecb6102d69329fae833b6bff7829130973c4fb8a27ef1408
MD5 71fe218e19ca6060eac888bf169f8a4c
BLAKE2b-256 86cdcdcb12c157a7721d58de57b5a7009cd4df276455382b592277caedcfb399

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4533b852e0a84a46e51bdd13438d5440d10e9312b572621a9fb4354efc299394
MD5 c4ccbc42580f09bb79923b978bffbf4b
BLAKE2b-256 166c51752b31a7782ff9b206eaff6ccb2897c4857268569fc379b3b20c2de5f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b586748420a2657e66fd8db3b8dd105437366bde28554d4fb66e7f606cdc5a27
MD5 1e99db2f4d9321a487ea5d3ce499d971
BLAKE2b-256 a84ffe57d8a497e2935230fb3a89fe70f3964a598eccd98500ab0613eeff9ed1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: mrrc-0.7.6-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.12

File hashes

Hashes for mrrc-0.7.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c9314dbaf09547d6f6862fb0d7253763c8804d9b51b0f4c220f595bd13bdb404
MD5 b6798d31c8dcc96a8f620fdbcdbd6af3
BLAKE2b-256 2e612d9d347729ca2f87fe08cd794ca366d389f147cc43bfdb7cc664f0975a69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0030c99b1100a4f86e87b61ccdece510d04a7dc0a1f18ace5debcbbcd249bcc
MD5 d217564a27919af79e0059bed9feef7e
BLAKE2b-256 8313c73575bf1383b70c1a59da80bf05bd94c04749cb211b0a905953968623a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e01425e8f1c819f56b4d0b7cccae8bb9102c23befb32f059b522347ff2e3924
MD5 148b758d2a456a388bc0e5b44c1dddd4
BLAKE2b-256 9fdb60186f0345402b8862b8b00f263707799862fc5cc7f8f11540e4e4d45871

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c215e66966564f9e23170576170d0adeddee3ee12b3e4d65f363aa8e74d30eb5
MD5 819eff9466e759db5c068ca344d73f5d
BLAKE2b-256 e5369204874e9be8f3a1d0905a33ffcc81db0cb3e0296df94be611d74ff132d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86cc378ffde976aec62b3d84b18737a55d8a26da9ce0d8cc3458c13f05f25f7b
MD5 2cedc521d7f5c111c2c743053c744af4
BLAKE2b-256 28348b6f8d75880f6b92e55d28f02b1837915c30efc251a960c3f78ee1d79395

See more details on using hashes here.

Provenance

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