설명 없음

Fabian Peter Hammerle 05644cb8ef set module version 5 년 전
pubmed_bibtex 05644cb8ef set module version 5 년 전
tests 05644cb8ef set module version 5 년 전
.gitignore b5c5646230 added setup.py & pipenv for development 5 년 전
MANIFEST.in 83782b5fbc setup.py: read long description from readme 5 년 전
Pipfile b5c5646230 added setup.py & pipenv for development 5 년 전
Pipfile.lock b5c5646230 added setup.py & pipenv for development 5 년 전
README.md 83782b5fbc setup.py: read long description from readme 5 년 전
setup.py 83782b5fbc setup.py: read long description from readme 5 년 전

README.md

pubmed-bibtex

Python Script & Module to Generate BibTeX Entries for PubMed Publications

Utilizes the API of TeXMed, a BibTeX interface for PubMed.

TeXMed was written by Arne Muller https://www.bioinformatics.org/texmed/

Install

pip3 install --user pubmed-bibtex

Usage

$ pubmed-bibtex 31025164
@Article{pmid31025164,
   Author="...",
   Title="...",
   Journal="...",
   ...
}

or

from pubmed_bibtex import bibtex_entry_from_pmid
print(bibtex_entry_from_pmid(123456789))

Tests

pip3 install --user pipenv
git clone https://github.com/fphammerle/pubmed-bibtex.git
cd pubmed-bibtex
pipenv run pylint freesurfer_surface
pipenv run pytest --cov=freesurfer_surface