You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

13 lines
341 B

import pyperclip
with open('review_references.csv', 'r') as f:
with open('review_references.txt', 'w') as f2:
references = f.readlines()
for ref in references:
print(ref)
# Copy ref to clipboard
found = input("Found DOI? (y/n): ")
f2.write(f"{ref.strip()}: {found}\n")