Nincs leírás

Fabian Peter Hammerle fd0d97db8b release v1.0.0 2 éve
.github c79bc34460 test against python3.10 2 éve
pubmed_bibtex c79bc34460 test against python3.10 2 éve
tests f750e08b53 replace requests with urllib.request 2 éve
.gitignore b5c5646230 added setup.py & pipenv for development 5 éve
.pylintrc 83b7919568 configure travis-ci: pipenv sync, pylint, pytest & report coverage to coveralls 5 éve
CHANGELOG.md 1e5a567919 release v1.0.0 2 éve
COPYING 06fb10c286 added GPLv3+ license 4 éve
MANIFEST.in 06fb10c286 added GPLv3+ license 4 éve
Pipfile c79bc34460 test against python3.10 2 éve
Pipfile.lock c79bc34460 test against python3.10 2 éve
README.rst ef00c8cd67 format code with black 2 éve
mypy.ini 8327983371 fix type hints; add mypy to test pipeline 2 éve
setup.py c79bc34460 test against python3.10 2 éve

README.rst

pubmed-bibtex
=============

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/psf/black
.. image:: https://github.com/fphammerle/pubmed-bibtex/workflows/tests/badge.svg
:target: https://github.com/fphammerle/pubmed-bibtex/actions
.. image:: https://coveralls.io/repos/github/fphammerle/pubmed-bibtex/badge.svg?branch=master
:target: https://coveralls.io/github/fphammerle/pubmed-bibtex?branch=master
.. image:: https://img.shields.io/pypi/v/pubmed-bibtex.svg
:target: https://pypi.org/project/pubmed-bibtex/#history
.. image:: https://img.shields.io/pypi/pyversions/pubmed-bibtex.svg
:target: https://pypi.org/project/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
-------

.. code:: sh

pip3 install --user pubmed-bibtex

Usage
-----

.. code:: sh

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

or

.. code:: python

from pubmed_bibtex import bibtex_entry_from_pmid
print(bibtex_entry_from_pmid(123456789))

Tests
-----

.. code:: sh

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