Metadata-Version: 2.1
Name: xmltotabular
Version: 0.4
Summary: Covert XML to tabular data according to YAML configuration
Home-page: https://github.com/simonwiles/xmltotabular
Author: Simon Wiles
Author-email: simonjwiles@gmail.com
License: UNKNOWN
Description: # xmltotabular
        
        [![PyPI](https://img.shields.io/pypi/v/xmltotabular.svg)](https://pypi.org/project/xmltotabular/)
        [![License](https://img.shields.io/github/license/simonwiles/xmltotabular)](https://github.com/simonwiles/xmltotabular/blob/main/LICENSE)
        [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
        
        Python library for converting XML to tabular data.
        
        ## Development
        
        With a working version of Python >= 3.6 and Pipenv:
        
        1. Install dependencies.  
           _(note that a `Pipfile.lock` is not included in this repository -- this library should work with any dependency versions which satisfy what is listed in the `Pipfile` and `setup.py`, and any necessary pinning should be specified in both)_
        
           ```
           $ pipenv install --dev
           ```
        
        2. Install pre-commit hooks.
           ```
           $ pipenv run pre-commit install
           ```
        
        ### Testing
        
        - Linting and formatting.
        
          ```
          $ pipenv run pre-commit run --all-files
          ```
        
        - Tests
        
          ```
          $ pipenv run pytest
          ```
        
        - Coverage
        
          To collect coverage execution data, use:
        
          ```
          $ pipenv run coverage run -m pytest
          ```
        
          and to get a report on the data, use:
        
          ```
          $ pipenv run coverage report -m
          ```
        
          or
        
          ```
          $ pipenv run coverage html
          ```
        
          to create an HTML report in `htmlcov/`.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Requires-Python: >=3.6
Description-Content-Type: text/markdown
