Metadata-Version: 1.1
Name: ec
Version: 0.1.4
Summary: ec - a simpler, yet better implementation of Commander, a module launcher.
Home-page: https://github.com/Laufire/ec
Author: Laufire Technologies
Author-email: laufiretechnologies@gmail.com
License: MIT
Description: ec
        ===
        
        ec - a simpler, yet better implementation of Commander, a module launcher.
        
        * Free software: MIT license
        
          **Note: The docs serve as a reference, as well as act as a design guide throught the alpha version. Hence incase of an inconsistency, assume it as a work in progress.**
          
        A simple example
        -----------------
        from: `simple.py <https://github.com/Laufire/ec/blob/master/scripts/examples/simple.py>`_
        
        .. code-block:: python
          :linenos:
          
          from ec.ec import start, task, arg, group
        
          @task # define a task
          @arg('arg1', type=int, desc= 'Value for arg1') # add an argument with a type and description
          @arg('arg2', type=int)
          def task1(arg1, arg2=1):
            print arg1, arg2
        
          @group(desc = 'Description for group1.') # define a group
          class group1:
            @task
            @arg('arg1')
            def task1(arg1): # define a task inside the group
              print arg1 + arg1
        
          start()
        
        **Execute a task:** *<dispatch mode>*
        
        From the command-line enter
        
        .. code-block:: bash
        
          $ python simple.py task1 arg1=1 arg2=2
            1 2
            
          $ python simple.py group1/task1 arg1=1
            2
            
        **Interactively execute tasks:** *<shell mode>*
        
        From the command-line enter
        
        .. code-block:: bash
        
          $ python simple.py # this will enter into ec-shell
        	
        	>task1
        	Value for arg1: 1
        	arg2 (1): 2
        	1 2
        	
        	>group1/task1 # execute task1 under group1
        	arg1: 1
        	11
        	
        	>task1 arg1=1 # arguments can be given while calling the task, the missing arguments will be collected from the user
        	arg2 (1): 2
        	1 2
        	
        	>^Z # exit the shell
        
        
        Detailed docs could be found at `PyDocs <http://pythonhosted.org/ec/>`_.
        
Keywords: ec command line cli interactive launch argument script dir shell dispatch
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
