Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 270 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 270 Bytes

config_database

Simple code to use a database to store config files.

To install the dependencies:

pip install sqlalchemy

Usage:

from config import DatabaseConfig

config = DatabaseConfig('test_config')
config.set('key', 'value')
config.get('key')