Skip to main content

Create dataclasses backed by configuration files.

Project description

zycelium.dataconfig

Create dataclasses backed by configuration files.

Python package

  • Development Status :: 3 - Alpha

Usage

Use defaults:

Create a new python script and name it example.py

from zycelium.dataconfig import dataconfig


@dataconfig
class Config:
    name: str = "World"

config = Config().load()

print(f"Hello, {config.name}!")

Create a config.ini file in the same directory as example.py

name = "DataConfig"

Finally, from the same directory, run python example.py , your console session should look something like this:

$ python example.py
Hello, DataConfig!

The defaults here are:

  • Config file name: "config.ini"
  • Paths to look for the config file (current working directory): ["."]

Specify file-name for configuration:

from zycelium.dataconfig import dataconfig


@dataconfig(file="custom_config.ini")
class Config:
    name: str = "World"

config = Config().load()

print(f"Hello, {config.name}!")

In this example, we specify the file-name on this line: @dataconfig(file="custom_config.ini") with keyword arguments file="custom_config.ini" passed to @dataconfig().

Specify file-lookup-paths:

from zycelium.dataconfig import dataconfig


@dataconfig(paths=[".", "examples", "/usr/local/etc"])
class Config:
    name: str = "World"

config = Config().load()

print(f"Hello, {config.name}!")

Here, we pass paths=[".", "examples"] to @dataconfig() to specify the paths on filesystem where dataconfig should look for the default "config.ini" file. We can also specify the filename along with the paths. Paths can be relative to current working directory or absolute.

Save configuration to file:

from zycelium.dataconfig import dataconfig

FILE_NAME = "newconfig.ini"

@dataconfig(file=FILE_NAME)
class Config:
    name: str = "World"

config = Config()
config.save()

print(f"Saved config to file: {FILE_NAME}.")

Here, we set the config-file-name while creating the class, when save() is called, it will create the file and save contents of Config.

If we try running the same example again, we will get an error:

FileExistsError: File newconfig.ini exists, refusing to overwrite.

This is to protect us from accidentally overwriting an existing config file. To overwrite it, pass overwrite=True to save() like this:

config.save(overwrite=True)

Frozen configuration:

from zycelium.dataconfig import dataconfig


@dataconfig(frozen=True)
class Config:
    name: str = "World"

config = Config().load(replace=True)

print(f"Hello, {config.name}!")

To load a frozen config, we need to pass replace=True to load(), if we forget, we get the error:

dataclasses.FrozenInstanceError: cannot assign to field 'name'

Once loaded, we cannot overwrite the configuration.

Use with Click Integration for CLI apps:

Here, dataconfig will generate options for click CLI framework, one to add defaults to all options with names that exist in the dataconfig class, overridden by values found in the configuration file. These options can be overridden by passing values as usual to the command line.

There's also a new option added to the command: "--conf", which can be used to specify a different configuration file to load defaults.

And finally, any changes made in the command line are applied to the dataconfig object, but not saved to the configuration file unless the save() method is called later.

Frozen dataconfig does not work with commandline integration.

import click
from zycelium.dataconfig import dataconfig


@dataconfig
class Config:
    name: str = "World"


config = Config()
# No need to load() config when using click_option()


@click.command()
@click.option("--name")
@config.click_option()
def main(name):
    print(f"Hello, {name}!")
    print(f"Hello, {config.name}!")


main()

For more examples:

Read through the tests/ directory, where you will find the expected usage and how and why dataconfig can fail.

Install

From PyPI

pip install zycelium.dataconfig

From source:

git clone https://github.com/zycelium/dataconfig.git
cd dataconfig
pip install -e .

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

zycelium.dataconfig-0.1.0.tar.gz (5.2 kB view details)

Uploaded Source

Built Distribution

zycelium.dataconfig-0.1.0-py3-none-any.whl (5.3 kB view details)

Uploaded Python 3

File details

Details for the file zycelium.dataconfig-0.1.0.tar.gz.

File metadata

  • Download URL: zycelium.dataconfig-0.1.0.tar.gz
  • Upload date:
  • Size: 5.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.7.10

File hashes

Hashes for zycelium.dataconfig-0.1.0.tar.gz
Algorithm Hash digest
SHA256 1c2919003198a84d07c2e94f16b20e30e7a038fb56912f3a1159b6b74a33f8d4
MD5 a733cb967899fb3e0c8fd2154bd8856f
BLAKE2b-256 fba5c1e0bc3b71fe94f2f3ca4895d196fdc0dff4c6a6d03c4938840221d75b1c

See more details on using hashes here.

File details

Details for the file zycelium.dataconfig-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: zycelium.dataconfig-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 5.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.7.10

File hashes

Hashes for zycelium.dataconfig-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 05e863a815ea76477970caae12615ee70f69c0fdc849e2f6043da7a59824eea3
MD5 c168fef03ca368f7958dea3d745e82cc
BLAKE2b-256 bbbc18f8cd2f28c42a3d7e459eb38bab00c676e4e5746a275d0e14292e608094

See more details on using hashes here.

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