Skip to main content

Simple python json configuration file parser

Project description

Примеры использования:

config.py

from config_parser.parser import ConfigParser

parser = ConfigParser(file_path='/path/to/config.json')
DEBUG = parser.get_bool('system.debug', False)
ALLOWED_HOSTS = parser.get('system.allowed_hosts', ())

config.json

{
    "system": {
        "debug": "true",
        "allowed_hosts": [
            '127.0.0.1'
        ]
    }
}

Дополнительные примеры имеются в папке examples.

Добавление собственных преобразователей типов:

from config_parser.parser import ConfigParser

parser.register_conversion_handler('unicode', lambda value: str(value))

Затем для их использования:

parser.get_converted('test.value', 'unicode')

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py-config-parser-1.1.zip (7.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page