Can i get methods dynamically from a pythonscript?
getattr doesn't seem to work.
I guess external methods would work, but can this be done?
##parameters=method=None
##
def a():
    return 'Hello'
if method is not None:
    return getattr ( script, method )()