sryu1 / pysettings-manager

A python module for saving and loading settings

Home Page:https://sryu1.gitbook.io/pysettings-manager/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pysettings-manager

Python Versions PyPI Version PyPI downloads Code style: black

A python module for saving and loading settings

Get Started

Take a look at the documentation

pip install pysettings-manager
import pysettings_manager as pysm

value_1 = 1
value_two = "two"

pysm.save(config_file="settings.json", value_1=value_1, value_two=value_two)
one, two = pysm.load(config_file="settings.json", unpack=True)
print(one)
print(two)

If you find a bug, please report them in issues, pull requests are welcome :)

About

A python module for saving and loading settings

https://sryu1.gitbook.io/pysettings-manager/

License:MIT License


Languages

Language:Python 100.0%