معرفی شرکت ها


attrbox-0.1.1


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Attribute-based data structures.
ویژگی مقدار
سیستم عامل -
نام فایل attrbox-0.1.1
نام attrbox
نسخه کتابخانه 0.1.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Metaist LLC
ایمیل نویسنده metaist@metaist.com
آدرس صفحه اصلی https://github.com/metaist/attrbox
آدرس اینترنتی https://pypi.org/project/attrbox/
مجوز MIT
# attrbox _Attribute-based data structures._ [![Build Status](https://img.shields.io/github/workflow/status/metaist/attrbox/CI?style=for-the-badge)](https://github.com/metaist/attrbox/actions) [![attrbox on PyPI](https://img.shields.io/pypi/v/attrbox.svg?color=blue&style=for-the-badge)](https://pypi.org/project/attrbox) [Changelog] - [Issues] - [Documentation] [changelog]: https://github.com/metaist/attrbox/blob/main/CHANGELOG.md [issues]: https://github.com/metaist/attrbox/issues [documentation]: https://metaist.github.io/attrbox/ ## Why? There are three things I repeatedly have to deal with: 1. `AttrDict` deals with shortcomings of the standard python `dict`: - You can use attribute syntax (`thing.prop` instead of `thing["prop"]`). - Instead of handling `KeyError` or using `.get(None)`, you can just get a `None` by default. - It's easy to merge nested `dict` objects using the `<<` operator. 2. `AttrList` lets you build a powerful container that can easily query attributes of its members. 3. `JSend` is a rough implementation of the [`JSend` sepecification](https://labs.omniti.com/labs/jsend) that makes it easy to create standard JSON responses. ## Install ```bash pip install attrbox ``` ## Example ```python import json from attrbox import AttrDict config = AttrDict() << json.load(open('test/example-appengine.json')) print(config.deployment.files["example-resource-file1"].sourceUrl) # => "https://storage.googleapis.com/[MY_BUCKET_ID]/example-application/example-resource-file1" ``` ## License [MIT License](https://github.com/metaist/attrbox/blob/main/LICENSE.md)


نیازمندی

مقدار نام
- setuptools


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

مقدار نام
>=3.8 Python


نحوه نصب


نصب پکیج whl attrbox-0.1.1:

    pip install attrbox-0.1.1.whl


نصب پکیج tar.gz attrbox-0.1.1:

    pip install attrbox-0.1.1.tar.gz