Metadata-Version: 1.2
Name: clilabs
Version: 1.1.1
Summary: Cheap CLI framework, gives rich commands for Django
Home-page: https://yourlabs.io/oss/clilabs
Author: James Pic
Author-email: jamespic@gmail.com
License: MIT
Description: clilabs: the python CLI that gets things done.
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        Sometimes I want to execute a python callback with some args on the command
        line, but i get frustrated that it always requires to wrap my command in a
        wrapper of some sort. Clilabs unfrustrates me.
        
        Install::
        
        $ pip install clilabs
        
        Help::
        
            $ clilabs
            clilabs automates python callables parametered calls.
        
            Things starting with - will arrive in clilabs.context.
        
            Examples:
        
                clilabs help your.mod:main
                clilabs debug your.mod -a --b --something='to see' how it=parses
                clilabs your.mod:funcname with your=args
                clilabs help clilabs.django
                clilabs clilabs.django:list auth.user
                clilabs +django:list auth.user  # also works
        
        Demo::
        
            $ clilabs debug your.mod:yourfunc -a --b --something='to see' how it=parses
            Could not import your.mod
            Args: ('how',)
            Kwargs: {'it': 'parses'}
            Context args: ['a', 'b']
            Context kwagrs: {'something': 'to see'}
        
        Moar in tutorial.md
        
Keywords: django cli
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Plugins
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Database
Classifier: Topic :: Software Development
Classifier: Topic :: System
Classifier: Topic :: Terminals
Requires-Python: >=3
