Skip to content

Instantly share code, notes, and snippets.

@vsecoder-old-account
Created October 28, 2020 15:19
Show Gist options
  • Save vsecoder-old-account/d24ec591e231f8581033ee52125b7b44 to your computer and use it in GitHub Desktop.
Save vsecoder-old-account/d24ec591e231f8581033ee52125b7b44 to your computer and use it in GitHub Desktop.
import requests, time
from tkinter import *
window = Tk()
window.title('Chat')
messages = Text(window)
messages.pack()
input_user = StringVar()
input_field = Entry(window, text=input_user)
input_field.pack(side='bottom', fill='x', expand='true')
input_msg = StringVar()
input_field1 = Entry(window, text=input_msg)
input_field1.pack(side='bottom', fill='x', expand='true')
window.mainloop()
print('Выполнено')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment