A Python library to save your settings in a TOML file.
Project description
Simple TOML Settings
A Python library to save your settings in a TOML file.
Development Status
Note that there is still additional functionality planned to be added to this package, but the methodology is to keep the package simple to use and understand. Any additional functionality will be added in a way that is backward compatible and optional.
The package is considered stable and is being used in production in several non-trivial applications.
Please report any bugs you find on the issue tracker and feel free to make suggestions for improvements.
Installation
You should install this package into a virtual environment. You can use Poetry to do this:
$ poetry add simple-toml-settings
If you don't want to use Poetry, you can use pip from inside your virtual environment:
$ pip install simple-toml-settings
Usage
This is a library to save your settings in a TOML file. It is designed to be simple to use and to be able to save and load settings from a TOML file with a minimal of configuration.
The below is a minimal example, for full documentation and information on available options, see the documentation site. There are several flags you can set to change the location of the settings file, the name of the file, allowing to run without a settings file, and more.
Usage is simple:
Setup
from simple_toml_settings import TOMLSettings
class MySettings(TOMLSettings):
"""My settings class."""
# Define the settings you want to save
name: str = "My Name"
age: int = 42
favourite_colour: str = "blue"
favourite_number: int = 42
favourite_foods: list = ["pizza", "chocolate", "ice cream"]
settings = MySettings("test_app")
The above will automatically create a TOML file in the user's home directory
called config.toml
, in the subdirectory .test_app/
, and save the settings to
it. If the file already exists, the settings will be loaded from it.
The file contents for the above example would be:
[test_app]
age = 42
favourite_colour = "blue"
favourite_number = 42
name = "My Name"
schema_version = "none"
favourite_foods = ["pizza", "chocolate", "ice cream"]
Using the settings
Once you have created your settings class, you can use it like any other class:
settings = MySettings("test_app")
settings.favourite_colour = "red"
settings.save()
Development setup
See the Contributing Guidelines for details of how to contribute to this project and set it up for development.
License
This project is released under the terms of the MIT license.
Credits
The original Python boilerplate for this package was created using Pymaker by Grant Ramsay (seapagan) (Me!! 😄).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file simple_toml_settings-0.8.0.tar.gz
.
File metadata
- Download URL: simple_toml_settings-0.8.0.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.5 Linux/6.8.0-40-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a04b65ea9ad2d32a18f34ccd4139f7c68b1f38988b582e03c4de65e60c4ff2b5 |
|
MD5 | 05d5d6417808f1b3ad430549723175d4 |
|
BLAKE2b-256 | 19580d5f2f639e7e64db3263c5783c62fe2ecb33bc3716dd1aa65ee212f3e30b |
File details
Details for the file simple_toml_settings-0.8.0-py3-none-any.whl
.
File metadata
- Download URL: simple_toml_settings-0.8.0-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.5 Linux/6.8.0-40-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 924f0be9ad926685716e10e09416a49572bfc9d554bfeba69a0d94bf0efce4c2 |
|
MD5 | 427530a57ad6551cb99c88ab08d92524 |
|
BLAKE2b-256 | 402ec20f225d89fdcda862118741136fc4751080b2e0ae5a0b52f4a85309f627 |