cuteufo
cuteufo
Source code snippet: ``` # gui2.py import tkinter as tk from tkinterweb import HtmlFrame class GUI: def __init__(self) -> None: self.root = tk.Tk() self.root.geometry("815x416") self.info_html = HtmlFrame(self.root, width=1, height=1, horizontal_scrollbar="auto",...
I have successfully cross compiled with the scripts and codes in this repo, along with the updates from @0xdoll. However, if I create a new project, it just failed. After...
I have a not so ideal validator like: ``` sch = Schema({ 'a': str, 'b': int, Option('c'): str, Option('d'): int } ``` in which, `a` and `b` must exist, while...