Metadata-Version: 2.1
Name: ansible-output-parser
Version: 0.0.3
Summary: Parser for Ansible output
Home-page: UNKNOWN
Author: Peter McDonald
Author-email: admin@rockprofile.com
Maintainer: Peter McDonald
Maintainer-email: admin@rockprofile.com
License: MIT
Keywords: ansible
Platform: 
Provides-Extra: test
Requires-Dist: flake8 ; extra == 'test'
Requires-Dist: mypy ; extra == 'test'
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: twine ; extra == 'test'
Requires-Dist: wheel ; extra == 'test'

# Ansible Parser

Ansible Parser, as the name suggests parses the output from Ansible.

## Installation

Simply install using:

```sh
pip install ansible-output-parser
```

## Usage

```python
from ansible_parser.play import Play
play = "" # populate with play output
ansible = Play(play_output=play)
failures = ansible.failures()
```


