A Python wrapper for the bioRxiv API.
$ pip install biorxiv-cli
You can use bioRxiv-CLI
as a CLI to navigate bioRxiv or as a library to
query its API.
Currently bioRxiv-CLI
implements one subcommand:
$ biorxiv read SUBJECTS
This will print the titles of the 30 most recent posts in one of the comma-separated subjects. For example:
If no subjects were given, it will assume by default that all subjects were selected.
The previous CLI is built on top of a Python library that can be used on its own to query bioRxiv's API. For example:
>>> from biorxiv_cli import Client
>>> client = Client()
>>> client.read([SUBJECTS])
will achieve the same effect as
$ biorxiv read SUBJECTS
Jacopo Notarstefano (@Jaconotar)
MIT