Python Forum

Full Version: Browse/Navigate Webpages
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In my python 3.6 app, I need to build a web browser on a wx frame/panel. the app is able to change values on webpages and control navigation. what are better option? any docs or samples? Thanks.
There a bunch of packages to pick from here: https://pypi.python.org/pypi?%3Aaction=s...mit=search
Google is your friend :)

https://stackoverflow.com/a/10866495 Wrote:
import wx 
import wx.html2 

class MyBrowser(wx.Dialog): 
  def __init__(self, *args, **kwds): 
    wx.Dialog.__init__(self, *args, **kwds) 
    sizer = wx.BoxSizer(wx.VERTICAL) 
    self.browser = wx.html2.WebView.New(self) 
    sizer.Add(self.browser, 1, wx.EXPAND, 10) 
    self.SetSizer(sizer) 
    self.SetSize((700, 700)) 

if __name__ == '__main__': 
  app = wx.App() 
  dialog = MyBrowser(None, -1) 
  dialog.browser.LoadURL("http://www.google.com") 
  dialog.Show() 
  app.MainLoop()