This is the script that uses tkinter and notify2 to show a notification on my PC when I click a button. What i want to do is, when someone, in another PC runs the script, I want to get the notification. I want to use AWS EC2 for this. Or are there other ways of doing it?
import notify2import tkinter.messageboxdef onClick(): tkinter.messagebox.showinfo("Delivering Request", "Alert Sent.") button.config(state="disable", command=root.quit())root = tkinter.Tk()button = tkinter.Button(root, text="Click Me", command=onClick)button.config(height=10, width=30)button.pack()root.mainloop()notify2.init('')n = notify2.Notification("hey there!")n.show()