├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── pyarxiv ├── __init__.py └── arxiv_categories.py ├── requirements.dev.txt ├── requirements.txt ├── scripts ├── pyarxiv-cli └── scrape_categories.py ├── setup.cfg ├── setup.py ├── test.sh └── tests ├── __init__.py ├── test_arxiv_categories.py ├── test_download.py ├── test_parse.py └── test_query.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thechrisu/pyarxiv/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thechrisu/pyarxiv/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thechrisu/pyarxiv/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thechrisu/pyarxiv/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thechrisu/pyarxiv/HEAD/README.md -------------------------------------------------------------------------------- /pyarxiv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thechrisu/pyarxiv/HEAD/pyarxiv/__init__.py -------------------------------------------------------------------------------- /pyarxiv/arxiv_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thechrisu/pyarxiv/HEAD/pyarxiv/arxiv_categories.py -------------------------------------------------------------------------------- /requirements.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thechrisu/pyarxiv/HEAD/requirements.dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-dateutil 2 | feedparser 3 | -------------------------------------------------------------------------------- /scripts/pyarxiv-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thechrisu/pyarxiv/HEAD/scripts/pyarxiv-cli -------------------------------------------------------------------------------- /scripts/scrape_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thechrisu/pyarxiv/HEAD/scripts/scrape_categories.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thechrisu/pyarxiv/HEAD/setup.py -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thechrisu/pyarxiv/HEAD/test.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_arxiv_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thechrisu/pyarxiv/HEAD/tests/test_arxiv_categories.py -------------------------------------------------------------------------------- /tests/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thechrisu/pyarxiv/HEAD/tests/test_download.py -------------------------------------------------------------------------------- /tests/test_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thechrisu/pyarxiv/HEAD/tests/test_parse.py -------------------------------------------------------------------------------- /tests/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thechrisu/pyarxiv/HEAD/tests/test_query.py --------------------------------------------------------------------------------