Skip to main content

Simple object-oriented config library, where your settings are objects

Project description

object-settings

Simple-to-use object-oriented Python config library, where your settings are objects.

Their values have automatic validation and get saved to a file that's seamlessly written and read in the background, so you don't have to worry about any of it. This makes it quick to define and use settings (see examples below).

Installation & usage

This package is on PyPi, so you can just do pip install object-settings

After which it will be available with just the module name settings

import settings
settings.setup("Your app name")

your_option1 = settings.Toggle("Your first option label")
your_option2 = settings.Number("Your second option label")

Simple objects

For example, you can set a font size at the top of your ui file:

font = settings.Number(default=14)

...
someuilib.Label("Bababooey", size=font.value)
...
someuilib.Textbox("Lorem ipsum dolor...", font_size=font.value)
...

Or if a setting is only checked in one place, it can be used without defining a variable:

if settings.Toggle("Update app automatically", default=True):
    # do update

(it doesn't matter if the same setting is initialized multiple times)

Integration

The setting objects support "equals"-checking with actual values:

speed = settings.Number("Speed limit", 5)

print(speed == 5)
>> True
print(speed == 3)
>> False

In addition, they work with many type-specific operations:

for selection in settings.Multichoice():
    ...

if settings.Toggle():
    ...

Automatic storing

When a setting's value is read/set, object-settings automatically creates and updates a config file on the disk in the background. It can read many file types, like .cfg, .json and .yaml. Any file deletions or unparsable external modifications are also handled.

By default, the files are saved to a standard config location, depending on the platform (uses appdirs package for paths). You can also set a custom directory for e.g. running in a Docker container.

Setting values are also automatically read from the environment, like from env vars or command line options. The under-the-hood parser system is also very extensible, so you can create and add custom ones for e.g. a custom database.

Value validation

When a new value is set, it automatically gets validated and raises a ValueError if it doesn't pass. This validation includes more than just datatypes, for example numbers can have min/max limits, or a path setting can be set to require an existing path.

Listen for changes

If you have some update function that you want to be called when a setting is changed, you can add that function as a listener:

some_setting.add_listener(your_function)

Now the function will be called every time when a new value is set.

Sections

Optionally, if you have a lot of settings, you can organize them into sections (which also works well with UIs)

download_options = settings.Section("Downloader settings")
speed = settings.Number("Speed limit", 5, section=download_options)
dir = settings.Path("Target directory", '/home/yomama/Downloads', section=download_options)
server = settings.Choice("Mirror", ["Europe", "Asia", "America", "Africa"], "Asia", section=download_options)

Did I mention free GUIs?

That's right, this library also includes a separate settings_gui package that has pre-made settings menus for both tkinter and ttk, with GTK and others to come. They have full integration with the aforementioned systems, like validation and sections.

Here's an example of some dummy settings with both libraries: (notice the warning for the misspelt download path)

Nice-looking ttk (theme: Sun Valley dark)
Bare tkinter works too

And you can get this automatically for all your defined settings by just calling one function! (SettingsFrame or SettingsWindow, depending on preference)

Or, if you want to get more custom/contextual, you can also use the individual setting widgets and place them around your app (submodule type_frames).

Setting types

List of currently available setting types:

  • Toggle (bool)
  • Choice (str) [from a list of options]
  • Multichoice (list) [of things from a list of options]
  • Text (str)
  • Path (str)
  • Number (int)

You can also inherit from the base Setting class to easily create custom ones.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

object-settings-4.0.1.tar.gz (21.5 kB view details)

Uploaded Source

Built Distribution

object_settings-4.0.1-py3-none-any.whl (24.3 kB view details)

Uploaded Python 3

File details

Details for the file object-settings-4.0.1.tar.gz.

File metadata

  • Download URL: object-settings-4.0.1.tar.gz
  • Upload date:
  • Size: 21.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for object-settings-4.0.1.tar.gz
Algorithm Hash digest
SHA256 41eb1a481dff8fef19102415205611d39772b62ad9136fac381966bfd73e4691
MD5 fc7b528d0cb88b54263b047905abe19f
BLAKE2b-256 99510f5317f50cb885972e0671980cc060207d42283512e593e054e6f4bff1cc

See more details on using hashes here.

Provenance

File details

Details for the file object_settings-4.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for object_settings-4.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b3e8e49a739aa891de5375ca749af35511dda9c0249dd9664ff397d325c0db78
MD5 56af00c89b9bb71cc811ea787d31d327
BLAKE2b-256 b8881ef214380bd763f3176adf007e62d5614460543a5241118904997de1468c

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page