In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly explains "what is the method of embedding web into GUI in Python". The content of the explanation in the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "what is the method of embedding GUI in web in Python".
With the rapid development of Web technology, displaying charts on browsers in the form of web pages has gradually become a mainstream form.
The implementation of the web page is completed by the combination of HTML, CSS and Javascript. HTML is responsible for the structure of the web page, and CSS renders the style of the elements of the web page, while Javascript adds dynamic behavior to the web page. Generally speaking, the chart of the web page version can meet the requirements of more vivid and cool display.
But then again, GUI is easier to use for local interactions. So, can you have both fish and bear's paw? This article shows you how to embed HTML pages in Python's GUI tool.
WxPython's wx.html and wx.html2 modules support parsing and displaying the contents of HTML files.
The html.HtmlWindow object is a general-purpose HTML browser, but not a full-featured browser, so the support is limited.
For example, use the SetPage () setting to embed a pair of HTML pages, as follows:
Import wx.html as html
Class MyFrame (wx.Frame):
Def _ init__ (self,parent=None):
Super (MyFrame, self). _ _ init__ (parent,-1, "HTML File", size= (450,250))
Htmlwin = html.HtmlWindow (self)
# htmlwin.LoadPage ("http://www.baidu.com")"
Htmlwin.SetPage ("
This is the title.
Quantifying transactions with Python
Set the background color through the rbg value
This is the first paragraph.
This is italic text.
"")
App = wx.App ()
Frame = MyFrame ()
Frame.Show ()
App.MainLoop ()
Of course, as I just said, it is a far cry from the real browser, which only supports a subset of the HTML standard and does not support Javascript or CSS. When we load the Baidu home page with LoadPage (), it will look like this, as shown below:
But wx.html is relatively lightweight and has no platform dependency. We replaced it with wx.html2, which supports full-featured HTML rendering components, including Javascript and CSS, but also behaves differently depending on the backend of different platforms.
We use LoadURL in wx.html2.WebView.New to load the Baidu official website page, as shown below:
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 ((700700))
If _ _ name__ = ='_ _ main__':
App = wx.App ()
Dialog = MyBrowser (None,-1)
Dialog.browser.LoadURL ("http://www.baidu.com/?tn=62095104_10_oem_dg") # load page
Dialog.Show ()
App.MainLoop ()
In this way, we previously showed that the stock market GUI looks like this, as follows:
Later, we found that the display effect of pyecharts is even cooler, as shown below:
So we load the HTML file generated by pyecharts into wxPython, which looks like this:
Thank you for reading, the above is the content of "what is the method of embedding GUI in web in Python". After the study of this article, I believe you have a deeper understanding of what is the method of embedding GUI in web in Python, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 300
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.