Metadata-Version: 1.1
Name: simple_terminal
Version: 0.6
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: ![alt tag](https://travis-ci.org/seanchon/simple_terminal.svg?branch=master)
        
        # 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')
        ```
        
        ## Motivation
        This library exists to run terminal commands from within a script 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
