I need to call a function that handles a list of arguments that can have default values:
example code:
web.input(name=None, age=None, desc=None, alert=None, country=None, lang=None)
How can I call web.input like this using a list or dictionary? I'm stuck at:
getattr(web, 'input').__call__()