Skip to content

Instantly share code, notes, and snippets.

@lasteminista
Last active May 9, 2022 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lasteminista/5596b974f9b1afa4310736e0c333ee66 to your computer and use it in GitHub Desktop.
Save lasteminista/5596b974f9b1afa4310736e0c333ee66 to your computer and use it in GitHub Desktop.
Port Scanner Code Snippet 4
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