Metadata-Version: 2.0
Name: arxiv-checker
Version: 1.2.7
Summary: Cross check the most recent arxiv mailing against a list of authors.
Home-page: https://github.com/adamdempsey90/arxiv-checker
Author: Adam M. Dempsey
Author-email: adamdemps@gmail.com
License: MIT
Keywords: arXiv science research journal
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Astronomy
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: bs4
Requires-Dist: requests

arxiv-checker
============

Cross-check a file of author names against the most recent axiv.org
mailing.

To install::

  pip install arxiv-checker

To check the names contained in authors.txt against the astro-ph, gq-qc, and
physics mailings:: 

  import arxivchecker
  arxivchecker.check_authors(['astro-ph', 'gr-qc', 'physics'], 'authors.txt')

To run straight from the command line::

    python -c "import arxivchecker; arxivchecker.check_authors(['astro-ph', 'gr-qc', 'physics'], 'authors.txt')

The Arxiv Checker requires the request, bs4, and re modules. 


