Is there a Python (preferably 2.7) graphical module that allows me to display a web page (which I have in a .html file) in a pygame window?
I have a simple HTML file that I need to show and to scroll it.
The HTML code contains some CSS code but it certainly does not contains JavaScript or PHP code.
Once the HTML has been loaded and displayed, I need to be able of managing the events that occur in the HTML page (for example a button being clicked should be binded with some python functions in my code).
I don't need to call an external browser such as Mozilla Firefox or Chrome.