Command-line arXiv Papers Downloader. Citation extraction and PDF naming automation.
Project description
arXiv-dl
Command-line ArXiv & CVF Open Access Paper Downloader. [PyPI] [Source]
Disclaimer: This is a highly-opinionated CLI tool for downloading papers. It priorities ease of use for researchers. Obviously, this is not an official project.
What does it do?
- Support downloading papers from ArXiv, CVPR, ICCV, WACV via simple CLI.
- Support downloading speedup by using aria2c.
- Retrieve the paper's metadata such as:
- Title, Abstract, Year
- Authors
- Comments (Conference acceptance info)
- Repository URLs
BibTeX
Citation
- Automatically maintain a list of local papers and their metadata in a JSON file.
- Configure the desired download destination via an environment variable or a command-line argument.
- All downloaded papers will have standardized filename for easy browsing.
Why?
- Save time and effort to download and organize papers on your machine.
- Speedup downloading process by using multiple parallel connections.
- Local paper list would be handy for quick local lookup, making notes, and doing citations.
How to install it?
This is a command-line tool, simply use pip
to install the package globally, then you are good to go!
- Pre-requisite:
Python 3.x
python3 -m pip install --upgrade arxiv-dl
NOTE: After installation, you need to ensure the installation path is included in your PATH variable. If you encounter any difficulty finding / setting the PATH, there is this recommended way of installing stand alone command line tools, kindly follow its instruction when installing arxiv-dl
.
Optionally, install aria2c for download speedup.
- MacOS:
brew install aria2
- Linux:
sudo snap install aria2c
How to use it?
After installation, you may use the command paper
in your shell to download papers. (You may also use the getpaper
or arxiv-dl
command, they are all equivalent.)
$ paper [-h] [-v] [-p] [-d DOWNLOAD_DIR] [-n N_THREADS] urls [urls ...]
Options:
-v
,--verbose
(optional): Print paper metadata.-p
,--pdf_only
(optional): Download PDF only without creating Markdown notes-d
,--download_dir
(optional): Specify one-time download directory. This option will override the default download directory or the one specified in the environment variableARXIV_DOWNLOAD_FOLDER
.-n
,--n_threads
(optional): Specify the number of parallel connections to be used byaria2
.
Usage Examples:
# Use a paper's ArXiv ID
$ paper 1512.03385
# You can download multiple papers at once
$ paper 1512.03385 2103.15538 2304.04415
# Use ArXiv URL (either abstract page or PDF page URL works!)
$ paper https://arxiv.org/abs/2103.15538
# Use ArXiv URL (either abstract page or PDF page URL works!)
$ paper https://arxiv.org/pdf/1512.03385.pdf
# Use CVF Open Access URL (either abstract page or PDF page URL works!)
$ paper "https://openaccess.thecvf.com/content/CVPR2021/html/Lin_Real-Time_High-Resolution_Background_Matting_CVPR_2021_paper.html"
Configurations
Default Download Destination
- Without any configurations, all paper will be downloaded to
$HOME/Downloads/ArXiv_Papers
.
Set Your Custom Download Destination (Optional)
You may configure your preferred download destination once and for all via an environment variable. This will override the default download destination. To do that, include the following line in your .bashrc
or .zshrc
file:
export ARXIV_DOWNLOAD_FOLDER="YOUR/PATH/TO/ANY/FOLDER"
- Every time you use the
paper
command, the download destination will be set to the following order of priority:- Command-line option
-d
- Environment variable
ARXIV_DOWNLOAD_FOLDER
- Default download destination
- Command-line option
Set Custom Command Alias (Optional)
- You can always set your own preferred alias to rename the command or add more options.
- Include the following line(s) in your
.bashrc
or.zshrc
file to set your preferred alias:alias dp="paper" alias dpv="paper -v -d '~/Documents/Papers'"
Development
Set up development environment
python3 -m venv venv && \
source venv/bin/activate && \
pip install -e ".[dev]"
Run Tests
pytest
Build the package
make
Clean cache & build artifacts
make clean
TODOs
- Add support for ara2c.
- Add support for papers on CVF Open Access.
- Add support for papers on OpenReview.
License
MIT License - Copyright (c) 2021-2023 Mark Huang
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file arxiv-dl-1.1.5.tar.gz
.
File metadata
- Download URL: arxiv-dl-1.1.5.tar.gz
- Upload date:
- Size: 20.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0dd115f6c2cd4ea0612fc131d60953f29e0838c74a5da8616f378150d971881 |
|
MD5 | 76957ac6497b84c360f378335466483a |
|
BLAKE2b-256 | 52cb165d9a89b0ea0cfe263f7e09d5785ae50a0084b916b76e91710cc4049fc4 |
File details
Details for the file arxiv_dl-1.1.5-py3-none-any.whl
.
File metadata
- Download URL: arxiv_dl-1.1.5-py3-none-any.whl
- Upload date:
- Size: 21.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3070dc4b1bfa58e247892631828dceed36bce1b41e3fe5b60029415c5992dcdd |
|
MD5 | 631b62e9dd2508ebddf7f22f51af4093 |
|
BLAKE2b-256 | a2bf9860f0f8ab902fd6901bcd1f74eefa5dd3d7c3cd11b628ac2952fe1b7ed6 |