Metadata-Version: 1.1
Name: ansible-subprocess
Version: 0.1.0
Summary: Using Ansible from python subprocess.
Home-page: https://github.com/uehara1414/ansible-subprocess
Author: uehara1414
Author-email: UNKNOWN
License: MIT License
Description: # ansible-subprocess
        [![Build Status](https://travis-ci.org/uehara1414/ansible-subprocess.svg?branch=master)](https://travis-ci.org/uehara1414/ansible-subprocess)
        
        ansible-subprocess run Ansible dinamically via the subprocess module.
        
        ## Demo
        
        ```python
        from ansible_subprocess import run_playbook
        status, stdout, stderr = run_playbook('playbooks/sample.yml', 'web')
        status, stdout, stderr = run_playbook('playbooks/sample2.yml',
                                              ['127.0.0.1', '127.0.0.2'],
                                              extra_vars={'var1': 'hoge', 'var2': 'fuga'},
                                              extra_options=['--syntax-check'])
        status, stdout, stderr = run_ping('8.8.8.8')
        ```
        
        ## Installation
        
        ```bash
        pip install ansible-subprocess
        ```
        
        ## License
        [MIT](https://github.com/uehara1414/ansible-subprocess/blob/master/LICENSE)
Keywords: python Ansible subprocess
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
