معرفی شرکت ها


configdict-2.6.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

A supercharged dict used as configuration
ویژگی مقدار
سیستم عامل -
نام فایل configdict-2.6.0
نام configdict
نسخه کتابخانه 2.6.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Eduardo Moguillansky
ایمیل نویسنده eduardo.moguillansky@gmail.com
آدرس صفحه اصلی https://github.com/gesellkammer/configdict
آدرس اینترنتی https://pypi.org/project/configdict/
مجوز BSD
configdict ========== Documentation ------------- https://configdict.readthedocs.io Installation ------------ $ pip install configdict CheckedDict ----------- A dictionary based on a default prototype. A CheckedDict can only define ``key:value`` pairs which are already present in the default. It is possible to define a docstring for each key and different restrictions for the values regarding possible values, ranges and type. A CheckedDict is useful for configuration settings. ConfigDict ---------- Based on CheckedDict, a ConfigDict is a persistent, unique dictionary. It is saved under the config folder determined by the OS and it is updated with each modification. It is useful for implementing configuration of a module / library / app, where there is a default/initial state and the user needs to be able to configure global settings which must be persisted between sessions (similar to the settings in an application) Example ------- .. code-block:: python config = ConfigDict("myproj.subproj") config.addKey("keyA", 10, doc="documentaion of keyA") config.addKey("keyB", 0.5, range=(0, 1)) config.addKey("keyC", "blue", choices=("blue", "red"), doc="documentation of keyC") config.load() Alternatively, a ConfigDict can be created all at once: .. code-block:: python config = ConfigDict("myapp", default = { 'font-size': 10.0, 'font-family': "Monospace", 'port' : 9100, }, validator = { 'font-size::range' : (8, 24), 'port::range' : (9000, 65000), 'font-family::choices' : {'Roboto', 'Monospace'}, }, docs = { 'port': 'The port number to listen to', 'font-size': 'The size of the font, in pixels' } ) This will create the dictionary and load any persisted version. Any saved modifications will override the default values. Whenever the user changes any value (via ``config[key] = newvalue``) the dictionary will be saved. In all other respects a ConfigDict behaves like a normal dictionary.


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

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


نحوه نصب


نصب پکیج whl configdict-2.6.0:

    pip install configdict-2.6.0.whl


نصب پکیج tar.gz configdict-2.6.0:

    pip install configdict-2.6.0.tar.gz