Metadata-Version: 1.1
Name: simple-terminal
Version: 1.1.0
Summary: A simple way to run terminal commands within a Python script.
Home-page: http://github.com/seanchon/simple_terminal/
Author: Sean Chon
Author-email: s@seanchon.com
License: MIT
Description: [<img src="https://travis-ci.org/seanchon/simple_terminal.svg?branch=master">](https://travis-ci.org/seanchon/simple_terminal)
        [<img src="https://img.shields.io/pypi/pyversions/simple-terminal.svg">](https://pypi.python.org/pypi/simple_terminal)
        
        # simple_terminal
        A simple way to run terminal commands within a Python script.
        
        
        ## Code Example
        ```python
        from simple_terminal import Terminal
        
        terminal = Terminal()
        
        results = terminal.command('ls')
        ```
        
        or
        
        ```python
        
        from simple_terminal import Terminal
        
        with Terminal() as terminal:
          results = terminal.command('ls')
        ```
        
        ## Motivation
        This library exists to run terminal commands from within a script and capture stdout to create easier automation of commonly performed tasks.
        
        ## Installation
        pip install simple_terminal
        
        ## License
        MIT
        
Keywords: linux terminal cli
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
