Andrew
Andrew
Hey! Thanks for the pull request. I've been hesitant to use f-strings in an effort to maintain Python 2 support but seeing as Python 2 has been deprecated for two...
@marksmayo I finally merged your changes. At this point no one should still be using Python 2 and still expecting packages to still support it. Thanks again for the tidyups!
Hi! Thanks for letting me know about this. MacOS has not been tested much. Tkinterweb is based on the Tkhtml html engine, which is largely written in C. This means...
Hi @dhruvjatkar, bug #26 has been resolved. Please upgrade TkinterWeb and let me know if this fixes the issue!
Hi! It seems that the first occurrence of `` is causing the crash. Even replacing it with `` causes the crash. Are you sure all of the tables/table rows/cells are...
Hi! I tried simplifying the code to the basic structure of table, td, and tr tags and TkinterWeb still crashes. I noticed, though, that the code has many issues, such...
Hi! You need to use `load_url` or `load_file` instead of `load_website`. `load_website` is mostly a convenience function forces the page to be opened as a website, even though you specify...
Hi! Apologies about the delay. I don't believe this is possible. While HtmlLabel can be styled using ttk, as far as I've been able to tell, the underlying Tkhtml widget...
Hi! I assume you looking to intercept all requests (images, stylesheets, etc) and not block the loading of all external resources all together?
Yes, that is quite easy to do. From the [API Reference](https://github.com/Andereoo/TkinterWeb/blob/main/tkinterweb/docs/HTMLFRAME.md#usage), can use `on_link_click` to override the default behaviour for hyperlinks and `on_form_submit` to handle form submissions. For instance, the...