معرفی شرکت ها


fspathtree-0.8


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

A small utility for wrapping trees (nested dict/list) that allows filesystem-like path access, including walking up with "../".
ویژگی مقدار
سیستم عامل -
نام فایل fspathtree-0.8
نام fspathtree
نسخه کتابخانه 0.8
نگهدارنده []
ایمیل نگهدارنده []
نویسنده CD Clark III
ایمیل نویسنده clifton.clark@gmail.com
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/fspathtree/
مجوز MIT
# FS Path Tree A simple class to allow filesystem-style path access to nested dict/list structures, including support for walking "up" the tree with '..'. Example: ```python config = fspathtree() config.update( { 'desc' : "example config" , 'time' : { 'N' : 50 , 'dt' : 0.01 } , 'grid' : { 'x' : { 'min' : 0 , 'max' : 0.5 , 'N' : 100 } , 'y' : { 'min' : 1 , 'max' : 1.5 , 'N' : 200 } } } ) # elements are accessed in the same was as a dict. assert config['desc'] == "example config" # sub-elements can also be accessed the same way. assert config['grid']['x']['max'] == 0.5 # but they can also be accessed using a path. assert config['grid/x/max'] == 0.5 # get a sub-element in the tree. x = config['grid/x'] # again, elements of grid/x are accessed as normal. assert x['max'] == 0.5 # but we can also access elements that are not in this branch. assert x['../y/max'] == 1.5 # or reference elements from the root of the tree. assert x['/time/N'] == 50 ``` ## Install You can install the latest release with `pip`. ``` $ pip install fspathtree ``` Or, even better, using `pipenv` ``` $ pipenv install fspathtree ``` ## Design The `fspathtree` is a small wrapper class that can wrap any nested tree data structure. The tree that is wrapped can be accessed with the `.tree` attribute. This is an improvement over the old `fspathdict.pdict` class, which stored nodes internally as `fspathdict.pdict` instances and required "converting" to and from the standard python dict and list types.


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

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


نحوه نصب


نصب پکیج whl fspathtree-0.8:

    pip install fspathtree-0.8.whl


نصب پکیج tar.gz fspathtree-0.8:

    pip install fspathtree-0.8.tar.gz