I am using Twisted and making a Looping Call every x seconds.
The function I use for the looping calls makes a return statement.
def f():
# Obtain stuff
return stuff
def main():
LoopingCall(f).start(x)
How can I retrieve the return result of f?
Thanks!