معرفی شرکت ها


attribute-dict-1.0.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

A subclass of dict that allows object-style access to its entries
ویژگی مقدار
سیستم عامل -
نام فایل attribute-dict-1.0.0
نام attribute-dict
نسخه کتابخانه 1.0.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده JoBrad
ایمیل نویسنده -
آدرس صفحه اصلی https://github.com/JoBrad/attribute_dict
آدرس اینترنتی https://pypi.org/project/attribute-dict/
مجوز -
# attribute_dict A subclass of dict that allows object-style access to its entries. # Installation ```sh pipenv install attribute_dict ``` # Usage ```py from attribute_dict import AttributeDict sample_dict = AttributeDict({'foo': 'bar'}) sample_dict # => AttributeDict({'foo': 'bar'}) # The object is just subclassed from dict, and has all of the standard functions isinstance(sample_dict, dict) # => True # Create a new AttributeDict by "stacking" iterables # Each iterable will overwrite keys in the previous one (kwargs are processed last!) sample_dict = AttributeDict({'foo': 'foo'}, {'foo': 'ba', 'bar': 'foo'}, {'foo': 'bar'}, {'foobar': 'bar'}, foobar='foo') # => AttributeDict({'foo': 'bar', 'bar': 'foo', 'foobar': 'foo'}) # Create a new AttributeDict by shallow-copying an existing one new_sample_dict = sample_dict.copy() new_sample_dict # => AttributeDict({'foo': 'bar', 'bar': 'foo', 'foobar': 'foo'}) isinstance(new_sample_dict, AttributeDict) # => True # NOTE: Child values are NOT processed! sample_dict = AttributeDict({'foo': iterable_two}) sample_dict # => AttributeDict({'foo': {'foo': 'ba', 'bar': 'foo'}}) sample_dict.foo # => {'foo': 'ba', 'bar': 'foo'} sample_dict.__class__.__name__ # => 'AttributeDict' sample_dict.foo.__class__.__name__ # => 'dict' ``` # Tests Tests use nose2. Clone the Github project. Install dev dependencies, and run tests using the nose2 command. ```sh pipenv install --dev pipenv shell nose2 ```


نحوه نصب


نصب پکیج whl attribute-dict-1.0.0:

    pip install attribute-dict-1.0.0.whl


نصب پکیج tar.gz attribute-dict-1.0.0:

    pip install attribute-dict-1.0.0.tar.gz