Jul-16-2017, 03:08 AM
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.
Browse/Navigate Webpages
|
Jul-16-2017, 03:08 AM
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
Jul-19-2017, 09:02 PM
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() |
|
Possibly Related Threads… | |||||
Thread | Author | Replies | Views | Last Post | |
[Tkinter] WebPages in tkinter | CharlieSchuyler | 1 | 2,410 |
May-15-2020, 04:38 AM Last Post: Larz60+ |
|
browse item and assign file to variable PYSIDE | Gigux | 3 | 4,861 |
May-01-2017, 02:03 AM Last Post: nilamo |