معرفی شرکت ها


argumentsprocessor-1.1.6


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

A Python module that process a dictionary of arguments against a supplied dictionary of expected arguments.
ویژگی مقدار
سیستم عامل -
نام فایل argumentsprocessor-1.1.6
نام argumentsprocessor
نسخه کتابخانه 1.1.6
نگهدارنده []
ایمیل نگهدارنده []
نویسنده James Johnson
ایمیل نویسنده james.johnson@excellentingenuity.com
آدرس صفحه اصلی https://github.com/excellentingenuity/argumentsprocessor
آدرس اینترنتی https://pypi.org/project/argumentsprocessor/
مجوز BSD New
ArgumentsProcessor ================== |Build Status| |Coverage Status| |PyPI version| |Flattr this git repo| A Python module that process a dictionary of arguments against a supplied dictionary of expected arguments. **Install** ``pip install argumentsprocessor`` **Documentation** ArgumentsProcessor Module :: Processes arguments according to a supplied dictionary containing expected arguments and rules. @includes: ArgumentsProcessor ArgumentsProcessorExceptions @requires: 'expected_arguments' = { -- categories are synonymous to the arguments you pass 'category_a' : { -- this is will be whatever you name your argument, see the example below 'arguments: ( 'hello', 'bye' ), 'required' : True || False, 'returns' : 'string' -- default is string but you may pass the string name of any python variable type or pass in a custom object }, 'category_b' : { arguments: ( 'data' ), 'required' : True || False, 'returns': 'string' -- default is string but you may pass the string name of any python variable type or pass in a custom object } } @return: arguments = { 'category_a':return_value, -- either the default string, any python type, or custom object passed in 'category_b':return_value, -- either the default string, any python type, or custom object passed in } @example: import ArgumentsProcessor class classy: expected_arguments = { 'mode': { 'arguments': ( 'encrypt', 'decrypt' ), 'required': True, 'return': 'string' }, 'data': { 'arguments': ( 'data' ), 'required': True, 'return': 'string' } } def __init__(self, mode, data): supplied_arguments = { 'mode':mode, 'data':data } arguments = ArgumentsProcessor(self.expected_arguments, s .. |Build Status| image:: https://travis-ci.org/excellentingenuity/argumentsprocessor.svg?branch=master :target: https://travis-ci.org/excellentingenuity/argumentsprocessor .. |Coverage Status| image:: https://img.shields.io/coveralls/excellentingenuity/argumentsprocessor.svg :target: https://coveralls.io/r/excellentingenuity/argumentsprocessor .. |PyPI version| image:: https://badge.fury.io/py/argumentsprocessor.svg :target: http://badge.fury.io/py/argumentsprocessor .. |Flattr this git repo| image:: http://api.flattr.com/button/flattr-badge-large.png :target: https://flattr.com/submit/auto?user_id=jsam84&url=https://github.com/excellentingenuity/argumentsprocessor&title=argumentsprocessor&language=GH_PROJECT_PROG_LANGUAGE&tags=github&category=software


نحوه نصب


نصب پکیج whl argumentsprocessor-1.1.6:

    pip install argumentsprocessor-1.1.6.whl


نصب پکیج tar.gz argumentsprocessor-1.1.6:

    pip install argumentsprocessor-1.1.6.tar.gz