> For the complete documentation index, see [llms.txt](https://sryu1.gitbook.io/pysettings-manager/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sryu1.gitbook.io/pysettings-manager/home.md).

# Home

## Get Started

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