معرفی شرکت ها


case_class-0.0.8


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Scala-like CaseClasses for Python
ویژگی مقدار
سیستم عامل -
نام فایل case_class-0.0.8
نام case_class
نسخه کتابخانه 0.0.8
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Tom Wiesing
ایمیل نویسنده tkw01536@gmail.com
آدرس صفحه اصلی https://github.com/tkw1536/PythonCaseClass
آدرس اینترنتی https://pypi.org/project/case_class/
مجوز MIT
=============== PythonCaseClass =============== .. image:: https://travis-ci.org/tkw1536/PythonCaseClass.svg?branch=master :alt: Build Status :target: https://travis-ci.org/tkw1536/PythonCaseClass Zero-dependency scala-like case classes for Python 2 + 3. Features ======== * Simple usage: Just inherit from ``case_class.CaseClass`` * Simple Installation: Zero dependencies * plays well with inheritance * ``CaseClass`` and `AbstractCaseClass`` usable as a Mix-In * Case-to-case inheritance forbidden by default * use ``AbstractCaseClass`` to allow only subclasses to be instantiated * use ``InheritableCaseClass`` to override allow both super and subclasses to be instantiated.` * also plays well with Multiple Inheritance * ``super()`` calls still work as expected * equality based on arguments * calls constructor only once per combination of arguments * works with ``==`` operator and ``is`` (referential equality) operator. * automatic ``repr()`` function * works in both Python 2 and Python 3! Install ======= This package is published on the `Python Package Index <https://pypi.python.org/pypi/case_class>`_ Installation can be done simply via pip: .. code:: bash pip install case_class Alternatively, clone this repository and run setup.py: .. code:: bash git clone https://github.com/tkw1536/PythonCaseClass python setup.py install Examples ======== .. code:: python # Import the CaseClass module from case_class import CaseClass # Create a symbol case class class Symbol(CaseClass): def __init__(self, name): self.name = name # Create an instance x = Symbol("x") print(x) # Symbol('x') # And create another one also_x = Symbol('x') print(x == also_x) # equality via operator print(x is also_x) # referential equality Another example can be found in `example.py <example.py>`_. License + Acknowledgements ========================== This module and associated documentation is Copyright (c) Tom Wiesing 2016 and licensed under the MIT license, see `license <LICENSE>`_ for details. Small parts of the code are adapted from the `six <https://pypi.python.org/pypi/six>`_ module, which is Copyright (c) 2010-2015 Benjamin Peterson.


نحوه نصب


نصب پکیج whl case_class-0.0.8:

    pip install case_class-0.0.8.whl


نصب پکیج tar.gz case_class-0.0.8:

    pip install case_class-0.0.8.tar.gz