-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d276527
commit 2028e5a
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,42 @@ def main(): | |
$ scihub2pdf --title arxiv:Periodic table for topological insulators | ||
## Download from list of items | ||
Given a text file like | ||
``` | ||
10.1038/s41524-017-0032-0 | ||
10.1063/1.3149495 | ||
..... | ||
``` | ||
download all pdf's | ||
``` | ||
$ scihub2pdf -i dois.txt --txt | ||
``` | ||
Given a text file like | ||
``` | ||
Some Title 1 | ||
Some Title 2 | ||
..... | ||
``` | ||
download all pdf's | ||
``` | ||
$ scihub2pdf -i titles.txt --txt --title | ||
``` | ||
Given a text file like | ||
``` | ||
arXiv:1708.06891 | ||
arXiv:1708.06071 | ||
arXiv:1708.05948 | ||
..... | ||
``` | ||
download all pdf's | ||
``` | ||
$ scihub2pdf -i arxiv_ids.txt --txt | ||
``` | ||
----------------------------------------------------- | ||
@author: Bruno Messias | ||
@email: [email protected] | ||
|