Skip to content

Instantly share code, notes, and snippets.

@wynemo
Created December 8, 2016 04:21
Show Gist options
  • Save wynemo/db2fe2c9c01ff0c57f83a9b2fa3b7053 to your computer and use it in GitHub Desktop.
Save wynemo/db2fe2c9c01ff0c57f83a9b2fa3b7053 to your computer and use it in GitHub Desktop.
import sys
from twisted.internet import reactor, defer
from twisted.python import log
log.startLogging(sys.stdout)
@defer.inlineCallbacks
def foo():
reactor.stop()
reactor.callWhenRunning(foo)
reactor.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment