added open_list.py
This commit is contained in:
parent
a6ce6dfcf7
commit
fa1d58c596
1 changed files with 9 additions and 0 deletions
9
open_list.py
Normal file
9
open_list.py
Normal 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)
|
Loading…
Reference in a new issue