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, XML, 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
XML 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.2-cp314-cp314-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.14Windows x86-64

mrrc-0.7.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

mrrc-0.7.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

mrrc-0.7.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

mrrc-0.7.2-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mrrc-0.7.2-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

mrrc-0.7.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mrrc-0.7.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mrrc-0.7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mrrc-0.7.2-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mrrc-0.7.2-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

mrrc-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mrrc-0.7.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mrrc-0.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mrrc-0.7.2-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mrrc-0.7.2-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86-64

mrrc-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mrrc-0.7.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

mrrc-0.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mrrc-0.7.2-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mrrc-0.7.2-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86-64

mrrc-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mrrc-0.7.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

mrrc-0.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mrrc-0.7.2-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: mrrc-0.7.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 eef4d5b8305004b90f13a0dea3cc1f5de6d5b8cc137fd94eda26d8e2dd6f5d11
MD5 d263c2b57f3b01d9cb3483455ce3b60b
BLAKE2b-256 4c33ee32302137d6a07c16351c0187eb4c3e899499152ecdd7f8baa8b7064f3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c0673a24ad03164f9c83932b95b4d1ec560d5a5e91e625f7b87908d4e25e7de
MD5 6f4dda35bc2d3483c1ab681650a7aab5
BLAKE2b-256 545baad171e54ab419e096f4606e4dd6c8672b109aa8aabc36e20f9ba1a87ab3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 56476f20474540f7034108ba7d4e1233ba020746e50936ffcb8e17721c13eafb
MD5 791f1e82906ead5c5cc94bdcd44ca2b9
BLAKE2b-256 a4813dd0218de79c222077b5e39dbfc2fc43ef2fa120d390b3a2622f460867c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29e30dc580ebce57be78321743fc22fb9576d58c736ca713d638730fe78995e2
MD5 dcbe6ffa63f5263c2a341dbb7af3751b
BLAKE2b-256 a525d1dd534c5d572970cfd0ab791f3e1be916986d85825db82ae40e3ea8017f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19b1789c374a427264c369bbbf8bb67832b43be6d3119768ec28f9e8a7d76aa2
MD5 bcf07d21d2c85789372dcd8ecd5e79aa
BLAKE2b-256 57e3e8f5bc1d185ede7ea27a629b657c5bcadb78c31f9d55dadef7091aabe83b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: mrrc-0.7.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1366afb96bcd43340076d0902cb428126af9284155e7264d233af7700dac2052
MD5 cd15187e7a5c6a6bfb11c3346d7ac275
BLAKE2b-256 9ee91414e2a549df53de47114090b81ab949c167750b6eb4e180f76aa011c72f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6819814c5bcd65ffdb7c8b17ef26a882d87c2e30452ed952f3b1f20961780f28
MD5 2fa03e8c143234e3e9e3dd04e98e81b4
BLAKE2b-256 fb4e770c67d8b6e1b089ee7ddadac4176e8c9a24c582b2027fde5706a007e818

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d135e245cac12d40692186331f2037fdb82be324a179f8454816fb0ecd7c1ec
MD5 6972885659afa5a19bba57bc2e7e5c85
BLAKE2b-256 bd973f466729601747624f1de5771e234d77340cb5ac0169e9c845821bdf3908

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef88782192a09e59477773d83ac2efa3fae2ed8875f3f03d8151b0584e965019
MD5 c684661284f1ace1664a07f7dcde9a50
BLAKE2b-256 ab64302be1ef942bcaae3ec1909ee7a859fde7aeb654af390ca32a68dee736e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7378c0ceb34427f43e7483fd2e1b2dcd295b0ba676adf46293e62bbbe0b8cd7
MD5 baeffce67c3c123a1c0bede5297c7aff
BLAKE2b-256 8178f407c647863539fa2acc200ca6f2945e9a872aaae9b5ba3e0ad0bf62e991

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: mrrc-0.7.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bdb0db639f3ff4ab619c09c403e57854d3526900dbaceefc08bb5ec37e2e1a27
MD5 39d94cf887b61b8b28adfdce261f8ae7
BLAKE2b-256 0ad889549339f87fac6b30e607ef183961b7e82eaffed23ae34efe9d46cf35a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 312ade5cb71496773d93907cd9ef5d03c438a5568e11f02ff70c26af42aefe3c
MD5 5357edba7263c743d0177f31e1a913b7
BLAKE2b-256 a6889c191fa54441a94e10417839affc413e044fe110c31e73ac96b2860c2ea7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae4acea5364f9596a527c41f7ffa861e1001b9b51e0a0d43f83bf4ed86c2c819
MD5 9bf5f314544023cde204026863ddc7cc
BLAKE2b-256 31048bcd319f04ae422a39671416d422b7ee3bdfb2c9b61446a12b4d020ad5d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97ae6270a5ff924000e99c0125bbe9dc152aa7cdca79b174c5213fb3baf966a2
MD5 b156db50319038767b40e706dff1ee07
BLAKE2b-256 8269dd56823c06b52174563bc077dd71ff71b0be541f4bdea0b0f22af6990a4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dd4912c70990b199efa8cd68b53967f040e00dc94346ed9c98c368c1436f3a7
MD5 92eb849f48fcf3e3f8af8481dfd12451
BLAKE2b-256 43cb7e3ba1f582908a71129957d3819e09e7819ed998d64e5aab890d821c5baf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: mrrc-0.7.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 40498b8ac509c8e6676ccba94b77aacfd859a3a833d4eefd79abc49cd2d944ad
MD5 6d91445ca9d90bc65267061f602f9029
BLAKE2b-256 bf001a6545773590f79a93ec4e8d628a5f63369e8bc2737708c4c67ab383aa22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31fe2e643273a66f1e4fa222a2ca06fe3750942e66f43013db4fcfa0e15c2605
MD5 33ec0a1d3267b835584f481487c73597
BLAKE2b-256 0b81c3b7f62eedde88d6c08c9aa977d59d0d33c5fe89ea84c7332bc46eecca8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 246392dcd1806ddb1241945714d63e220204aa0618a70cbc6bda5ac8afeb75e5
MD5 7d77f1235c155374cde0678b1fd1eae5
BLAKE2b-256 2ed50a75b64fa42fda05c3422e769ca17918162a97eb5ea7a8f1b65eb848950b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87af15b48f340e0d246a008e1a52441d10eec5c9283f80be0a3115e7f0f22c26
MD5 568f93a85b669d9c541e6217e0fee453
BLAKE2b-256 ba15b09da4dbb82702cef63967f6e7b2158258c12137b52617778af959a754e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fb46a5047a54dd8f6946f4edd6663927f5e5a34c2c3b31944e0f1b32d9fa790
MD5 d7a8cda0fe1cc66361049a98024b086b
BLAKE2b-256 fd254209160a6e86f2c76447f85ab4676120f9fcfe6b946887342d073f3a3824

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: mrrc-0.7.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b6d9d4fe893a60f5b662bb87594b04151acfe9e0593bfc37635378ca6babbca0
MD5 3978b6bfd470667f258fd5aa2fff4609
BLAKE2b-256 879622a0caa149279ecc45fda1bfbd941ad9117195d13ef10104b8516ffad235

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d34ab68d564b700685d5bed8cbd2ea17b1eb83c2378adf433d009d946e27412c
MD5 4ea9fd445f0e338fbc85386e86268db7
BLAKE2b-256 0325e93e61fc6922415b19fd78e1ab0d528447908a2f5a0b0f479ba4ab75a80e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b7333756e0236d3aee0605e6216ff61ff24d23a8f98e8f59203c284649935f74
MD5 931102a4760d71cf1e81405eaccf0f75
BLAKE2b-256 7138cda270f7e348bf602f207f3f706af61568c427143088b798082c20ba0f13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef2f53d13ba725487acd8e4d8b218e127f324d79e302362aa2d8fcfe5f8e7958
MD5 1397e7e55fb390713fbe7a04dbef4d02
BLAKE2b-256 9133cd8c919eca2a97183f17a0cb754c8da21cb8886a263a1f9e19292cdf13f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.7.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e99f8cec2c7cb275df31ccf0c71f6495bab48597a2c134c17278be0ff1a767c
MD5 b9b4aaea8522e7e026f10d98f5337a41
BLAKE2b-256 3ecfd09f517bf162b08d2974117e5b862802745d04c5c7afc3df4938cdb35d88

See more details on using hashes here.

Provenance

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