├── .gitignore ├── LICENSE ├── README.md ├── authfiles └── readme.txt ├── bibfiles └── readme.txt ├── control_auth008.py ├── control_bib008.py ├── export_csv.py ├── pymarc_utilities.py ├── test_008.py ├── test_csv.py ├── test_files.py ├── test_find_replace.py └── test_uncombine.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmakki72/pymarc_utilities/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmakki72/pymarc_utilities/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmakki72/pymarc_utilities/HEAD/README.md -------------------------------------------------------------------------------- /authfiles/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmakki72/pymarc_utilities/HEAD/authfiles/readme.txt -------------------------------------------------------------------------------- /bibfiles/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmakki72/pymarc_utilities/HEAD/bibfiles/readme.txt -------------------------------------------------------------------------------- /control_auth008.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmakki72/pymarc_utilities/HEAD/control_auth008.py -------------------------------------------------------------------------------- /control_bib008.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmakki72/pymarc_utilities/HEAD/control_bib008.py -------------------------------------------------------------------------------- /export_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmakki72/pymarc_utilities/HEAD/export_csv.py -------------------------------------------------------------------------------- /pymarc_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmakki72/pymarc_utilities/HEAD/pymarc_utilities.py -------------------------------------------------------------------------------- /test_008.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmakki72/pymarc_utilities/HEAD/test_008.py -------------------------------------------------------------------------------- /test_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmakki72/pymarc_utilities/HEAD/test_csv.py -------------------------------------------------------------------------------- /test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmakki72/pymarc_utilities/HEAD/test_files.py -------------------------------------------------------------------------------- /test_find_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmakki72/pymarc_utilities/HEAD/test_find_replace.py -------------------------------------------------------------------------------- /test_uncombine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmakki72/pymarc_utilities/HEAD/test_uncombine.py --------------------------------------------------------------------------------