First page Back Continue Last page Graphics
Introduction: new namespace
wxPython is transitioning from the old style…
from wxPython.wx import *
class MyFrame(wxFrame):
. . .
…to the new
import wx
class MyFrame(wx.Frame):
. . .
This tutorial will use the new style.