How to convert HTML CSS file to wxPython files? That is, how to create slidsheet in wxPython like HTML CSS files?
A:
It is not at all clear what you want to achieve, I guess you want to display some HTML files in wxPython. In that case there isn't any generic HTML renderer which will render all HTML/CSS files, but simple HTML files can be rendered using the HTML control.
See http://www.wxpython.org/docs/api/wx.html.HtmlWindow-class.html
If you need to display any generic HTML page then best way is to use the WebKit port for wx (http://wxwebkit.wxcommunity.com/index.php?n=Main.BuildInstructions) or
the webkit control (http://www.wxpython.org/docs/api/wx.webkit.WebKitCtrl-class.html) which comes with wxPython, but it will not run on all platforms.
Anurag Uniyal
2009-06-26 06:24:05