Crates.io | doi2bib |
lib.rs | doi2bib |
version | 0.2.0 |
source | src |
created_at | 2022-04-03 21:20:20.76091 |
updated_at | 2024-07-13 19:32:48.441367 |
description | Generate a bibtex entry from a doi. |
homepage | https://github.com/OpenByteDev/doi2bib |
repository | https://github.com/OpenByteDev/doi2bib |
max_upload_size | |
id | 561709 |
size | 44,753 |
Generate a bibtex entry from a doi.
let doi2bib = doi2bib::Doi2Bib::new().unwrap();
let bibtex = doi2bib.resolve_doi("10.1109/5.771073").await.unwrap();
println!("{}", bibtex);
// @article{Paskin_1999,
// title={Toward unique identifiers},
// volume={87},
// ISSN={0018-9219},
// url={http://dx.doi.org/10.1109/5.771073},
// DOI={10.1109/5.771073},
// number={7},
// journal={Proceedings of the IEEE},
// publisher={Institute of Electrical and Electronics Engineers (IEEE)},
// author={Paskin, N.},
// year={1999},
// month=jul,
// pages={1208–1227}
// }
Licensed under MIT license (LICENSE or http://opensource.org/licenses/MIT)