Read the whole input file before making api calls

This commit is contained in:
Nathan TeBlunthuis 2020-03-28 14:09:28 -07:00
parent 49c3203d78
commit 24e5590836

View File

@ -55,7 +55,7 @@ def main():
with open(articleFile, 'r') as infile: with open(articleFile, 'r') as infile:
next(infile) #skip header next(infile) #skip header
articleList = infile articleList = list(infile)
j = [] j = []