Skip to main content

In-class settings configurable via both click and confuse libraries

Project description

ClickSet

ClickSet is a thin wrapper around the click and confuse libraries, combining them both into a simple property-like interface for use with python classes.

from clickset import Setting
from clickset import ClickParams
from clickset import get_config
import confuse
import click

class MyClass:
    verbose = Setting(
        # confuse storage path
        'general.verbose',
        default = False,

        # click boolean option
        option = ClickParams(
            '--verbose/--quiet',
            help = 'Verbose or Quiet Output'
        )
    )

    enable = Setting(
        # confuse storage path
        'log.enable',

        # The subcommand this setting will be applied to
        command = 'log'

        # click boolean option
        option = ClickParams(
            '--enable/--diable',
            help = 'Enable or Disable logging subsystem'
        )
    )

    def my_func(self):
        # Get the value of a Setting
        print(f"verbose status: {self.verbose}")

        # Set the value of the property ... in memory only!
        self.verbose = True
        assert self.verbose == True

class OtherClass:
    # An existing `Setting` property may be copied from another object
    verbose = MyClass.verbose

@click.group
# Load all options set in classes
@Setting.options # <<< Only includes options where the `command` argument to `Setting` is not set.
def main(**kw):
    # Get the default global confuse configuration singleton
    config = get_config()
    foo = MyClass()
    print(f"verbose: {foo.verbose}")
    assert foo.verbose == kw['verbose']
    assert foo.verbose == config['general']['verbose'].get()

    # confuse/click values can also be obtained directly from classes
    # ... NOTE: The value here is read-only!
    assert MyClass.verbose.get() == kw['verbose']

    # confuse/click values can also be obtained without a class
    verbose = Setting(
        # confuse storage path
        'general.verbose',

        # click boolean option
        option = ClickParams(
            '--verbose/--quiet',
            help = 'Verbose or Quiet Output'
        )
    )
    assert verbose == MyClass.verbose.get()
    assert verbose == foo.verbose

    # Copied instances of a setting are always identical
    assert MyClass.verbose.get() == False
    assert foo.verbose == False
    assert MyClass.verbose.get() == OtherClass.verbose.get()
    foo.verbose = True
    assert foo.verbose == OtherClass.verbose.get()
    assert MyClass.verbose.get() == OtherClass.verbose.get()

@main.command
# Load all options set in classes
@Setting.options('log') # <<< Only include options set via `Setting(..., command='log', ...)`
def main(**kw):
    assert len(kw) == 1
    assert 'enable' in kw
    assert kw['enable'] is True

main(['--verbose'])

Design Concepts

This library is built around the following design concept:

  • Define app configuration in the class where it is used
  • Link command line options to configuration file entries
  • Permit multiple configuration files covering different purposes
  • Provide a persistent application state storage mechanism
  • Provide a simple interface which covers common use scenarios
  • Provide as much access as possible to underlying libraries

These design concepts led me to utilizing two base libraries to provide functionality:

  • confuse: Provides configurable values to an application by providing multiple sources (memory, command line arguments, YAML files, etc.) in a priority based list.
  • click: Provides a command line interface which is easily extended with additional funcitonality.

While both of these libraries are very powerful tools in their own right, they both force their relevant settings into a central location. In order to keep all configuration settings in the location they are used, this library combines confuse and click into a single class called Setting. The resulting class has the following features:

  • All data is stored using confuse
  • Command line parameters provided by click are inserted into the confuse data store
  • Data is accessed in the same mechanism as a python property
  • Values can be overridden on a per-instance basis (same as setting a property)
  • click/confuse values can obtained direclty using Setting(...).get() in order to easily obtain configured values outside of class restrictions (see the example above)

While this design is highly flexible, there are noteworthy drawbacks which must be considered:

  • click parameter definitions and confuse data stores must be defined as global singletons.
    • Generally this is acceptable as both configuration files and command line interfaces have one instance per application.
    • Multiple singletons can be created for both confuse and click in order to provide design flexibility.
  • Command line options are always generated if the relevant class has been imported. This means that care must be taken with inactive code to ensure it is not imported by the main application.
    • This is generally a small risk if one is following good coding practices by importing only files which are used in a module.

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

clickset-1.4.0.tar.gz (8.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

clickset-1.4.0-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file clickset-1.4.0.tar.gz.

File metadata

  • Download URL: clickset-1.4.0.tar.gz
  • Upload date:
  • Size: 8.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.14.2 Darwin/25.2.0

File hashes

Hashes for clickset-1.4.0.tar.gz
Algorithm Hash digest
SHA256 17f92a55a72447fce15aa11fb9ab64e0f2c3874547b2857520ab9e41bf314534
MD5 92501fd744a85080475121435a24eeae
BLAKE2b-256 8996d274c0204d058a46e2d3709c31f69cb754b335bc4bb8df4ea5701bfdd533

See more details on using hashes here.

File details

Details for the file clickset-1.4.0-py3-none-any.whl.

File metadata

  • Download URL: clickset-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.14.2 Darwin/25.2.0

File hashes

Hashes for clickset-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f4aea67706f2fb8b57d1e6e0e5df3673691fbbf4832970ed715a9a0a452af756
MD5 95570bce56ea2a14f9458adfb22d1518
BLAKE2b-256 87171eac2aeaacea5e641ee240441c80672558e7e2dd295dc559b4d64bdb0818

See more details on using hashes here.

Supported by

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