Metadata-Version: 2.1
Name: ansible-output-parser
Version: 0.0.6
Summary: Parser for Ansible output
Home-page: https://github.com/RockProfile/Ansible-Output-Parser
Author: Peter McDonald
Author-email: admin@rockprofile.com
Maintainer: Peter McDonald
Maintainer-email: admin@rockprofile.com
License: MIT
Keywords: ansible
Platform: 
Classifier: Development Status :: 4 - Beta
Description-Content-Type: text/x-rst
Provides-Extra: test
License-File: LICENSE

Ansible Parser
==============

The Ansible Parser is intended to parse the output that Ansible returns.

Installation
------------

Simply install using:

.. code-block:: sh

    pip install ansible-output-parser

Usage
-----

.. code-block:: python

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