I'm working on a program and trying to display full rendered html into a tkinter app (that includes JS and CSS). I've tried multiple libraries that aims in achieving just that but they all are SOOO limited in functionality and only can render very basic html files for example only some inline CSS and not all, no JS support, no external css support, etc...
So I was thinking if it's possible to have electron (or chromium or a web engin general) does all the rendering and only display the electron window inside of the tkinter app. That way we can ensure correct rendering.
I have very limited knowledge in JS and building this whole thing again using electron and python would be pretty challenging given the time constraint and handling the data flow might get kinda confusing
Any thoughts on that?