معرفی شرکت ها


ConfigViper-0.5


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Handles configuration saved as JSON files.
ویژگی مقدار
سیستم عامل -
نام فایل ConfigViper-0.5
نام ConfigViper
نسخه کتابخانه 0.5
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Daniel Gonçalves
ایمیل نویسنده daniel@base4.com.br
آدرس صفحه اصلی https://bitbucket.org/danielgoncalves/configviper
آدرس اینترنتی https://pypi.org/project/ConfigViper/
مجوز LGPL
=========== ConfigViper =========== ConfigViper is a set of `Python`_ classes for handling configuration files saved in `JSON`_ format. For example:: from configviper import ConfigViper ConfigViper.configure() conf = ConfigViper() conf.set('spam.ham.eggs', 'sausage') And the JSON file will looks like:: { "spam": { "ham": { "eggs": "sausage" } } } Goals ----- #. Simple to define default values (avoiding "defaults" everywhere); #. Simple to write converters between Python and JSON types (even for complex Python types); #. Human editable format (JSON is readable enough); #. Portable configuration format (JSON is portable enough); #. Easy to add configuration options without destroying existing ones; #. Accessible anywhere in the app code (avoiding singleton's boring discussions); #. Small and really simple. Installation ------------ Install ConfigViper using ``pip install ConfigViper`` command. If you downloaded the sources from `PyPI`_ go to ``ConfigViper-<version>`` directory and type ``python setup.py install`` command. You can also get the sources from `BitBucket`_ repository (you will need `Mercurial SCM`_ installed on your system):: hg clone https://bitbucket.org/danielgoncalves/configviper More Documentation ------------------ For usage example and more information, please refer to the `documentation <http://packages.python.org/ConfigViper>`_ available on-line. Licensing --------- ConfigViper is licensed under GNU's `LGPL`_. Change History -------------- Version 0.1 ^^^^^^^^^^^ * Released 12 march 2012. Version 0.2 ^^^^^^^^^^^ * Released 18 march 2012; * Documentation hosted on PyPI. Version 0.3 ^^^^^^^^^^^ * Released 14 april 2012; * Default config-path separator changed from ``/`` to ``.``; * Configuration values can be accessed like object attributes:: # using the get() method conf.get('spam.ham.eggs') # or like object attributes conf.spam.ham.eggs Version 0.3.1 ^^^^^^^^^^^^^ * Released 18 april 2012; * [FIXED] No conversion was happening when config-paths are accessed like object attributes; * Only one proxy instance is created when accessing config-paths like object attributes; * Some more unit tests added. Version 0.4 ^^^^^^^^^^^ * Released 25 april 2012; * [ADDED] Stop saving (or bulk set) feature; * [ADDED] Backup before save with automatic restore on failure (optional). Version 0.5 ^^^^^^^^^^^ * Released 24 august 2013; * [ADDED] Sub-package to support cross-platform file locking based on fcntl on POSIX systems or using ctypes on Windows (no support for 95/98/ME); * [ADDED] File lock on write operations; * [ADDED] Support for logging; * [ADDED] Support for file encodings (or no explicit encoding); * [ADDED] Use UTF-8 as default file encoding; * [CHANGED] Re-implementation of save operation attempting to minimize concurrent-access issues; * [REMOVED] Backup options; .. _`Python`: http://www.python.org/ .. _`JSON`: http://www.json.org/ .. _`LGPL`: http://www.gnu.org/licenses/lgpl.html .. _`PyPI`: http://pypi.python.org/pypi/ConfigViper .. _`BitBucket`: http://www.bitbucket.org/ .. _`Mercurial SCM`: http://mercurial.selenic.com/


نحوه نصب


نصب پکیج whl ConfigViper-0.5:

    pip install ConfigViper-0.5.whl


نصب پکیج tar.gz ConfigViper-0.5:

    pip install ConfigViper-0.5.tar.gz