Metadata-Version: 2.1
Name: shell_cmd
Version: 1.0.2
Summary: Execute shell commands
Home-page: UNKNOWN
Author: Arturo Fernandez
License: UNKNOWN
Project-URL: Code, https://github.com/bsnux/shell-cmd
Description: # shell-cmd Python package
        
        Simple wrapper for executing shell commands using just one Python function.
        
        ## Installation
        
        ```
        $ pip install shell_cmd
        ```
        
        ## Example
        
        ```
        from shell_cmd import sh
        
        
        # Printing output
        print(sh("ls -l"))
        
        # Getting output in a list
        ll = sh("ls -l", True)
        ```
        
        If error happens during the execution of the shell command, then `RunShellException`
        custom exception is raised.
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=2.7
Description-Content-Type: text/markdown
