Metadata-Version: 1.1
Name: hcs
Version: 0.1.16
Summary: Hide console and execute applications in background
Home-page: https://github.com/RDCH106/hidden_console_start
Author: Rubén de Celis Hernández
Author-email: contact@rdch106.hol.es
License: MIT
Download-URL: https://github.com/RDCH106/hidden_console_start/archive/v0.1.16.tar.gz
Description: "
        
        Hidden Console Start ⚙️
        -----------------------
        
        Hide console and execute applications in background. HCS (Hidden Console
        Start) is a good alternative to simulate background process (process &)
        as in GNU/Linux systems.
        
        **GNU/Linux**
        
        ::
        
            $ ping 127.0.0.1 > log.txt &
        
        **Windows**
        
        ::
        
            $ hcs -e "ping 127.0.0.1 > log.txt"
        
        What can I do with HCS?
        ~~~~~~~~~~~~~~~~~~~~~~~
        
        -  Launch applications in background
        -  Launch all the processes that you want with one call to HCS (one
           subprocess in one thread for each application)
        
        Installation
        ~~~~~~~~~~~~
        
        You can install or upgrade HCS with:
        
        ``$ pip install hcs --upgrade``
        
        Or you can install from source with:
        
        .. code:: bash
        
            $ git clone https://github.com/RDCH106/hidden_console_start.git --recursive
            $ cd hidden_console_start
            $ pip install .
        
        Quick example
        ~~~~~~~~~~~~~
        
        .. code:: bash
        
            $ hcs -e "ping 127.0.0.1 > log.txt" "mspaint"
        
        The example executes ping to ``127.0.0.1`` redirecting the result to
        ``log.txt`` file and launch Microsoft Paint at the same time.
            
Keywords: background console windows gnu-linux
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
