Metadata-Version: 2.1
Name: settingsjson
Version: 1.0.2
Summary: getter simple setting json
Home-page: https://github.com/74th/settingsjson-py
Author: 74th
Author-email: site@j74th.com
License: UNKNOWN
Description: # settingsjson.py
        
        [![PyPI](https://img.shields.io/pypi/v/settingsjson.svg)](https://pypi.org/project/settingsjson/)
        
        simple setting json getter
        
        ## how to use
        
        ```sh
        pip install settingsjson
        ```
        
        * write settings to `.settings.json`
        
        ```JSON
        {
        	"DB_PATH": "postgresql://user:secret@host:port/dbname"
        }
        ```
        
        * read settings from your apps
        
        ```py
        from sqlalchemy import create_engine
        import settingsjson
        
        settings = settingsjson.get()
        db = create_engine(settings["DB_PATH"])
        ```
        
        ```
        echo ".settings.json" >> .gitignore
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
