Skip to content

Instantly share code, notes, and snippets.

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: