Created
May 2, 2020 20:12
-
-
Save kozo2/87246f26cf17b8256ab651b2daefbcaa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import pandas | |
a=pandas.read_excel("Free+English+textbooks.xlsx") | |
for i in a["DOI URL"]: | |
os.system("wget https://link.springer.com/content/pdf/10.1007%2F" + i.split("/")[-1] + ".pdf") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment