Skip to content

Instantly share code, notes, and snippets.

View Selovert's full-sized avatar

Tassilo Selover-Stephan Selovert

View GitHub Profile
@corbinbs
corbinbs / alert_demo.py
Created July 15, 2011 02:19
Example Python Alert Dialogs using PyObjC (alternative to EasyDialogs?)
import objc
from AppKit import *
from Foundation import *
class Alert(object):
def __init__(self, messageText):
super(Alert, self).__init__()
self.messageText = messageText
self.informativeText = ""