added open_list.py

This commit is contained in:
lab-cat 2022-05-28 10:47:31 +02:00
parent a6ce6dfcf7
commit fa1d58c596
1 changed files with 9 additions and 0 deletions

9
open_list.py Normal file
View File

@ -0,0 +1,9 @@
import sys
import time
import webbrowser
file = sys.argv[1]
with open(file) as f:
for line in f:
webbrowser.open(f"https://www.lens.org/lens/search/scholar/list?q=author.affiliation.name.keyword:\"{line.rstrip()}\"")
time.sleep(10)