-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDictionary_GUI.py
More file actions
47 lines (38 loc) · 1.42 KB
/
Copy pathDictionary_GUI.py
File metadata and controls
47 lines (38 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from tkinter import *
from tkinter import messagebox
from PyDictionary import PyDictionary
root = Tk()
root.title("Dictionary")
root.geometry("500x400")
dictionary = PyDictionary()
def getMeaning():
response = dictionary.meaning(word.get())
if(response):
if('Noun' in response):
meaning =response['Noun'][0]
elif('Verb' in response):
meaning = response['Verb'][0]
elif('Adjective' in response):
meaning = response['Adjective'][0]
else:
meaning="Invalid word"
else:
messagebox.showinfo("Error","Please add a Noun,Pronoun,verb or a valid word.")
meaning_label.config(text=meaning)
heading_label = Label(root,text="DICTIONARY",font=("Helvetica 35 blod"),foreground='Blue')
heading_label.config(anchor=CENTER)
heading_label.pack(pady=10)
frame = Frame(root)
Label(frame,text="Enter Word",font=("Helvetica 15 bold")).pack(side=LEFT)
word = Entry(frame,font=("Helvetica 15 bold"))
word.pack(padx=10)
frame.pack()
search_button = Button(root,text="Search Word",font=("Helvetica 15 bold"),relif=RIDGE,borderwidth=3,cursor="hand2",foreground='Green',command=getMeaning)
search_button.config(anchor=CENTER)
search_button.pack(pady=10)
frame1 = Frame(root)
Label(frame1,text="Meaning:",font=("Helvetica 15 bold")).pack(side=LEFT)
meaning_label =Label(frame1,text="",font=("Helvetica 12"))
meaning_label.pack(pady=5)
frame1.pack(pady=10)
root.mainloop()