You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
425 B
Python
19 lines
425 B
Python
skit idea for movie avigail and the hackers at 05:58
|
|
|
|
import subprocess
|
|
import tkinter as tk
|
|
|
|
window = tk.Tk()
|
|
|
|
window.title("ENTER PIN BOOM BOOM HURUMPH HACKER OOOOHHHH")
|
|
|
|
label = tk.Label(window, text="Enter PIN to hack:")
|
|
label.pack()
|
|
|
|
pin_entry = tk.Entry(window, show=".")
|
|
pin_entry.pack()
|
|
|
|
pin_entry.bind("<Return>", lambda event: subprocess.run(["python", "hack.py", pin_entry.get()]))
|
|
|
|
while True:
|
|
window.update() |