Please send questions to st10@humboldt.edu .
"""
Module wxpython_ex1.py
First wxpython example

from: http://wiki.wxpython.org/index.cgi/Getting_20Started,
      wxPython Wiki, Getting Started subsection

slightly adapted by: Sharon M. Tuttle
last modified: 12-7-05
"""

import wx

app = wx.PySimpleApp()

# first parameter below is the parent,
#    second is the system-defined id,
#    third is what should be on its title bar

frame = wx.Frame(None, -1, "Hello World")

#  must do this to SEE the frame!

frame.Show(True)

app.MainLoop()