Metadata-Version: 2.1
Name: class-utils
Version: 0.0.1
Summary: Utils for simplifying work with classes
Home-page: https://github.com/fly1ngDream/class-utils
Author: fly1ngDream
Author-email: fly1ngDream@protonmail.com
License: UNKNOWN
Description: ### Utils for simplifying work with classes
        
        #### Usage:
        
        `pip install class-utils`
        
        ---
        
        ##### default_property:
        
        ``` python
        from class_utils import default_property
        
        
        class Point():
            x = default_property('x')
            y = default_property('y')
        
            def __init__(self, x, y):
                self.x = x
                self.y = y
        
        
        point1.x = 3
        print(point1.x) # => 3
        ```
        
        ---
        
        ##### typed_property:
        
        ``` python
        from class_utils import typed_property
        
        
        class Person():
            name = typed_property('name', str)
        
            def __init__(self, name):
                self.name = name
        
        
        person1 = Person('Bill')
        print(person1.name) # => 'Bill'
        
        person1.name = 123 # => TypeError: name must be a <class 'str'>
        ```
        
        ---
        
        ##### DefaultRepresentationMixin:
        
        ``` python
        from class_utils import default_property, DefaultRepresentationMixin
        
        
        class Date(DefaultRepresentationMixin):
            day = default_property('day')
            month = default_property('month')
            year = default_property('year')
        
            def __init__(self, day, month, year):
                self.day = day
                self.month = month
                self.year = year
        
        
        date1 = Date(12, 12, 2012)
        print(date1) # => Date({'_day': 12, '_month': 12, '_year': 2012})
        ```
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
