-
Notifications
You must be signed in to change notification settings - Fork 1
/
libpln.py
304 lines (273 loc) · 6.2 KB
/
libpln.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
def extraidata(parstr):
lispals=separaPals(parstr)
buff= ""
dicresp={"dia":"","mes":"","ano":""}
dicmeses={"janeiro","fevereiro","março","abril","maio","junho","julho","agosto","setembro","outubro","novembro","dezembro","jan","fev","mar","abr","mai","jun","jul","ago","set","out","nov","dez"}
for ind in range (len(lispals)):
if lispals[ind].lower() in dicmeses :
dicresp["mes"]=lispals[ind].lower()
if buff.isdecimal():
dicresp["dia"]=buff
#
if buff in ["de","do"]:
dicresp["dia"] = lispals[ind-2]
if len(lispals)>= 2 and (lispals[ind-2]).isdecimal():
dicresp["dia"]=lispals[ind-2]
#
#
if lispals[ind].isdecimal():
if int(lispals[ind]) <= 12 and buff in ["do","de"]:
if buff.isdecimal():
dicresp["dia"]=int(buff)
dicresp["mes"]=int(lispals[ind])
#
if lispals[ind].isdecimal():
if int(lispals[ind]) >= 1800:
dicresp["ano"]=int(lispals[ind])
#if
#if
buff= lispals[ind]
#for
return dicresp
def remove_acento(par_strA):
dic_compara={"á":"a", "é":"e", "í":"i", "ó":"o", "ú":"u", "â":"a", "ê":"e", "î":"i", "ô":"o", "û":"u", "ç":"c", "ã":"a", "õ":"õ" }
straux=""
for i in range (len(par_strA)):
if par_strA[i] in dic_compara:
straux=straux+dic_compara[par_strA[i]]
else:
straux=straux+par_strA[i]
#if
#for
return straux
#fim
def listador(par_strB):
lista_aux = []
pegastr=""
for i in range (len(par_strB)):
if not par_strB[i].isalnum():
if pegastr != "":
lista_aux.append(pegastr)
pegastr=""
else:
pegastr=""
#if
#if
else:
pegastr=pegastr+par_strB[i]
#if
#for
return lista_aux
#fim
def n_grama(par_str,par_n):
listares=[]
straux=""
intaux=0
for ind in range (len(par_str)):
intaux=ind+par_n
if intaux <= len(par_str):
for indn in range(ind,intaux):
straux+=par_str[indn]
listares.append(straux)
straux=""
#for
else:
return listares
#if
#for
#def
def corrente(parstr,parint):
strpal=""
ind= parint
if not parstr[parint].isalnum() or parint > len(parstr):
return None
#if
while parstr[ind].isalnum() and len(parstr) > 0: #rebobina
ind-=1
#while
ind+=1
while parstr[ind].isalnum() and len(parstr) > ind+1 : # pega a palavra
strpal+=parstr[ind]
ind+=1
#while
return strpal
#fim
#~ def corrente(parstr,parint):
#~ strpal=""
#~ ind= parint
#~ if not parstr[parint].isalnum() or parint > len(parstr):
#~ return None
#~ #if
#~
#~ while parstr[ind].isalnum() and len(parstr) > 0: #rebobina
#~ ind-=1
#~ #while
#~ while parstr[ind+1].isalnum():
#~ ind+=1
#~ strpal+=parstr[ind]
#~ #while
#~ return strpal
#fim
def justificador(parstr,parint):
indic=0
intcont=0
lisresp=[]
checa=True
while checa == True:
checa=False
if len(parstr)> intcont:
# if parstr[intcont].isalnum:
# indic = intcont+parint
# while indic > 0 and parstr[indic].isalnum() : #rebobina
# indic-=1
# intcont=indic
lisresp.append(parstr[intcont:indic])
intcont+=parint
checa=True
#if
#while
return lisresp
def imprime(parlista):
for elem in parlista:
print(elem)
def separaPals(paramtxt):
strbuffer = ""
lst = []
for elem in paramtxt:
if (elem == "-" or elem == "'") or elem.isalnum():
strbuffer += elem
else:
if strbuffer != "":
lst.append(strbuffer)
strbuffer = ""
#if
#else
#for
if len(strbuffer) > 0:
lst.append(strbuffer)
return lst
#fim separaPalavras
def extrairPlural(lstparam):
dicsufixo = {"as":"as","es":"es","os":"os","is":"is","ns":"ns"}
lstaux = []
for pal in lstparam:
aux = (pal[len(pal)-2])+(pal[len(pal)-1])
if aux in dicsufixo:
lstaux.append(pal)
aux = ""
#if
#for
return lstaux
#fim extrairPlural
def extrairdimi(lstparam):
dicsufixo = {"nha": 1,"nho": 1}
lstaux = []
for pal in lstparam:
if len(pal) > 3:
aux = (pal[len(pal)-3])+(pal[len(pal)-2])+(pal[len(pal)-1])
#if
if aux in dicsufixo:
lstaux.append(pal)
aux = ""
#if
#for
return lstaux
#fim extrairdimi
def extraiaument(lstparam):
dicsufixo = {"ão": 1,"rra": 1,"zão":"zão"}
lstaux = []
for pal in lstparam:
if len(pal) > 3:
aux = (pal[len(pal)-3])+(pal[len(pal)-2])+(pal[len(pal)-1])
#if
if aux in dicsufixo:
lstaux.append(pal)
aux = ""
#if
#for
return lstaux
#~ def frequenciador(parls,pardic):
#~ dicesp={jesus,cristo,deus}
#~ for elem in parls:
#~ if elem in dicesp:
#~
#~
#~ elif elem.lower() not in pardic :
#~ pardic[elem.lower()]=1
#~ else:
#~ pardic[elem.lower()]+=1
#~ return pardic
def conjugador(parstr):
conjdic={"ir":["o","es","e","imos","is","em"],"ar":["o","as","a","amos","ais","am"],"er":["o","es","a","emos","eis","em"]}# 1ª,2ª ou 3ª conjugação.
lisconj=[]
straux=""
strrad=""
straux=(parstr[len(parstr)-2])+(parstr[len(parstr)-1]) #armazena o sulfixo
if straux not in conjdic or len(parstr)-2 < 1:
return None
#if
for ind in range (len(parstr)-2):
strrad+=parstr[ind]
#for
for sulf in conjdic[straux]:
lisconj.append(strrad+sulf)
#for
return lisconj
def anterior(parstr,parint):
strpal=""
ind= parint
if not parstr[parint].isalnum() or parint < 0:
return None
#if
while parstr[ind].isalnum() and len(parstr) > 0 and ind >= 0: #rebobina até o primeiro espaço
ind-=1
if ind <=0 :
return None
#if
#while
while not parstr[ind].isalnum() and len(parstr) > 0 and ind >= 0: #rebobina até a primeira letra
ind-=1
if ind <=0 :
return None
#if
#while
while parstr[ind].isalnum() and len(parstr) > 0 and ind >= 0: #rebobina a palavra
ind-=1
#while
ind+=1
while parstr[ind].isalnum():# escreve a palavra
strpal+=parstr[ind]
ind+=1
#while
return strpal
#fim
def posterior(parstr,parint):
strpal=""
ind= parint
if not parstr[parint].isalnum() or parint > len(parstr):
return None
#if
while parstr[ind].isalnum() and len(parstr) > 0: #avança até o primeiro espaço
if ind+1 >= len(parstr):
return None
#if
ind+=1
#while
while not parstr[ind].isalnum() and len(parstr) > 0: #avança enquanto for separador
if ind+1 >= len(parstr):
return None
#if
ind+=1
#while
while parstr[ind].isalnum():# escreve a palavra
if ind+1 >= len(parstr):
return None
#if
strpal+=parstr[ind]
ind+=1
#while
return strpal
def main():
return 0
if __name__ == '__main__':
main()