Skip to content

Instantly share code, notes, and snippets.

@acdha
Created January 23, 2014 22:12
Show Gist options
  • Save acdha/8587887 to your computer and use it in GitHub Desktop.
Save acdha/8587887 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import sys
from pymarc.reader import MARCReader
with open(sys.argv[1], 'rb') as marc_file:
reader = MARCReader(marc_file)
for record in reader:
print record['752']['a'], record['752']['b'], record['752']['d']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment