This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
from tkinter import Tk | |
from tkinter.ttk import Button, Frame, Label | |
from typing import Callable, Literal | |
from urllib.request import urlopen | |
FetchDataType = dict[Literal["q"] | Literal["a"], str] | |
def parse_zen_data(data: bytes) -> FetchDataType: |