معرفی شرکت ها


cans-0.1.3


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Robust, composable, functional containers
ویژگی مقدار
سیستم عامل -
نام فایل cans-0.1.3
نام cans
نسخه کتابخانه 0.1.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Arie Bovenberg
ایمیل نویسنده a.c.bovenberg@gmail.com
آدرس صفحه اصلی https://github.com/ariebovenberg/cans
آدرس اینترنتی https://pypi.org/project/cans/
مجوز MIT
🥫 Cans ======= .. image:: https://img.shields.io/pypi/v/cans.svg?style=flat-square :target: https://pypi.python.org/pypi/cans .. image:: https://img.shields.io/pypi/l/cans.svg?style=flat-square :target: https://pypi.python.org/pypi/cans .. image:: https://img.shields.io/pypi/pyversions/cans.svg?style=flat-square :target: https://pypi.python.org/pypi/cans .. image:: https://img.shields.io/readthedocs/cans.svg?style=flat-square :target: http://cans.readthedocs.io/ .. image:: https://img.shields.io/badge/code%20style-black-000000.svg?style=flat-square :target: https://github.com/psf/black Simple, functional, composable containers like ``Maybe``. Properly **typed** and supports **pattern matching** on Python 3.10+. Inspired by the containers in the `Rust standard library <https://doc.rust-lang.org/std/option/>`_. Quickstart ---------- .. code-block:: python3 >>> from cans import Just, Nothing, Maybe >>> greeting: Maybe[str] = Just("Hello") ... >>> def first(m: list[str]) -> Maybe[str]: ... return Just(m[0]) if m else Nothing() ... >>> first(["howdy", "hi", "hello"]).map(str.title).unwrap() "Howdy" ... >>> # Python 3.10+ only >>> match greeting: ... case Just(n): ... print(f"{greeting} world!") ... case Nothing(): ... print("Hi world!") Hello world! Among the supported methods are ``flatmap``, ``filter``, ``zip``, as well as the relevant `collection APIs <https://docs.python.org/3/library/collections.abc.html>`_. See `the documentation <https://cans.readthedocs.io>`_ for a complete overview. Todo ---- - Other containers


نیازمندی

مقدار نام
>=1.0,<2.0) importlib-metadata
>=0.8,<0.9) dataclasses
>=3.7.4,<4.0.0 typing-extensions


زبان مورد نیاز

مقدار نام
>=3.6,<4.0 Python


نحوه نصب


نصب پکیج whl cans-0.1.3:

    pip install cans-0.1.3.whl


نصب پکیج tar.gz cans-0.1.3:

    pip install cans-0.1.3.tar.gz