├── LICENSE ├── README.md ├── arXiv_download └── __init__.py ├── bin └── arXiv ├── requirements.txt └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvskand/arXiv_download/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvskand/arXiv_download/HEAD/README.md -------------------------------------------------------------------------------- /arXiv_download/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python -------------------------------------------------------------------------------- /bin/arXiv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvskand/arXiv_download/HEAD/bin/arXiv -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | feedparser 2 | docopt 3 | 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvskand/arXiv_download/HEAD/setup.py --------------------------------------------------------------------------------