Metadata-Version: 2.1
Name: pysettings-manager
Version: 0.1.2
Summary: A python module for saving and loading settings
Project-URL: Homepage, https://github.com/sryu1/pysettings-manager
Project-URL: Bug Tracker, https://github.com/sryu1/pysettings-manager/issues
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# pysettings-manager

[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

A python module for saving and loading settings

## Get Started

```console
pip install pysettings-manager
```

```python
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 :)
