Guest User

Untitled

a guest
Feb 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. if __name__ == '__main__':
  2. root = tk.Tk()
  3. frame = tk.Frame(root)
  4. frame.pack()
  5.  
  6. button = tk.Button(frame,
  7. text="OPEN TELEGRAM",
  8. fg="red",
  9. command=open_telegram)
  10. button.pack(padx=100, pady=40)
  11. send = tk.Button(frame,
  12. text="SEND",
  13. fg="red",
  14. command=send_messages)
  15. send.pack(padx=100, pady=10)
  16. slogan = tk.Button(frame,
  17. text="STOP",
  18. command=stop_script)
  19. slogan.pack(padx=100, pady=50)
  20. root.mainloop()
Add Comment
Please, Sign In to add comment