Decorator library to expose keyword arguments through config files
Project description
Configfy
Decorator library to expose keyword arguments through config files by manuel.pasieka@protonmail.ch
Hostet on github
- Example Look at a simple example
- Performance overhead Whats the additional computational cost?
- What for? What is it good for?
Example
Define a function that makes use of keyword arguments, and overwrites the default keyword argument with a config file setting.
import configfy
from configfy import configfy as cfy
@cfy
def hello(name, another_name='Pedro'):
"""Be nice and say hello
"""
print(f'Hello {name}, I am {another_name}!')
hello('Bob')
With a config.ini containing
[global]
another_name = Suzan Flusan
produces
Hello Bob, I am Suzan Flusan!
Complex Example
Show how to specify sections to use in config files and how the config file can be changed during runtime, or specified in the decorator.
From docs/example.py
import configfy
from configfy import configfy as cfy
from pudb import set_trace as st
@cfy
def hello(name, another_name='Pedro'):
"""Be nice and say hello
"""
print(f'Hello {name}, I am {another_name}!')
@cfy(section='greetings_section')
def greetings(name, language='english'):
"""Give a nice greeting ...
"""
if language == 'english':
print(f'Hello {name}! How are you doing?')
elif language == 'spanish':
print(f'Hola {name}! Que tal?')
elif language == 'german':
print(f'Hallo {name}! Wie gehts?')
elif language == 'serbian':
print(f'Zdravo {name}! Kako si?')
else:
print(f'!nuqneH {name}!')
@cfy(config='yet_another_config.ini')
def goodby(msg='Goodby!'):
print(msg)
print('# Use default config.ini file (missing greetings section)...')
hello('Bob')
greetings('Tom')
goodby()
print('\n# Changing config to "another_config.ini" ...')
configfy.set_active_config_file('another_config.ini')
hello('Bob')
greetings('Tom')
goodby()
print('\n# Specifying kwargs, overwriting config settings...')
hello('Bob', another_name='Alfredo')
greetings('Tom', language='serbian')
goodby(msg='That\'s all Folks!')
Produces
# Use default config.ini file (missing greetings section)...
Hello Bob, I am Suzan Flusan!
WARNING:root:Config section greetings_section not found!
Hello Tom! How are you doing?
Goodby!
# Changing config to "another_config.ini" ...
Hello Bob, I am Pedro!
Hallo Tom! Wie gehts?
Goodby!
# Specifying kwargs, overwriting config settings...
Hello Bob, I am Alfredo!
Zdravo Tom! Kako si?
Thats all Folks!
Overhead
Try it out yourself! Run
python doc/overhead.py
I got
Comparing performance ... this can take a while.
native: 11.863 sec
configfy+config 11.953 sec
configfy 12.160 sec
Utility
I wrote this library because I often have to write prototypes in a scientific settings, in which it is unclear upfront which goals to achieve.
I therefore often have to introduce additional parameters and options to some function deep down in the application flow, and in order to make its behavior alterable by the user, one has to either have some global config file, or pass arguments from the user input to that part of the execution.
In order to make those steps easier and speed things up, I wrote this library which enables one to post-hoc add keyword arguments to any function in the codebase, and expose them to the user via a simple config file.
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.