Skip to main content

goldrush

Build status

goldrush is a Python implementation of the Gold Rush match key algorithm for identifying "duplicate" MARC records, or records that appear to be about the same bibliographic item. It provides a function that you pass a MARC record and get back the Gold Rush key as a string. Both pymarc and mrrc records are supported — goldrush is duck-typed and imports neither backend itself, so you use whichever one you already parse records with.

goldrush is a class-for-class port of the canonical, production-verified Java reference implementation, coalliance-matchkey, maintained by the Colorado Alliance of Research Libraries (CoAlliance). It targets algorithm version _v08142026, whose version string is embedded in every generated key (just before the trailing format character) so you can tell which algorithm produced a given key. See docs/CoAlliance_Match_Key.md for the field-by-field specification.

The initial code was found in pymarc_dedupe created by Max Kadel and Jane Sandberg at Princeton University Library. The goldrush module was created because pymarc_dedupe included other functionality that was unrelated to Gold Rush, and pymarc_dedupe was not installable as a module via PyPI.

Usage

First install goldrush together with a MARC backend. goldrush does not depend on either pymarc or mrrc directly, so pick one via an extra:

pip install goldrush[pymarc]     # or: pip install goldrush[mrrc]

Then load a record with your backend and generate a key:

>>> from goldrush import goldrush
>>> from pymarc import MARCReader          # or: from mrrc import MARCReader
>>> record = next(MARCReader(open('marc.dat', 'rb')))
>>> goldrush(record)
'pragmaticprogrammerfromjourneymantomaster___________________________________________________________2000____1__addisa________________________________________hunt_________________v08142026p'

The same call works with an mrrc record.

The CoAlliance indexer optionally uses the MARC filename as a hint when deciding whether a record is electronic or print. To match that behaviour, pass the filename:

>>> goldrush(record, marc_filename_hint='cu-electronic-2026-04.marc')

Pass nothing (the default) for pure-MARC format detection.

Matching records

Two records match when their keys are equal. Comparing keys is all the matching there is. docs/examples/duplicates.mrc holds three real records for one 2023 CRC Press title: the print edition as cataloged by the Library of Congress, the same printed book as cataloged independently in K10plus, and the e-book as cataloged by the Library of Congress.

>>> from goldrush import goldrush
>>> from pymarc import MARCReader
>>> with open('docs/examples/duplicates.mrc', 'rb') as fh:
...     lc_print, k10_print, lc_electronic = [goldrush(r) for r in MARCReader(fh)]
>>> lc_print == k10_print
True
>>> lc_print == lc_electronic
False

The two print records match even though the catalogers disagreed about the leading article ($aA pragmatic programmer vs $aThe pragmatic programmer), whether to record an edition statement, whether to bracket the date ([2023] vs 2023), and how to punctuate the publisher. Gold Rush normalizes these details away.

The e-book does not match, and the reason is visible in the keys: they differ at exactly one character, the trailing format byte.

>>> lc_print[-10:]
'v08142026p'
>>> lc_electronic[-10:]
'v08142026e'
>>> lc_print[:-1] == lc_electronic[:-1]
True

See docs/examples/README.md for record provenance; tests/test_examples.py asserts these relationships under both backends.

Masking parts of the key

Sometimes a component of the key encodes a distinction you do not care about for the task in front of you. Because the key is a fixed-width positional string, you can ignore a component by slicing it out or blanking it before you compare. Nothing in goldrush does this for you; it is your string, and masking is ordinary Python.

The print/electronic distinction is a good worked example. Keeping print and electronic apart is usually what you want. But if you are clustering at the work level, "how many editions of this do we hold, in any carrier?", you can mask it out. The format character is the last character of the key, so dropping it is the whole recipe:

>>> def format_agnostic(key):
...     """Gold Rush key with the trailing print/electronic byte removed."""
...     return key[:-1]
...
>>> format_agnostic(lc_print) == format_agnostic(lc_electronic)
True
>>> len({format_agnostic(k) for k in (lc_print, k10_print, lc_electronic)})
1

All three example records collapse to a single masked key.

The same move works on any other component, depending on what you are doing. These are the ranges, as generated by generator.generate:

Component Range Width
title 0:95 95
GMD (disabled since 2022, always underscores) 95:100 5
publication year 100:104 4
pagination 104:108 4
edition 108:111 3
publisher 111:116 5
leader type 116:117 1
title part 117:147 30
title number 147:157 10
author 157:162 5
title dates 162:177 15
algorithm version 177:187 10
format (p/e) 187:188 1

So, blank 104:108 if you want records to match across differing pagination — common between a print record and an $a1 online resource record, and in fact the format byte alone is often not enough to collapse print and electronic for that reason. Blank 100:104 to ignore a one-year publication-date disagreement. Blank 157:162 if you are matching on title and imprint alone. Keep the width when you blank, so later components stay aligned:

>>> def work_level(key):
...     """Key with both pagination and the format byte masked out."""
...     return key[:104] + '____' + key[108:-1]
...
>>> len({work_level(k) for k in (lc_print, k10_print, lc_electronic)})
1

Masking widens matches, so it also admits false positives. The more you blank, the more genuinely different manifestations collapse together. Note also that a masked key is no longer a Gold Rush key, so don't store one where something else expects the real thing. See docs/CoAlliance_Match_Key.md for what each component is derived from.

Verifying against the reference

The reference implementation is the behavioural contract. The tests port its JUnit suite to pytest and additionally diff goldrush's output for every record in tests/marc.dat against a golden file (tests/marc.dat.keys) generated by the reference coa_matchkey_v08142026.jar. To regenerate the golden file (requires Java and marc4j 2.9.6 on the classpath):

java -Dorg.coalliance.indexing.fileName= \
     -cp coa_matchkey_v08142026.jar:marc4j-2.9.6.jar \
     org.coalliance.matchkey.cli.MatchKeyCli tests/marc.dat > tests/marc.dat.keys

Credits and licensing

goldrush is licensed under the Apache License, Version 2.0.

The Gold Rush matchKey algorithm is the work of the Colorado Alliance of Research Libraries, and goldrush's field-extraction and normalization logic (src/goldrush/fields/, src/goldrush/util/, generator.py, and version.py) is a port of their Apache-2.0 reference implementation, coalliance-matchkey (Copyright 2026 Colorado Alliance of Research Libraries). The ISBN-validation logic additionally derives from the solrmarc-marc4j project. These attributions are recorded in NOTICE.

Download files

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

Source Distribution

goldrush-0.5.1.tar.gz (16.0 kB view details)

Uploaded Source

Built Distribution

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

goldrush-0.5.1-py3-none-any.whl (26.7 kB view details)

Uploaded Python 3

File details

Details for the file goldrush-0.5.1.tar.gz.

File metadata

  • Download URL: goldrush-0.5.1.tar.gz
  • Upload date:
  • Size: 16.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for goldrush-0.5.1.tar.gz
Algorithm Hash digest
SHA256 8389209c79ae49fa14f0ce7c3432a7cb96a9478c3f75ee3d8d48764db1f8db31
MD5 473defea0c336c3e844e76c053aa4f9a
BLAKE2b-256 b46d6d3595e4b8816de53558d36d0e2338e3b0e6736efc8203cf74d8d63bcb0f

See more details on using hashes here.

File details

Details for the file goldrush-0.5.1-py3-none-any.whl.

File metadata

  • Download URL: goldrush-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 26.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for goldrush-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b2ce38e214e0a7400abd6475910968ef16c4648b40eaca63411ada151b81bf1f
MD5 4fb78e5ccfebf5ce9334b9a0e345435e
BLAKE2b-256 86af250be3f0ecffa9672e4deaa1eaac17381e3bf4717be9791cb76c4cd2d366

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