This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import csv | |
import codecs | |
def readFile(): | |
print('reading file...') | |
fileName = 'sus_dups_quotes_by-oclc.csv' | |
checkList = [] | |
with codecs.open(fileName, 'r', encoding='utf-8') as c: | |
reader = csv.reader(c) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import csv | |
from pymarc import * | |
marcFile = 'C:\\Users\\Fenichele\\Desktop\\fasdocl.mrc' | |
resultsMarcFile = 'C:\\Users\\Fenichele\\Desktop\\x_fasdocl.mrc' | |
urlFile = 'C:\\Users\\Fenichele\\Desktop\\em.csv' | |
def readCSV(): | |
urlList = [] |