T
Tobiah
Is there a way to call function in an imported
module having only the name?
func_name = 'doit'
real_func = foo.some_magic(func_name)
#Now call it
real_func(args)
I'm trying to set up a function dispatcher for a
SOAP server.
Thanks,
Tobiah
module having only the name?
func_name = 'doit'
real_func = foo.some_magic(func_name)
#Now call it
real_func(args)
I'm trying to set up a function dispatcher for a
SOAP server.
Thanks,
Tobiah