Is there any already available utility in python that can do what i am after?
Lets say I have a code like this,
import config
def process_data(arg):
if config.processor == 'x':
return process_data_x(arg)
if config.processor == 'y':
return process_data_y(arg)
raise NotImplementedError()
I want to express it as something like this
@singledispatch_on_config(config.processor) # or may be take a func
def process_data(arg):
raise NotImplementedError()
@process_data.when('x')
def process_x(args):
pass
@process_data.when('y')
def process_y(args):
pass
Any existing code snipet on how I can write them if nothing exists?
This is what I have come up so far,
It "works", but if there is any other better approach for the problem in hand, i would gladly change it.