Metadata-Version: 1.0
Name: argdeclare
Version: 0.4.10
Summary: Argdeclare is a declarative argument configurator for python's argparse.
Home-page: https://github.com/ixmatus/argdeclare
Author: Parnell Springmeyer
Author-email: parnell@ixmat.us
License: Copyright (c) 2013, Parnell Springmeyer

All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.

    * Redistributions in binary form must reproduce the above
      copyright notice, this list of conditions and the following
      disclaimer in the documentation and/or other materials provided
      with the distribution.

    * Neither the name of Parnell Springmeyer nor the names of other
      contributors may be used to endorse or promote products derived
      from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Description: # ardeclare
        
        An implementation of the interface provided by the cmdln module but
        using argparse to provide the option/arg heavy parsing.
        
        Credit for this code goes foremost to Shakeeb Alireza, code was
        initially found: [argdeclare: declarative interface to argparse](http://code.activestate.com/recipes/576935-argdeclare-declarative-interface-to-argparse/)
        
        # Usage
        
            from argdeclare import Commander, option_group, option, arg
            
            def test():
                # only for options which are repeated across different funcs
                common_options = option_group(
                    option('-t', '--type', action='store', help='specify type of package'),
                    arg('package', help='package to be (un)installed'),
                    option('--log', '-l', action='store_true', help='log is on')
                )
                
                class Application(Commander):
                    'a description of the test app'
                    name = 'app1'
                    version = '0.1'
                    default_args = ['install', '--help']
                    
                    @option('--log', '-l', action='store_true', help='log is on')
                    @arg('pattern', help="pattern to delete")
                    def do_delete(self, options):
                        "help text for delete subcmd"
                        print(options)
            
                    @option('-f', '--force', action='store_true',
                                    help='force through installation')
                    @common_options
                    def do_install(self, options):
                        "help text for install subcmd"
                        print(options)
            
                    @common_options
                    def do_uninstall(self, options):
                        "help text for uninstall subcmd"
                        print(options)
            
                app = Application()
                app.cmdline()
            
            if __name__ == '__main__':
                test()
        
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
