Read the whole input file before making api calls
This commit is contained in:
parent
49c3203d78
commit
ee91df4c04
@ -55,7 +55,7 @@ def main():
|
||||
|
||||
with open(articleFile, 'r') as infile:
|
||||
next(infile) #skip header
|
||||
articleList = infile
|
||||
articleList = list(infile)
|
||||
|
||||
j = []
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user