wxPython's iewin.IEHtmlWindow lets you host the Internet Explorer browser control in a wxPython window. Doing so is quite simple: import wx from wx.lib import iewin class MyFrame(wx.Frame): def __init__(self): wx.Frame.__init__(self, None, title="IEHtmlWindow") self.ie = iewin.IEHtmlWindow(self) self.ie.Navigate("http://example.com/") # your URL here app [...]
