vote up 6 vote down star
6

I was wondering if there's any library for asynchronous method calls in Python. It would be great if you could do something like

@async
def longComputation():
    <code>


token = longComputation()
token.registerCallback(callback_function)
# alternative, polling
while not token.finished():
    doSomethingElse()
    if token.finished():
        result = token.result()

Or to call a non-async routine asynchronously

def longComputation()
    <code>

token = asynccall(longComputation())

It would be great to have a more refined strategy as native in the language core. Was this considered?

flag

80% accept rate

5 Answers

vote up 11 vote down check

You can use the multiprocessing module added in Python 2.6. You can use pools of processes and then get results asynchronously with:

apply_async(func[, args[, kwds[, callback]]])

E.g.:

from multiprocessing import Pool

def f(x):
    return x*x

if __name__ == '__main__':
    pool = Pool(processes=1)              # Start a worker processes.
    result = pool.apply_async(f, [10], callback) # Evaluate "f(10)" asynchronously calling callback when finished.

This is only one alternative. This module provides lots of facilities to achieve what you want. Also it will be really easy to make a decorator from this.

link|flag
vote up 12 vote down

It's not in the language core, but a very mature library that does what you want is Twisted. It introduces the Deferred object, which you can attach callbacks or error handlers ("errbacks") to. A Deferred is basically a "promise" that a function will have a result eventually.

link|flag
In particular, look at twisted.internet.defer (twistedmatrix.com/documents/8.2.0/…). – Nicholas Riley Oct 31 at 20:56
vote up 0 vote down

Is there any reason not to use threads? You can use the "threading" class. Instead of finished() function use the isAlive(), the result() function could join() the thread and retrieve the result and if you can override the run() and init functions to call the function specified in constructor and save the value somewhere to the instance of the class.

link|flag
If it's a computationally expensive function threading won't get you anything (it will probably make things slower actually) since a Python process is limited to one CPU core due to the GIL. – Kurt Sep 23 at 21:01
vote up 0 vote down

What about something like (doc at http://docs.python.org/library/threading.html#module-threading)

import threading

thr = threading.Thread(target=foo, [args=(), kwargs={}])
thr.start() # will run "foo"
....
thr.is_alive() # will return whether foo is running currently
....
thr.join() # will wait till "foo" is done
link|flag
vote up 0 vote down

Lucas S., your example does not work, unfortunately. The callback function never gets called.

link|flag
Hello, it is just an example of what you can do, it is far from a complete working example. Look at multiprocessing docs to see how to use it correctly. And if you do it you can edit my answer with working code. – Lucas S. Aug 30 at 1:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.