-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Steven Lang <steven.lang.mz@gmail.com>
- Loading branch information
1 parent
4409178
commit 4f71d36
Showing
1 changed file
with
28 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 |
---|---|---|
@@ -1 +1,29 @@ | ||
# arxiv-downloader: The ArXiv PDF Command Line Interface Downloader | ||
|
||
## Installation | ||
|
||
Arxiv-downloader is available via PyPi: | ||
|
||
``` sh | ||
pip install arxiv-downloader | ||
``` | ||
|
||
## Usage | ||
|
||
``` sh | ||
> arxiv-downloader -h | ||
|
||
usage: arxiv-downloader [-h] [--url URL] [--id ID] [--directory DIRECTORY] [--source] | ||
|
||
ArXiv Paper Downloader. | ||
|
||
optional arguments: | ||
-h, --help show this help message and exit | ||
--url URL, -u URL ArXiv article URL. | ||
--id ID, -i ID ArXiv article ID (for https://arxiv.org/abs/2004.13316 this would be | ||
2004.13316). | ||
--directory DIRECTORY, -d DIRECTORY | ||
Output directory. | ||
--source, -s Whether to download the source tar file. | ||
``` | ||
|