• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/Twisted/WebServicesTool/
1import sys
2from PyObjCTools import AppHelper
3
4from twisted.internet._threadedselect import install
5reactor = install()
6
7# import classes required to start application
8import WSTApplicationDelegateClass
9import WSTConnectionWindowControllerClass
10
11# pass control to the AppKit
12AppHelper.runEventLoop()
13