Skip to main content

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

Project description

MRRC

Tests Lint Build codecov CodSpeed

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

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

Features

  • Reads and writes ISO 2709 (MARC21) binary format
  • Python bindings with pymarc-compatible API (minor differences documented)
  • Multiple serialization formats: JSON, MARCXML, MARCJSON, CSV, Dublin Core, MODS, BIBFRAME
  • MARC-8 and UTF-8 character encoding support
  • Rust-core parsing with GIL release for multi-threaded Python workloads; early benchmarking suggested at least a 4x speedup over pymarc (these benchmarks need updating — see benchmarks)

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

CSV and Dublin Core are write-only: both are lossy exports of a MARC record, so mrrc emits them but does not read them back. Bring your own reader if you need to import such data into MARC.

Full format reference

Platforms

Pre-built Python wheels are available for:

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

Status

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

Roadmap

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

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

License

MIT

Links

Project details


Download files

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

Source Distributions

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

Built Distributions

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

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for mrrc-0.8.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3aefd3ec1acffcdc285f29b1631cc3443c8c6150ba4ee35fb4a03ece51aa4263
MD5 e8a83a33eb8a01ea932d47b9702201b7
BLAKE2b-256 3eafe09893c74fab59122d130147db5df612b9427bece943644ea0d49f5ff9b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5dae56646ac9cefac3d63d07454320a46cd07790822fd3afd7584dcd5e3effc1
MD5 933cd748d430146d934bf1735acf0f72
BLAKE2b-256 03843b432b66e2471acaec5bd74ad3c8d6e5518882f4dbb8d5e9acca90ffad6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1818e953f7ebea93ccb4d649ed37628a2f2ace6de15c3d4cd1ce6952eb73459c
MD5 a0072f83620ab44fea2cbbe92efac25a
BLAKE2b-256 0ca4fc7b6d347ca9be2ccaf859b2909323e6a6898268b884b5430233037cb1a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f515b34a72b54c385adbef991850c57f48e508a98fb15f73e5bccd02c8ca92e
MD5 96e81f291971b096db77e0cb4c5e18d1
BLAKE2b-256 1d2af98ac9deaa4d986bd46f610d3550c0ecd00b8b730ddbb599bf988d7b132b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42337092a1c3aff1574f71f48ddfae252f7ca6fe1c37c28c6c0ada8a57f71ed7
MD5 13110580bd93f5e973bb3a3a69633a5c
BLAKE2b-256 eda3d9528778363be4bc728e41178b4afd176e3c6f8c8355d72d4e9a147b0a16

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for mrrc-0.8.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6131b659ab898770c0460b8259887ce5087896214e82d59dd28a10ada2462739
MD5 9c2410e79a6b2f0653e5c6a7f8fec6a2
BLAKE2b-256 c90d66f5a03c8bc4e115c85377765dde22f52786422ca8bac4ead5eb32d9b793

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2fc411f16a49a41f4569c926bd6e549af7ffca224b8dbb902865342e2eea926
MD5 9647350b1f6911512ab0a420fda52b3e
BLAKE2b-256 116da6bdf8fc4734e92673ec00d0b8d82c0d905e89ca91e41990893567863ca1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f26d9929377b4f6c6d56a47a794d18abfd19baeeb368ed402ce66dc30ada005
MD5 423a928762a8a03e33bebb27cfdd3971
BLAKE2b-256 fe15d99751590fad6dee9add26376ebd2dce7a5f079629462eb1a03414b62ef4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 645467cf3046b4517cd7b457d5a38017948c37d440dc9ff02049f653f5cd09a6
MD5 e81b9940faf756c8c598f9fd275a59aa
BLAKE2b-256 dd8b9b5c4ad719be63ee2c2e1f01484031ac59f6d365aedcb62614ab06e6ae18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a30c5efb406ab168c664c92d910893bc8e6716374ca2aeb3a40b7b7dae88df4
MD5 52e9c589feef00d5684437848935f1c3
BLAKE2b-256 733932ae658297fa5a59d21a29b8e7f065851de7ac1310cbe71f787e2aa1bd72

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for mrrc-0.8.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 09a0f21e4b0e77bf5ac82afbb6acf39f0b1433f5fdcc224f1d08e4125c55a704
MD5 aab7bbf382f2c7850e99c0170d8d65de
BLAKE2b-256 77a7e697516b4d5ee43ef18b735e9a50c3e4059bbc2498c05d2793cc0b863e8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1ee517db60139d9e11d37a4afe8889229e3d2e31dc0303a6afd881a3c535e62
MD5 9765636e38f508ca76ad53643763e27c
BLAKE2b-256 6eda8ae9f6ff7cd0c365196ab16abba56e8eb428c37f436bf89baefb5ccd21be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 54a6bf598e041cfd791ed93cd2d4c40ad680597c187dd7443786ed0da7ff8269
MD5 e5744d5543f72ca4440a19d0c6b854ce
BLAKE2b-256 25ae7866b255113c76d38905addcaae57e5964c3c0d6770aeac07d0ce1338b60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4a3fb68c68e808c0582669a8ad84e58e56756f6ba3ed87d6eb48dc3902ab076
MD5 ad3ebd0d7ed81ef2fdffdb12d63641c5
BLAKE2b-256 da8f3e59a78b16da5a78ed968b3441727462a724375bbf4c58dc5984c64e6067

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5b67c8cb81497ed7f56aa5d744d4bd43128c56cf1cd6f944017af030ed769fa
MD5 97b847aa0246dab565bcc1165d91a599
BLAKE2b-256 154e78c35df42dfcc3f397cf3a5fefac5b594e41c614a02ebc9a20e9dd4dd4db

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for mrrc-0.8.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7cd32d95751ff6e0b0d06e76d4b62ec650c12ff9b7eb6f21b8e6f56b44cbf0a1
MD5 c990672aefc4d0b785154187cc524e77
BLAKE2b-256 c8151dda1e014cb7478439ed06170ffd8140d605d55d3c571fb2770058c07de0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dbc9c4342eca08b78836bf81aaffa40491d1cf68de96fa476751d16bb56474dd
MD5 fc2f88fe0bffab78c9b522712dbf6f4c
BLAKE2b-256 e368d73eb55893771c6dfe5f166c046f7c6f26369c9b94ba1239380ddb89bb07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af0860d1a0e4c39b454f98801ddd9a77aae46ed77a65cbacab6f19142d7aedbd
MD5 882873a78e9b37fbdc5f4b2b85e57a15
BLAKE2b-256 80b76ce0959ab4ecf349646d6d56c71e943a218d7d54da341673e433e08de9f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23641f982b84ae8765a4d77ebee1d9183b88e9b4fd6111a95832a2b9b5538c7b
MD5 9770d33499b76ef3b9cb9e4029398e34
BLAKE2b-256 5c090d66e21d63c9825580132d277cae3af3d9199ade385fcdd9411d2c1a223c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1c00873a2afc68e4f609d7cf8a4ba95197928a38ab90e74e9af29619488a086
MD5 f358c48eb9f680f705da9e56c822f071
BLAKE2b-256 d62c3d21591b7d3aad986f962872277e9bc59a515574353756c2f473129c21ad

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for mrrc-0.8.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8ec1cbe2f642055abf99789babf38485422746b4200ce139cf9bc580c85957d5
MD5 b3a96dc07cf35f95b7c9aa753116119c
BLAKE2b-256 d89779cf73b51f283352ae8e61cea48e84278fd2216c3dbad0b6a1cb23085f54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6122daf6c05d9863af34e75de2fa4bf1a33670bb92e28995a13065b818a689fd
MD5 9e47f475ecd3bc94c7dac0391b3894d1
BLAKE2b-256 65ac3c08beb352537ebd0e7e583f4edccf16c48f6dfeb26106923c81cb6e56f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d51f9e44d2a7639e35d45bb93f58413da14e9df74607c12da6661b253aba2108
MD5 1ea592f97fe96d6e09a298e3ca2d63fb
BLAKE2b-256 c2b6d5199862350f46da4a549455e0ac13a39b686625c9fd46ff9db1daf5e8ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae0121cd2c1d4564a61f9f95c0eda3513cc4be8734ad38dee4d26b81ef32cb81
MD5 cc9120db9f1e129ab13077628f7e3b24
BLAKE2b-256 230aa8ee34b05835a4c4968c0c11bfce545a7848c6ebd2fca560569d17036580

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mrrc-0.8.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5000d159dbc4527c0246fd37da51536939da80fb022412c6f4eac3fabe32e69
MD5 5e1ef2ea9d3a812add9a1458f2a825b3
BLAKE2b-256 9c2de99ad1d8b0e691bf440f175fff9243af2aa64da2a9d59955988012a89569

See more details on using hashes here.

Provenance

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