Skip to main content

A simple, but powerful JSON, XML and command line configuration package

Project description

Conf Fu

A configuration package that allows you to configure your Python scripts, through a combination of JSON configuration files and command line options, with a minimum of code.

Install

Install the package:

pip install conffu

Note: on Linux, you may need to install libffi-dev and re-install Python if installation causes a 'No module named _ctypes error'. This is not specific to conffu, but any package requiring _ctypes in one of its dependencies.

If you want to be able to read/write XML configurations as well, there is a dependency on lxml, install using:

pip install conffu[xml]

Example

With the package installed, try running this script:

from conffu import Config

cfg = Config({
    '_globals': {
        'temp': 'C:/Temp'
    },
    'temp_file': '{temp}/text.txt',
    'number': 3
})

print(f'The number is {cfg.number}')

cfg.save('example_config.json')

After running that, this also works:

from conffu import Config

cfg = Config.from_file('example_config.json')
print(f'The number is {cfg.number}')

Make a change and save this script as example.py:

from conffu import Config

cfg = Config.from_file('example_config.json').update_from_arguments()
print(f'The number is {cfg.number}')

Then try running it like this:

python example.py -number 7

There's many more options, check the documentation for more examples.

Caveat

Note that Config allows you to do this:

from conffu import Config

cfg = Config()
cfg['test'] = 1
print(cfg.test)  # prints 1
cfg.test = 2
print(cfg.test)  # prints 2

That is, you're allowed to access configuration keys as if they were attributes on the configuration. However, if you try to access a key that happens to also be an attribute on the object, you get the attribute. This has the advantage that the feature doesn't break how objects work in Python, but the disadvantage that you'll need to access keys that have the same name as object attributes using the dictionary syntax. For example:

from conffu import Config

cfg = Config()
# create a new config value a
cfg['a'] = 1
# change the value of a, accessing it as you would a property / attribute
cfg.a = 2
# create a new object attribute b
cfg.b = 3
# this does not change the attribute b, because you're directly accessing a new config value b
cfg.['b'] = 4
print(cfg.a, cfg.b)  # prints 2 3
print(cfg['a'], cfg['b'])  # prints 2 4

If you don't like this behaviour, consider using the DictConfig class instead of Config - they are identical, except that the DictConfig does not have this behaviour and you must always access keys like cfg['test'], or cfg['key.subkey'].

If you do like the ability to access configuration values like attributes, you should take care that your code only assigns to existing values (initialise them as 'null' when creating the config from json for example), or that you use the dictionary syntax when assigning values and you only use the attribute syntax for reading values.

License

This project is licensed under the MIT license. See LICENSE.txt.

Changelog

See CHANGELOG.md.

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

conffu-2.2.1.tar.gz (22.7 kB view details)

Uploaded Source

File details

Details for the file conffu-2.2.1.tar.gz.

File metadata

  • Download URL: conffu-2.2.1.tar.gz
  • Upload date:
  • Size: 22.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.6

File hashes

Hashes for conffu-2.2.1.tar.gz
Algorithm Hash digest
SHA256 25928c7320d020f7a9e4a2fd7e9db01332239ef1e4a47efc07f453c20a807af1
MD5 5f831d816bf230794e10af97e29ff295
BLAKE2b-256 f553f44224740b240c91d02e3f485cbb82910edfaafac05b65228581c4f4f1b1

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