معرفی شرکت ها


argdeclare-0.5.6


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Argdeclare is a declarative argument configurator for python's argparse.
ویژگی مقدار
سیستم عامل -
نام فایل argdeclare-0.5.6
نام argdeclare
نسخه کتابخانه 0.5.6
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Parnell Springmeyer
ایمیل نویسنده parnell@ixmat.us
آدرس صفحه اصلی https://github.com/ixmatus/argdeclare
آدرس اینترنتی https://pypi.org/project/argdeclare/
مجوز 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.
# 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()


نحوه نصب


نصب پکیج whl argdeclare-0.5.6:

    pip install argdeclare-0.5.6.whl


نصب پکیج tar.gz argdeclare-0.5.6:

    pip install argdeclare-0.5.6.tar.gz