Skip to main content

Rust Python docs.rs Dependencies crates.io License


This project provides a toolkit for efficiently processing bibliographic records encoded in MARC 21, which is a popular file format used to exchange bibliographic data between libraries. In particular, the command line tool marc21 allows efficient filtering of records and extraction of data into a rectangular schema. Since the extracted data is in tabular form, it can be processed with popular frameworks such as Polars or Tidyverse. In addition, the Python package polars-marc21 provides a Polars extension that allows you to use the query syntax to create a DataFrame, without using the command line.

marc21-rs is developed by the Metadata Department of the German National Library (DNB). It is used for data analysis and for automating metadata workflows (data engineering) as part of automatic content indexing.

Command-Line Interface

The marc21 tool provides the following commands:

  • check — Validate records against rule sets
  • concat — Concatenate records from multiple inputs (alias cat)
  • count — Print the number of records in the input data (alias cnt)
  • dedup — Remove duplicate records from the input
  • describe — Creates a frequency table of all subfield codes
  • filter — Filter records that fulfill a specified condition
  • frequency — Compute a frequency table of values (alias freq)
  • glimpse — Print a dense preview of a data field
  • grep — Search for records whose values match a pattern
  • hash — Compute SHA-256 checksum of records
  • invalid — Output invalid records that cannot be decoded
  • partition — Partition records by values
  • print — Print records in human readable format
  • sample — Select a random permutation of records
  • select — Transforms records into CSV or TSV format
  • skosify — Convert records to SKOS/RDF
  • split — Split the input into chunks of a given size

Check out the documentation to learn more about installing and using the tool.

Polars Integration

The polars-marc21 package uses the query engine to transform MARC21 records directly into a DataFrame:

from polars_marc21 import marc21_select

df = (
    marc21_select("001, 075{ b | 2 == 'gndgen' }")
    .header(["ppn", "gndgen"])
    .from_("DUMP.mrc.gz")
    .where("ldr.type == 'z'")
    .collect()
)

print(df)
shape: (7, 2)
┌───────────┬────────┐
│ ppn       ┆ gndgen │
│ ---       ┆ ---    │
│ str       ┆ str    │
╞═══════════╪════════╡
│ 118540238 ┆ p      │
│ 118572121 ┆ p      │
│ 118607626 ┆ p      │
│ 118632477 ┆ p      │
│ 040992020 ┆ u      │
│ 040992918 ┆ u      │
│ 040993396 ┆ u      │
└───────────┴────────┘

Contributing

All contributors are required to "sign-off" their commits (using git commit -s) to indicate that they have agreed to the Developer Certificate of Origin.

This project uses a strict no AI / no LLM policy. Please do not use large language models (LLMs) to create issues, patches, pull requests, or comments. Although English is the preferred language, you are welcome to communicate in your native language.

License

This project is licensed under the European Union Public License 1.2.

Download files

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

Source Distribution

polars_marc21-0.3.0.tar.gz (157.9 kB view details)

Uploaded Source

Built Distributions

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

polars_marc21-0.3.0-cp314-cp314t-win_arm64.whl (712.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

polars_marc21-0.3.0-cp314-cp314t-win_amd64.whl (763.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

polars_marc21-0.3.0-cp314-cp314t-win32.whl (696.4 kB view details)

Uploaded CPython 3.14tWindows x86

polars_marc21-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

polars_marc21-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

polars_marc21-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

polars_marc21-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (888.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (957.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (921.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (813.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (841.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

polars_marc21-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (870.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

polars_marc21-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl (750.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

polars_marc21-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl (827.7 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

polars_marc21-0.3.0-cp39-abi3-win_arm64.whl (716.2 kB view details)

Uploaded CPython 3.9+Windows ARM64

polars_marc21-0.3.0-cp39-abi3-win_amd64.whl (766.4 kB view details)

Uploaded CPython 3.9+Windows x86-64

polars_marc21-0.3.0-cp39-abi3-win32.whl (702.4 kB view details)

Uploaded CPython 3.9+Windows x86

polars_marc21-0.3.0-cp39-abi3-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ x86-64

polars_marc21-0.3.0-cp39-abi3-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

polars_marc21-0.3.0-cp39-abi3-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

polars_marc21-0.3.0-cp39-abi3-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (891.3 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ x86-64

polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (960.7 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ s390x

polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (926.8 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (821.9 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (844.9 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

polars_marc21-0.3.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl (875.8 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.5+ i686

polars_marc21-0.3.0-cp39-abi3-macosx_11_0_arm64.whl (757.6 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

polars_marc21-0.3.0-cp39-abi3-macosx_10_12_x86_64.whl (831.5 kB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

Details for the file polars_marc21-0.3.0.tar.gz.

File metadata

  • Download URL: polars_marc21-0.3.0.tar.gz
  • Upload date:
  • Size: 157.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0.tar.gz
Algorithm Hash digest
SHA256 db5c3fa92543f308711110d7b82c57013fc7ca77be0540cf8c64a0f1ff96326a
MD5 68b8f719508699ef8bbc78094b763056
BLAKE2b-256 8f17ec77106045504eeead41dc09e8c84c197217be812b17f477784ddf356993

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 712.6 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 ea70f9c122055a98d4d9cd927fca49de82ee5385120bb6111d2e59f10444a219
MD5 f2c427ef8bd4adb9f973f288d363d923
BLAKE2b-256 ddb0e03222cc3fd59382fd9476309336ad4dba0e32eb29099929228717fa41b4

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 763.5 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2127b034b1394e0dc7a43c9f58799fe2fefe11b0a408abde5738b0b2325dfbb2
MD5 9bfde8ee6e0a34fbd9379ac7cb4d462f
BLAKE2b-256 6469dde18ea182bd99a5ffd5a9b0657f4967364b633076c8c18143b853cdb8f2

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 696.4 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e4e25b7b70932b851933250a4bfd98b8f06fdf7c72f3b51fb6d9d60480e7114c
MD5 8bd0b2230803d9d47b68ff47656631cf
BLAKE2b-256 401761374ae1d68b50b111fae99fa70c7a558e6f4fb808cc7704af897bad1793

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 516b9024c4785deef84bec3fecc31df9e2bfa4274f671e53b344204bda251694
MD5 8ad8512b437ac2cb9594d35023c836b7
BLAKE2b-256 1299062a94fe174d932a272f324e3a2ef70f1cf3bbd871055d80c5f9ed2c11b9

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1388d7a988a9e5402f12e0baa6517334221b2afa888bfd1700d97fce852f577e
MD5 2130bbb98b53d22ab75809195cc31ecc
BLAKE2b-256 3268a7b00b97dcafa31707981a493226c22d06e2882b8798f09f1bb2b880b056

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 56204ffb0319ffee2e5b4b87b03af38a621d37b3e8195f9cdb19543c857f2690
MD5 96e8343056de2badb81c757bfa60cb8c
BLAKE2b-256 615b44f0d948c56104c49f72c5b99e7a91868d56edbab8267b697b6b36bafca6

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6242e220934e94176474eab761fe9081b8e5ebfe63f95bc4aa0da62863196d66
MD5 629789b3858e2b633c1ed73d732156d9
BLAKE2b-256 477db5d4cb629b200149fa669f981da15bb399b174e5bc0fab9040822307d0b4

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 888.5 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 452512db5cd2598bc8b7e87299654ba3748371e4f822bc9bafe69c9a663f2b85
MD5 6acd68e713052bc255170482bc269ed7
BLAKE2b-256 1038713295b32e3bd2506e7c5202876bf640825ada8a107f412f825555988d28

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 957.0 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e2e175bf64eb1283513aeda79e8e1546959cf2e9b28832a1803eedf1b05b352
MD5 fc14582c08129e19ac63507de620a56e
BLAKE2b-256 567d9eb2e4564de5324191ac1cc6695ce8ff398813e3dbbb600fd32a032ad50f

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 921.5 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b213af980ec6fc2a144a1095298588253b1036b422403401bff67d53c3f45a11
MD5 18ac1db3a2c54974c6988ad088bd679c
BLAKE2b-256 5c94ca22c28c869445d5f1dbc8c8063bab1077321cf4531292a2af0e7a69baee

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 813.8 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9865e986eaa645b9da5089e27945bbd8f10e193bed45c4f8a9b8793e8615fb90
MD5 0e56ec8b480a7d55b9e739b7c1a0583d
BLAKE2b-256 8f89225e18dfed6d72e593deb3cdd561d1ff5cac31f01b10eaa6ed236f3b7d0e

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 841.5 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57b25616c888f1ec3f4999b50bb29e1d7a93119ee87fc8de29498c17e6115ab4
MD5 2fcd7f916d73a433c8af8c19edb9450f
BLAKE2b-256 edfc475104839f2d7e1d8f8d5e4bfcb6b1ff981067c62d159d60dd14ae13ca3b

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 870.2 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 040f9da01f79cc210ce4b11e464a3c83bc7afa4a655eed2e7e31d2dcc0781590
MD5 04538280da9775735ef1d9583c4bf13e
BLAKE2b-256 8d5bac3046bc359779d1c2f3c16ea0f0d5219fd26fa88724c945ccb51555f1b4

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 750.1 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 776ecf37a31f462a0f729b4fbe64f465912fc5bfeb22b93e8fcf6fad19714ebf
MD5 d765434a5837516767f4a4cdb6b8a910
BLAKE2b-256 ecf7dda233432f16e2466dfbaa055f36d5a33282b07588051782d7f88989eb77

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 827.7 kB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a84a2513b5f88df71406b755260d6302f3640e7d9b37893c0f1d70eebb3fa9a
MD5 f437e378c54228e7a9cf699811cafe43
BLAKE2b-256 e26e1d8a18cc9b0b6efff76ea69b8c3c8e9317c18b623788619af571c536d1f9

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp39-abi3-win_arm64.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp39-abi3-win_arm64.whl
  • Upload date:
  • Size: 716.2 kB
  • Tags: CPython 3.9+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp39-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 4f7543a6d6091e2e14c985e533b3d720654482651d275cec19ed19ea90b35503
MD5 4dd4c30aa309c1fee259d5770e7529c8
BLAKE2b-256 c41ff4da761dd07e36fe3e87f1601f7c86fcede21491e641ebbce8a1ed1c5958

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp39-abi3-win_amd64.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 766.4 kB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 a367e6f0b3dde3b857ce3c6b6707863f0d57a15c3b5c045bffbfda7328bd0bc9
MD5 9c025bb550bf79e6cb6015fe7076658c
BLAKE2b-256 678809732db88b97a33ef4d2b1de75f9fc39b2069aa3273e292ef7098cf122bc

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp39-abi3-win32.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp39-abi3-win32.whl
  • Upload date:
  • Size: 702.4 kB
  • Tags: CPython 3.9+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 7f9cec694650e19df887651a18cc10475e58e1f8dc3421ac50968dc7d50e55d2
MD5 923589b6b6c6fce653effdae8c04a7bb
BLAKE2b-256 76a5dbab6dc2fa736138d8011af60688c7890fa9a53d42ad159faab9ac852305

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b68a420d8a6f34a6da64a11168ed00695de2fc9d3499da68d3178f1f98ffe27
MD5 8ab75649f9c04339960b5ee5fef68f3a
BLAKE2b-256 46d20c4414d337f918698d58f0233a56f7ffd1cd6d747245ec2fe57bf0c6d592

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp39-abi3-musllinux_1_2_i686.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp39-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 652d3c11e92d0f3655e547a9a94e7887e8bc3a5aba1efc1e6d2a38ea938239f4
MD5 cdd8d14b9cdd55bfb76e63c3fb760757
BLAKE2b-256 541784036a7628b508f51601a7844b8b5ed165b8c3af9aa77585e48724a953ba

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp39-abi3-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp39-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 00b51c5a0b99ef63867286a50cc38ee6c5687080841e5675526e53f880f0a132
MD5 35e2e5f1db2012515309f2b70dbd8cbb
BLAKE2b-256 eaaf2285b6cd45d7be1ebfb2d4f9036b6b35f2152509ace22fedcb4dee858416

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp39-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp39-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc83f75f3f4c1fdf225c00f524cc5fbd3318c1c37e85f8880adad6555a509aa8
MD5 4eb59e21d60e0bbdb991081a558587ff
BLAKE2b-256 6422954829ed81bdf2b2b270786862b97390758e78dc72c3ff87f97ce75098b4

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 891.3 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 642a9022aceb3f8e5cf4ee0136723ef39e8d03360e93ac055f00472b59a9a4d9
MD5 b1225301ae90e28eaeb457b05db46c86
BLAKE2b-256 a4c36ca31def1ee1b74b29902e479a593f1ded0ee49aea1ffabb79b16bc2d2a9

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 960.7 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f6666989edb060a611b8895d47a3c47999a6fed15a98422ebe810ee2237915e
MD5 0e12805eeadb3e36632d08035c47677b
BLAKE2b-256 9864b89e9939f701055bbeb1e373d07602baee808b2ee0bab72c06babc0e2f2a

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 926.8 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d7fc3fd9620373b9d131a74318a547b3d5c9dc982d7feb72d151c7308d5239ca
MD5 fba51720ba64d3e46b5eb71eac280cd8
BLAKE2b-256 f24fdd745357bff6e3014258dcc34e4fdc4dca46f7205097b3052dec318094fe

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 821.9 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4933fc1ecf9abbea8a2dbd79dff29b3c8b182f718fe0d8a7661f41358ee966b9
MD5 788905e1d5bd5ea9a2c2ec8b25192045
BLAKE2b-256 6ead8de601a212de260f651b54d54cac9353c67e529ad6488ed6a6c4facad324

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 844.9 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93f61f48f9734cae258477176196dd3cc6daa6c4d1b6a735003a877bca996743
MD5 797d08f5d53efc6fada76195b2e10987
BLAKE2b-256 7cc1731b96df3ef0e931e5f296cedd9c25048f10f9e150be642c4f674980f451

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 875.8 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 154022590ed39b2126945c8b49b3a4b7caca937ac8f6e0aafefbac62d4ccd74d
MD5 c9e3c500f4ddb8c13ffcc15d0e92b276
BLAKE2b-256 0c1d597afdd285d5a8bc0fe203b2be04e6991043b2b5fe81114c60db8b65655a

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp39-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 757.6 kB
  • Tags: CPython 3.9+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b05eaf74db834f851f35219c6790331b0fa96c8d5750012e60ce8fff173d864a
MD5 704850064d4f403c542f9bb735de37e6
BLAKE2b-256 8b83bdd4449ddc06628ba695e6fca2340c532b4e9fc704ab50d9129e081b0540

See more details on using hashes here.

File details

Details for the file polars_marc21-0.3.0-cp39-abi3-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: polars_marc21-0.3.0-cp39-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 831.5 kB
  • Tags: CPython 3.9+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for polars_marc21-0.3.0-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ef91718e8329b85114829c9ae5d95fd3cf0eebc6efad119ec14e266ad9e5dfef
MD5 7a94d1d28e5c1cc2cbc7a311ace45dca
BLAKE2b-256 e7b044b1bcbb2b2d17689ac776978c53e849d76fb32266eb926bf1e01781f274

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page