> Or am I missing something important that would make things simpler (or > maybe impossible)?
You could create a Python API that looks close enough to the code using xmlrpclib, but just uses direct Python function calls. Depending on your code this may mean you don't actually need the reactor. If you do need a reactor, you could still do it without actually doing xmlrpc queries to yourself. If you run the reactor in a different thread, blockingCallFromThread lets you "wait" on a Deferred from another non-reactor thread, in your case the GUI thread (might block your GUI though). There's also wxreactor which... probably works. _______________________________________________ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python