Metadata-Version: 2.1
Name: pyconverters-pubmedfetcher
Version: 0.5.54
Summary: Speech recognition converter based on DeepTranscript
Home-page: https://github.com/oterrier/pyconverters_pubmedfetcher/
Keywords: 
Author: Olivier Terrier
Author-email: olivier.terrier@kairntech.com
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: pymultirole-plugins>=0.5.0,<0.6.0
Requires-Dist: ratelimit
Requires-Dist: metapub
Requires-Dist: numpy
Requires-Dist: blingfire
Requires-Dist: lxml
Requires-Dist: flit ; extra == "dev"
Requires-Dist: pre-commit ; extra == "dev"
Requires-Dist: bump2version ; extra == "dev"
Requires-Dist: sphinx ; extra == "docs"
Requires-Dist: sphinx-rtd-theme ; extra == "docs"
Requires-Dist: m2r2 ; extra == "docs"
Requires-Dist: sphinxcontrib.apidoc ; extra == "docs"
Requires-Dist: jupyter_sphinx ; extra == "docs"
Requires-Dist: pytest>=7.1.0 ; extra == "test"
Requires-Dist: pytest-cov ; extra == "test"
Requires-Dist: pytest-flake8 ; extra == "test"
Requires-Dist: pytest-black ; extra == "test"
Requires-Dist: flake8==3.9.2 ; extra == "test"
Requires-Dist: tox ; extra == "test"
Provides-Extra: dev
Provides-Extra: docs
Provides-Extra: test

# pyconverters_pubmedfetcher

[![license](https://img.shields.io/github/license/oterrier/pyconverters_pubmedfetcher)](https://github.com/oterrier/pyconverters_pubmedfetcher/blob/master/LICENSE)
[![tests](https://github.com/oterrier/pyconverters_pubmedfetcher/workflows/tests/badge.svg)](https://github.com/oterrier/pyconverters_pubmedfetcher/actions?query=workflow%3Atests)
[![codecov](https://img.shields.io/codecov/c/github/oterrier/pyconverters_pubmedfetcher)](https://codecov.io/gh/oterrier/pyconverters_pubmedfetcher)
[![docs](https://img.shields.io/readthedocs/pyconverters_pubmedfetcher)](https://pyconverters_pubmedfetcher.readthedocs.io)
[![version](https://img.shields.io/pypi/v/pyconverters_pubmedfetcher)](https://pypi.org/project/pyconverters_pubmedfetcher/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pyconverters_pubmedfetcher)](https://pypi.org/project/pyconverters_pubmedfetcher/)

Fetch articles from Pubmed

## Installation

You can simply `pip install pyconverters_pubmedfetcher`.

## Developing

### Pre-requesites

You will need to install `flit` (for building the package) and `tox` (for orchestrating testing and documentation building):

```
python3 -m pip install flit tox
```

Clone the repository:

```
git clone https://github.com/oterrier/pyconverters_pubmedfetcher
```

### Running the test suite

You can run the full test suite against all supported versions of Python (3.8) with:

```
tox
```

### Building the documentation

You can build the HTML documentation with:

```
tox -e docs
```

The built documentation is available at `docs/_build/index.html.

