/GUI_tkinter_code_skeleton.py Secret
Last active
May 9, 2022 18:13
Port Scanner Code Snippet 4
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 tkinter as tk | |
class App(tk.Tk): | |
def __init__(self): | |
super().__init__() | |
if __name__ == "__main__": | |
app = App() | |
app.mainloop() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment