Metadata-Version: 2.1
Name: bibchk
Version: 0.1.6
Summary: Simple command line program to return the BibTeX string of a given DOI or ISBN.
Home-page: https://github.com/BibTheque/bibchk
Author: Doug Keller
Author-email: dg.kllr.jr@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# bibchk

Simple program to return the BibTeX string of a given DOI(s) or ISBN(s).

An example with a DOI and DOI URL:

```bash
$ bibchk 10.1002/2016JC011857 https://doi.org/10.1002/2016JC011857
@article{Houpert_2016,
	doi = {10.1002/2016jc011857},
	url = {https://doi.org/10.1002%2F2016jc011857},
	year = 2016,
	month = {nov},
	publisher = {American Geophysical Union ({AGU})},
	volume = {121},
	number = {11},
	pages = {8139--8171},
	author = {L. Houpert and X. Durrieu de Madron and P. Testor and A. Bosse and F. D{\textquotesingle}Ortenzio and M. N. Bouin and D. Dausse and H. Le Goff and S. Kunesch and M. Labaste and L. Coppola and L. Mortier and P. Raimbault},
	title = {Observations of open-ocean deep convection in the northwestern Mediterranean Sea: Seasonal and interannual variability of mixing and deep water masses for the 2007-2013 Period},
	journal = {Journal of Geophysical Research: Oceans}
}

@article{Houpert_2016,
	doi = {10.1002/2016jc011857},
	url = {https://doi.org/10.1002%2F2016jc011857},
	year = 2016,
	month = {nov},
	publisher = {American Geophysical Union ({AGU})},
	volume = {121},
	number = {11},
	pages = {8139--8171},
	author = {L. Houpert and X. Durrieu de Madron and P. Testor and A. Bosse and F. D{\textquotesingle}Ortenzio and M. N. Bouin and D. Dausse and H. Le Goff and S. Kunesch and M. Labaste and L. Coppola and L. Mortier and P. Raimbault},
	title = {Observations of open-ocean deep convection in the northwestern Mediterranean Sea: Seasonal and interannual variability of mixing and deep water masses for the 2007-2013 Period},
	journal = {Journal of Geophysical Research: Oceans}
}
```

or with an ISBN:

```bash
$ bibchk 0-486-60061-0
@book{9780486600611,
     title = {Fundamentals Of Astrodynamics},
    author = {Roger R. Bate and Donald D. Mueller and Jerry E. White},
      isbn = {9780486600611},
      year = {1971},
 publisher = {Courier Corporation}
}
```


