forked from mrayanasim09/python-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spelling.py
90 lines (64 loc) · 2.45 KB
/
spelling.py
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# This code is made by MRayan Asim
# Packages needed:
# pip install textblob
from tkinter import *
from textblob import TextBlob
# Function to clear both the text entry boxes
def clearAll():
# whole content of text entry area is deleted
word1_field.delete(0, END)
word2_field.delete(0, END)
# Function to get a corrected word
def correction():
# get a content from entry box
input_word = word1_field.get()
# create a TextBlob object
blob_obj = TextBlob(input_word)
# get a corrected word
corrected_word = str(blob_obj.correct())
# insert method inserting the
# value in the text entry box.
word2_field.insert(10, corrected_word)
# Driver code
if __name__ == "__main__":
# Create a GUI window
root = Tk()
# Set the background colour of GUI window
root.configure(background="light green")
# Set the configuration of GUI window (WidthxHeight)
root.geometry("400x150")
# set the name of tkinter GUI window
root.title("Spell Corrector")
# Create Welcome to Spell Corrector Application: label
headlabel = Label(
root, text="Welcome to Spell Corrector Application", fg="black", bg="red"
)
# Create a "Input Word": label
label1 = Label(root, text="Input Word", fg="black", bg="dark green")
# Create a "Corrected Word": label
label2 = Label(root, text="Corrected Word", fg="black", bg="dark green")
# grid method is used for placing
# the widgets at respective positions
# in table like structure .
# padx keyword argument used to set padding along x-axis .
headlabel.grid(row=0, column=1)
label1.grid(row=1, column=0)
label2.grid(row=3, column=0, padx=10)
# Create a text entry box
# for filling or typing the information.
word1_field = Entry()
word2_field = Entry()
# padx keyword argument used to set padding along x-axis .
# pady keyword argument used to set padding along y-axis .
word1_field.grid(row=1, column=1, padx=10, pady=10)
word2_field.grid(row=3, column=1, padx=10, pady=10)
# Create a Correction Button and attached
# with correction function
button1 = Button(root, text="Correction", bg="red", fg="black", command=correction)
button1.grid(row=2, column=1)
# Create a Clear Button and attached
# with clearAll function
button2 = Button(root, text="Clear", bg="red", fg="black", command=clearAll)
button2.grid(row=4, column=1)
# Start the GUI
root.mainloop()