Metadata-Version: 2.1
Name: flask-cfg
Version: 0.0.3
Summary: A little package for loading Flask configurations from YAML files.
Home-page: https://github.com/ikumen/flask-cfg
Author: Thong Nguyen
Author-email: thong@gnoht.com
License: UNKNOWN
Description: ===========
        flask-cfg
        ===========
        
        A little package for loading Flask configurations from YAML files. Comes 
        with an abstract class with base functionality for loading YAML base 
        configurations. You can extend the base functionality to dynamically load
        additional configurations (e.g. from a database). Typical usage looks like
        this::
        
            from flask import Flask
            from flask_cfg import AbstractConfig, SimpleConfig
        
            app = Flask() 
            config = SimpleConfig(default_conf_paths='default.yaml', 
                override_conf_paths='some/path/staging.yaml',
                secret_conf_paths='instance/local.yaml')
            app.config.from_object(config.to_object())
        
        Dependencies
        ===========
        Here are some requirements:
        * [YAML](https://github.com/yaml/pyyaml)
        * [pytest](https://docs.pytest.org/en/latest/) for testing only
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
