معرفی شرکت ها


dialogue.multi-method-0.0.5


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

-
ویژگی مقدار
سیستم عامل -
نام فایل dialogue.multi-method-0.0.5
نام dialogue.multi-method
نسخه کتابخانه 0.0.5
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Hugo Duncan
ایمیل نویسنده hugo.duncan@dialogue.co
آدرس صفحه اصلی https://github.com/dialoguemd/multi-method
آدرس اینترنتی https://pypi.org/project/dialogue.multi-method/
مجوز -
======================= dialogue.multi-method ======================= A small library to provide multi-methods. All functions are in the `dialogue.multi_method` package. To create a multi-method, create a dispatch function, that takes the arguments and returns a hashable value, that is used to dispatch on. Use the `@multi` function annotation to annotate the function. For each value of the dispatch function that you want to be handled differently, create a method with that dispatch value. You can define a method with no dispatch value, that becomes the default method if no other method is defined for a dispatch value. An example:: @multi def number(x): return x @method(number, 1) def number_one(x): return 'one' @method(number) def number_other(x): return "not one, but "+ str(c) assert number(1) == 'one' assert number(0) == 'not one, but 0' The dispatch function is available, e.g. for testing:: assert dispatch_fn(number)('x') == 'x'


نحوه نصب


نصب پکیج whl dialogue.multi-method-0.0.5:

    pip install dialogue.multi-method-0.0.5.whl


نصب پکیج tar.gz dialogue.multi-method-0.0.5:

    pip install dialogue.multi-method-0.0.5.tar.gz