معرفی شرکت ها


extendparser-0.3.1


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

ExtendParser extend stanrad ConfigParser for some functionality.
ویژگی مقدار
سیستم عامل -
نام فایل extendparser-0.3.1
نام extendparser
نسخه کتابخانه 0.3.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Ondřej Tůma
ایمیل نویسنده mcbig@zeropage.cz
آدرس صفحه اصلی https://github.com/ondratu/extendparser
آدرس اینترنتی https://pypi.org/project/extendparser/
مجوز BSD
extendparser ============ Extend parser is set of ``ConfigParser`` extensions. ``Get`` and ``Include`` extensions are added to one class ``ExtendParser``. For more details see source code, or use help. :copyright: 2018, see AUTHORS for more details :license: BSD, see LICENSE for more details Library ------- ExtendParser ~~~~~~~~~~~~ .. code:: python >>> from extendparser import ExtendParser >>> cp = ExtendParser() Include ~~~~~~~ Include class can append content from other configuration files. Let's have these configuration files: .. code:: ini # test.ini [main] string = value .include numbers.ini .. code:: ini # numbers.ini integer = 42 .include const.ini .. code:: ini # const.ini pi = 3.14 Here is the string buffer which ConfiguratinParser will read: .. code:: ini # test.ini [main] string = value # numbers.ini integer = 42 # const.ini pi = 3.14 Get ~~~ Get class has two smart methods ``get_option`` and ``get_section`` to get value(s) in any type you want. .. code:: python >>> from extendparser.get import Get >>> cp = Get() >>> print(cp.get_option("test", "number", target=int, fallback=1)) 1 >>> print(cp.get_option("test", "list", target=list, fallback=["a"], ... delimiter=',')) ['a'] >>> cp.add_section("test") >>> cp.set("test", "tuple", "a:b:c") >>> print(cp.get_option("test", "tuple", target=tuple, delimiter=':')) ('a', 'b', 'c') >>> print(cp.get_section("test", (("tuple", tuple, tuple(), ':'), ... ("string", str, "value")))) {'tuple': ('a', 'b', 'c'), 'string': 'value'} Environment ~~~~~~~~~~~ Environ module has two classes, which extend ``ConfigParser`` to read environment variables. There is ``EnvironFirst`` class, which read environment variables first, and then use original get method. .. code:: python >>> from os import environ >>> from configparser import ConfigParser >>> from extendparser.environ import EnvironFirst >>> cp = EnvironFirst() >>> cp.add_section("test") >>> cp.getint("test", "number", fallback=1) 1 >>> cp.set("test", "number", "7") >>> cp.getint("test", "number") 7 >>> environ["TEST_NUMBER"] = "42" >>> cp.getint("test", "number") 42 Next ``EnvironLast`` class use environment variable as fallback for original get method. .. code:: python >>> from os import environ >>> from configparser import ConfigParser >>> from extendparser.environ import EnvironLast >>> cp = EnvironLast() >>> cp.add_section("test") >>> cp.getfloat("test", "float", fallback=1.0) 1.0 >>> environ["TEST_FLOAT"] = "42" >>> cp.getfloat("test", "float", fallback=1) 42.0 >>> cp.set("test", "float", "3.14") >>> cp.getfloat("test", "float") 3.14 Installation ------------ .. code:: sh ~$ pip install extendparser


نحوه نصب


نصب پکیج whl extendparser-0.3.1:

    pip install extendparser-0.3.1.whl


نصب پکیج tar.gz extendparser-0.3.1:

    pip install extendparser-0.3.1.tar.gz