#bibtex #doi #bibliography #biblatex

doi2bib

Generate a bibtex entry from a doi

7 releases

0.1.6 Jun 7, 2023
0.1.5 Nov 19, 2022
0.1.4 Sep 11, 2022
0.1.3 Jul 9, 2022
0.1.0 Apr 3, 2022

#2 in #doi

Download history 16/week @ 2024-02-19 32/week @ 2024-02-26 49/week @ 2024-03-04 23/week @ 2024-03-11 31/week @ 2024-03-18 36/week @ 2024-04-01 18/week @ 2024-04-08 65/week @ 2024-04-22 34/week @ 2024-04-29

119 downloads per month
Used in bibget

MIT license

12KB
87 lines

doi2bib

CI crates.io Documentation dependency status MIT

Generate a bibtex entry from a doi.

Usage

let doi2bib = doi2bib::Doi2Bib::new().unwrap();
let bibtex = doi2bib.resolve_doi("10.1109/5.771073").await.unwrap();
println!("{}", bibtex);
// @article{Yu_2013,
//     doi = {10.1038/nature12097},
//     url = {https://doi.org/10.1038%2Fnature12097},
//     year = 2013,
//     month = {apr},
//     publisher = {Springer Science and Business Media {LLC}},
//     volume = {497},
//     number = {7448},
//     pages = {196--197},
//     author = {Shannon F. Yu and Mary K. Baylies},
//     title = {Death brings new life to muscle},
//     journal = {Nature}
// }

License

Licensed under MIT license (LICENSE or http://opensource.org/licenses/MIT)

Dependencies

~5–18MB
~276K SLoC