forked from felsefesinde/booldum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooldum_nodocx.py
161 lines (138 loc) · 5.59 KB
/
booldum_nodocx.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# -*- coding: utf-8 -*-
"""
@author: Burak Alanyalıoğlu
GitHub: @felsefesinde
Instagram: @felsefesinde
YouTube: Felsefesinde
Twitter: @felsefesinde & @binichburak
@author: Berkay Gündüz
Github: @berkaygunduzz
Instagram: berkay.gz
"""
class Booldum:
"""
A class which represents Booldum app
...
Attributes
----------
__text : str
text to be corrected
__corrected_words_file : file
a file that contains corrected words
__correct_words : list
a list that contains coreect words
__wrong_words_file : file
a file that contains wrong words
__correct_words : list
a list that contains wrong words
Methods
-------
__word_in_text(word)
Returns desired word in a part of text
__set_words()
Set word lists by word files
change_wrong_words()
Correct wrong words if user wants to change
__write_txt()
Create a .txt file that contains text
write_edited_text()
Create a folder that contains text and print the text
get_tect()
Returns text
exit()
Exits app
"""
def __init__(self) -> None:
self.__text: str = ""
self.__corrected_words_file_name: str = "correct_words.txt"
self.__wrong_words_file_name: str = "wrong_words.txt"
self.__correct_words: list[str] = []
self.__wrong_words: list[str] = []
self.__set_words()
def __word_in_text(self, word_index: int, length: int) -> str:
"""Returns context around given index according to the length of the word.
Parameters
----------
word_index : int
Desired word index to be returned
length: int
Length of the word
"""
new_text = self.__text[word_index:word_index + length + 15]
return new_text
def __set_words(self) -> None:
"""Set word lists by word files
"""
with open(self.__corrected_words_file_name, "r") as corrected_words_file:
for corrected_word in corrected_words_file:
self.__correct_words.append(corrected_word[:-1])
with open(self.__wrong_words_file_name, "r") as wrong_words_file:
for wrong_word in wrong_words_file:
self.__wrong_words.append(wrong_word[:-1])
def change_wrong_words(self) -> None:
"""Correct wrong words if user wants to change
"""
print("Booldum uygulamasına hoş geldiniz!")
# Metinde boş satır varsa çalışmıyor.
self.__text = input("Lütfen metninizi giriniz:\n")
# Burası bayağı değişti, pull requestte anlattığım nedenlerden ötürü.
i = 0
start = 0
while i < len(self.__wrong_words):
# Bu eklenti bugı tam düzeltmese de "Ankara" kelimesindeki "kar"ı bulmasını engelliyor.
wrong_word = self.__wrong_words[i]
wrong_word_index = self.__text.find(wrong_word, start)
if wrong_word_index >= 0: # 1. kelime yanlış olunca oluşan bugı düzeltiyor.
# Ankara kelimesindeki "kar" gibi kelimelerin okuyucuya sorulmadan elenmesi amaçlandı.
if wrong_word_index != 0 and self.__text[wrong_word_index - 1] not in [" ", "\t", "\n"]:
start = wrong_word_index + len(wrong_word)
continue
change = input(f"Metninizde geçen '{wrong_word}'\n" +
"ifadesinin şapka ile yazılıp " +
"yazılmayacağını kontrol ediniz.\n" +
"Metindeki yeri şu şekilde:" +
f"'...{self.__word_in_text(wrong_word_index, len(wrong_word))}...'\n" +
"Gerekli değişiklik yapılsın mı? " +
"[Evet: e | Hayır: h]: ")
try:
if change.upper() == "E":
correct_word = self.__correct_words[i]
self.__text = self.__text[:wrong_word_index] + correct_word + self.__text[(wrong_word_index + len(correct_word)):]
elif change.upper() == "H":
print(f"Kelime '{wrong_word}' aynı bırakıldı!")
start = wrong_word_index + len(wrong_word)
else:
raise(IndexError(f"Geçersiz işlem komutu: {change}"))
except IndexError:
print("İşlem atlandı!")
print(f"Kelime '{wrong_word}' aynı bırakıldı!")
else:
i += 1
start = 0
def __write_txt(self) -> None:
"""Create a .txt file that contains text
"""
with open("Booldum_Metin.txt", "w", encoding="utf-8") as edited:
edited.write(self.__text)
def write_edited_text(self) -> None:
"""Create a folder that contains text and print the text
"""
self.__write_txt()
# Okunabilirlik için birkaç tane newline ekledim.
print(f"\nİşte metninizdeki şapka hatalarının Booldum tarafından " +
"düzeltilmiş hâli:\n\n\n" +
f"{self.__text}\n\n")
def get_text(self) -> str:
"""Returns text
"""
return self.__text
def exit(self) -> None:
"""Exits app
"""
print("Yazının düzeltilmiş haline Booldum_Metin dosyasından ulaşabilirsiniz.")
input("Kapatmak için Enter tuşuna basınız...")
if __name__ == "__main__":
booldum = Booldum()
booldum.change_wrong_words()
booldum.write_edited_text()
booldum.exit()