Metadata-Version: 2.4
Name: pyconverters-newsml
Version: 0.5.250
Summary: NewsML converter (AFP news)
Home-page: https://github.com/oterrier/pyconverters_newsml/
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
License-File: LICENSE
Requires-Dist: pymultirole-plugins>=0.5.0,<0.6.0
Requires-Dist: pandas>=1.2.3,<=1.3.5
Requires-Dist: openpyxl==3.0.7
Requires-Dist: beautifulsoup4
Requires-Dist: inscriptis==1.2
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.0.0 ; extra == "test"
Requires-Dist: pytest-cov ; extra == "test"
Requires-Dist: pytest-flake8 ; extra == "test"
Requires-Dist: pytest-black ; extra == "test"
Requires-Dist: requests_cache ; extra == "test"
Requires-Dist: flake8==3.9.2 ; extra == "test"
Requires-Dist: tqdm ; extra == "test"
Requires-Dist: tox ; extra == "test"
Requires-Dist: pymongo ; extra == "test"
Requires-Dist: ssh_pymongo ; extra == "test"
Requires-Dist: scikit-learn ; extra == "test"
Requires-Dist: requests_cache==0.7.5 ; extra == "test"
Requires-Dist: requests-futures==1.0.0 ; extra == "test"
Requires-Dist: bidict ; extra == "test"
Requires-Dist: pyenchant ; extra == "test"
Requires-Dist: deepl ; extra == "test"
Requires-Dist: reverso-api ; extra == "test"
Requires-Dist: python-Levenshtein ; extra == "test"
Requires-Dist: thefuzz[speedup] ; extra == "test"
Provides-Extra: dev
Provides-Extra: docs
Provides-Extra: test

# pyconverters_newsml

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

Fetch articles from Pubmed

## Installation

You can simply `pip install pyconverters_newsml`.

## 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_newsml
```

### 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.

