Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mseri/doi2bib
Small CLI to get a bibtex entry from a DOI, an arXiv ID or a PubMed ID
https://github.com/mseri/doi2bib
arxiv bibtex doi hacktoberfest ocaml
Last synced: about 2 months ago
JSON representation
Small CLI to get a bibtex entry from a DOI, an arXiv ID or a PubMed ID
- Host: GitHub
- URL: https://github.com/mseri/doi2bib
- Owner: mseri
- License: mit
- Created: 2020-10-09T20:57:37.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-08-30T22:13:09.000Z (over 1 year ago)
- Last Synced: 2024-10-13T21:30:53.354Z (2 months ago)
- Topics: arxiv, bibtex, doi, hacktoberfest, ocaml
- Language: OCaml
- Homepage:
- Size: 264 KB
- Stars: 57
- Watchers: 3
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE
Awesome Lists containing this project
README
# doi2bib ![Build status](https://github.com/mseri/doi2bib/workflows/Main%20workflow/badge.svg)
Small CLI to get a bibtex entry from a DOI, an arXiv ID or a PubMed ID.Just so you know, there is now [Zotero BIB](https://zbib.org/) on the browser that can do this
(and more). I will keep maintaining `doi2bib` though, since it is an integral part my workflow.Usage:
$ doi2bib --help=plain
NAME
doi2bib - A little CLI tool to get the bibtex entry for a given DOI,
arXiv or PubMed ID.SYNOPSIS
doi2bib [OPTION]... [ID]ARGUMENTS
ID A DOI, an arXiv ID or a PubMed ID. The tool tries to automatically
infer what kind of ID you are using. You can force the cli to
lookup a DOI by using the form 'doi:ID' or an arXiv ID by using
the form 'arXiv:ID'. PubMed IDs always start with 'PMC'.OPTIONS
-f FILE, --file=FILE
With this flag, the tool reads the file and process its lines
sequentially, treating them as DOIs, arXiv IDs or PubMedIDs.
Errors will be printed on standard error but will not terminate
the operation.--help[=FMT] (default=auto)
Show this help in format FMT. The value FMT must be one of `auto',
`pager', `groff' or `plain'. With `auto', the format is `pager` or
`plain' whenever the TERM env var is `dumb' or undefined.-o OUTPUT, --output=OUTPUT (absent=stdout)
Append the bibtex output to the specified file. It will create the
file if it does not exist.--version
Show version information.EXIT STATUS
doi2bib exits with the following status:0 on success.
124 on command line parsing errors.
125 on unexpected internal errors (bugs).
BUGS
Report bugs to https://github.com/mseri/doi2bib/issuesIt will retrieve the bibtex entry, using the published details when possible.
## Examples of use
The bibtex entry is printed on standard output:
$ doi2bib 10.1007/s10569-019-9946-9
$ doi2bib 1902.00436
$ doi2bib arXiv:1609.01724
$ doi2bib PMC2883744The bibtex entry is saved in the `bibliography.bib` file:
$ doi2bib doi:10.4171/JST/226 -o "bibliography.bib"
This will create the file if not present or append the
bibliography to the file.You can batch-process lists of entries by listing them
line by line in a file and using the `--file` option.## Installation
Each release comes with attached binaries for windows, mac and linux. You can simply
unpack the binary and place in a folder accessible by your terminal of choice.## Troubleshooting
If on macos you get a `Library not loaded: /usr/local/opt/gmp/lib/libgmp.10.dylib`
failure, you will need to install `gmp`. Macports users can do it via `port install gmp`
and homebrew users via `breww install gmp`.## Building instruction
To build the package yourself, the most immediate way is tu use [opam](https://opam.ocaml.org/):
$ opam install doi2bib
To run the tests, clone this repository and from of the root of the project run
$ opam install --deps-only . # first time only
$ dune runtest -p doi2bib## API references
- [DOI content negotiarion](https://citation.crosscite.org/docs.html)
- [arXiv API](https://arxiv.org/help/api/index)