-
Notifications
You must be signed in to change notification settings - Fork 4
/
derlem.py
435 lines (382 loc) · 14.2 KB
/
derlem.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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
# -*- coding: utf-8 -*-
#author = Ahmet Aksoy, İlker Manap
#Son güncelleme = 2016-03-01
import sqlite3 as sql
import os, time, datetime
#BHARF = "ÇĞİIÖŞÜ"
#KHARF = "çğiıöşü"
#string.lower() metodu I ve İ dönüşümlerinde sorunlu
BHARFX = "Iİ"
KHARFX = "ıi"
AYRACLAR = ",\.;«»!?-:/\*+_=\"<>()'[]|º#&%"
"""
Yapılan işlemleri loglamak daha sonra yapılacak kontroller için yararlı.
logfile dosyası program boyunca açık kalıyor.
"""
LOGFILE = "loglar/derlemlog"+"{}.txt".format(datetime.datetime.now().strftime("%Y%m%d"))
logfile = open(LOGFILE,"a+")
#Sözcükler ve frekansları bu sözlükte tutuluyor. Veri tabanı şimdilik devre dışı.
#Açılışta gensozluk.txt dosyası okunuyor, çıkışta dosya yeniden yazılıyor.
gensozluk = dict()
def gensozluk_oku():
try:
with open("gensozluk.txt",encoding="utf-8") as f:
for line in f:
l = line.split()
gensozluk[l[1].strip()] = int(l[0].strip())
except:
pass
def damga():
return datetime.datetime.now().strftime('%H:%M:%S.%f')
def kucukHarfYap(sozcuk):
ss = ''
for i in range(len(sozcuk)):
ok = False
for j in range(len(BHARFX)):
if sozcuk[i]== BHARFX[j]:
ss += KHARFX[j]
ok = True
break
if ok == False:
ss += sozcuk[i]
ss = ss.lower()
return ss
def inceltme_yok(sozcuk):
s=""
for harf in sozcuk:
if harf=='â' or harf=='Â':
s += 'a'
elif harf == 'ê' or harf=='Ê':
s += 'e'
elif harf == 'û' or harf=='Û':
s += 'u'
elif harf == 'î' or harf=='Î':
s += 'i'
else:
s+=harf
return s
class Veritabani:
def __init__(self, dosya=None):
if dosya is None:
self.vt = sql.connect(":memory:")
else:
self.vt = sql.connect(dosya)
def sema(self, sema):
cr = self.vt.cursor()
cr.execute(sema)
self.vt.commit()
def sorgu(self, sorgu):
cr = self.vt.cursor()
cr.execute(sorgu)
self.vt.commit()
def cevap(self, sorgu):
cr = self.vt.cursor()
cr.execute(sorgu)
return cr.fetchall()
class AnaSozluk(Veritabani):
def __init__(self, dosya="anasozluk.db", yeni=False):
#def __init__(self, dosya=None, yeni=False):
Veritabani.__init__(self, dosya)
try:
cevap = self.cevap("select * from sozcukler limit 1")
except:
yeni = True
if (yeni is True) or (os.path.isfile(dosya) is False):
self.sema("CREATE TABLE sozcukler (sozcuk TEXT, frekans INT)")
def eski_liste_ekle(self, liste):
for kelime, sayi_ in liste.items():
#print (kelime, sayi_)
self.ekle(kelime, sayi = sayi_)
def liste_ekle(self, liste, gentop):
var = 0
say= len(liste)
for kelime, sayi_ in liste.items():
#if len(kelime)<2: continue # Tek karakterlik kelimeleri atla
soz = inceltme_yok(kucukHarfYap(kelime)) # inceltme/uzatma işaretini kaldır
if soz in gensozluk.keys():
gensozluk[soz] += sayi_
var += 1
if var % 1000 ==0:
print(var, end=' ', flush = True)
else:
gensozluk[soz]=sayi_
#print("{:08d} {}".format(sayi_,soz))
"""
fout = open("gensozluk.txt", "w", encoding="utf-8")
sorted(gensozluk.items(), key=lambda x:x[1])
for soz, sayi_ in gensozluk.items():
fout.write("{:08d} {}\n".format(sayi_,soz))
fout.close()
"""
fout = open("gensozluk.txt", "w", encoding="utf-8")
sd = sorted(gensozluk.items(), key=lambda x:x[1], reverse=True)
for saz in sd:
s = "{:08d} {}\n".format(int(saz[1]), saz[0])
fout.write(s)
fout.close()
print()
print("{} Toplam= {} Ayrık= {} Bulunan= {} Bulunma Oranı= % {}".format(damga(),gentop, say,var,100*var/say))
print("{} Toplam= {} Ayrık= {} Bulunan= {} Bulunma Oranı= % {}".format(damga(),gentop, say,var,100*var/say),file=logfile)
logfile.flush()
def ekle(self, sozcuk, sayi =1):
kelime, frekans = self.kontrol(sozcuk)
if kelime is not None:
if frekans == 0:
sorgu_cumlesi = 'insert into sozcukler values("%s", 1) ' % kelime
self.sorgu(sorgu_cumlesi)
else:
sorgu_cumlesi = "update sozcukler set frekans = %d where sozcuk = '%s' " % (frekans + sayi, kelime)
self.sorgu(sorgu_cumlesi)
def kontrol(self, sozcuk):
cr = self.vt.cursor()
cr.execute('select * from sozcukler where sozcuk = "%s" ' % sozcuk)
cevaplar = cr.fetchall()
if len(cevaplar) > 1:
return None, "Birden fazla sozcuk dondu, problem var"
elif len(cevaplar) == 1:
return cevaplar[0]
else:
return sozcuk, 0
def hepsi_varmi(self,liste):
cr = self.vt.cursor()
for kelime, sayi_ in liste.items():
cr.execute('select * from sozcukler where sozcuk = "%s" ' % kelime)
cevaplar = cr.fetchall()
if len(cevaplar) <= 0:
print (kelime, sayi_)
return False
return True
def bellek_hepsi_varmi(self,liste):
for kelime, sayi_ in liste.items():
if kelime not in gensozluk.keys():
return False
return True
def kapat(self):
self.vt.commit()
self.vt.close()
class Derlem:
def __init__(self, icerik):
self.anasozluk = AnaSozluk()
self.icerik = icerik
self.incele()
def incele(self):
def is_tek_tire_var(sozcuk_):
if sozcuk_.count("-") == 1:
return True
return False
def is_tirnak_icinde(sozcuk_):
if sozcuk_[0] == "'" or sozcuk_[-1] == "'":
return True
elif sozcuk_[0] == '"' or sozcuk_[-1] == '"':
return True
else:
return False
def is_tek_tirnak_alpha(sozcuk_):
if is_tirnak_icinde(sozcuk_):
return False
var = sozcuk_.count("'")
if (sozcuk_[0] == "'") or (sozcuk_[-1] == "'"):
return False
say0 = sozcuk_.find("'")
if var == 1:
s1 = sozcuk_[:say0]
s2 = sozcuk_[say0 + 1:]
if s1.isalpha() and s2.isalpha():
return True
else:
return False
else:
return False
sozcukler = []
hatalar = []
satir0 = ""
for satir in self.icerik:
satir0 += str(satir).strip()
if len(satir0) > 0:
if satir0[-1] == "-":
satir0 = satir0[:-1]+' ' # Satır sonundaki tireyi boşluk yap
continue
else:
for ayirac in AYRACLAR:
satir0 = satir0.replace(ayirac, " ")
for kelime in satir0.split():
if kelime.isalpha():
sozcukler.append(kelime)
elif kelime.isalnum() or kelime.isdigit():
pass
else:
k = kelime.strip(AYRACLAR)
sozcukler.append(k)
satir0 = ""
temp = {}
gentop = 0 #Dokümandaki toplam sözcük sayısı
for sozcuk in sozcukler:
if (sozcuk == "") or (sozcuk.isdigit()):
continue
if is_tek_tirnak_alpha(sozcuk):
pass
elif is_tek_tire_var(sozcuk):
pass
elif sozcuk.isalpha():
pass
else:
hatalar.append(sozcuk)
continue
#sozcuk = sozcuk.lower()
gentop += 1
sozcuk = inceltme_yok(kucukHarfYap(sozcuk))
if sozcuk in temp:
temp[sozcuk] += 1
else:
temp[sozcuk] = 1
#Bulunan sözcüklerin tümü veritabanında mevcutsa,
# o doküman daha önce çok büyük olasılıkla taranmıştır
#if self.anasozluk.hepsi_varmi(temp)==True:
if self.anasozluk.bellek_hepsi_varmi(temp)==True:
print("{} Tüm kelimeler var! Bu belge daha önce taranmış!".format(damga()))
print("{} Tüm kelimeler var! Bu belge daha önce taranmış!".format(damga()),file=logfile)
logfile.flush()
else:
self.anasozluk.liste_ekle(temp,gentop)
"""
pdfminer3k örneği için aşağıdaki kitaptan yararlandım:
Web Scraping with Python:
Collecting Data from the Modern Web
Yazar: Ryan Mitchell
"""
#TODO: Bazı dosyalarda 'TextExtractionNot Allowed' durumu var. Belki bir çözüm bulunabilir.
#Şimdilik bunları try-except bloğu ile atlıyoruz.
class PDFDerlemMiner(Derlem):
def __init__(self, hedef):
from pdfminer.pdfinterp import PDFResourceManager, process_pdf
from pdfminer.converter import TextConverter
from pdfminer.layout import LAParams
from io import StringIO
from io import open
def readPdf(pdfFile):
content =''
try:
rsrcmgr = PDFResourceManager()
retstr = StringIO()
laparams = LAParams()
device = TextConverter(rsrcmgr,retstr,laparams=laparams)
process_pdf(rsrcmgr,device,pdfFile)
device.close()
content = retstr.getvalue()
retstr.close()
except Exception as e:
print("{} {}".format(damga(),e))
print("{} {}".format(damga(),e),file=logfile)
logfile.flush()
pass
return content
icerik = ""
pdfFile = open(hedef,"rb")
pdf = readPdf(pdfFile)
#print(pdf)
pdfFile.close()
Derlem.__init__(self, pdf.splitlines(True))
class HTMLDerlem(Derlem):
def __init__(self, hedef):
from bs4 import BeautifulSoup
import urllib.request
text = ""
url = hedef
html = urllib.request.urlopen(url).read()
soup = BeautifulSoup(html,"lxml")
if soup is not None:
for script in soup(["script", "style"]):
script.extract() # rip it out
text = soup.getText()
lines = (line.strip() for line in text.splitlines())
# break multi-headlines into a line each
chunks = (phrase.strip() for line in lines for phrase in line.split(" "))
# drop blank lines
text = '\n'.join(chunk for chunk in chunks if chunk)
#Derlem.__init__(self, text.encode("utf-8").splitlines(True))
Derlem.__init__(self, text.splitlines(True))
class TXTDerlem(Derlem):
def __init__(self, hedef):
icerik = ""
with open(hedef,encoding="utf-8") as fdosya:
for sat in fdosya:
icerik += sat
Derlem.__init__(self, icerik.splitlines(True))
class TXTDerlemTR(Derlem):
def __init__(self, hedef):
icerik = ""
try:
with open(hedef,encoding="utf-8") as fdosya:
for sat in fdosya:
icerik += sat
except UnicodeDecodeError:
with open(hedef,encoding="cp1254") as fdosya:
for sat in fdosya:
icerik += sat
Derlem.__init__(self, icerik.splitlines(True))
#Veritabanındaki bilgileri kolay algılanır şekilde metin dosyasına
#en yüksek frekans en başta olacak şekilde yazıyoruz
#Hatalı girişler zamanla listenin sonunda kalacakları için elenecekler
def dosyaya():
vt = sql.connect('anasozluk.db')
tf = open("veri/sqlite_dokum.txt","w")
cr = vt.cursor()
sorgu = "select * from sozcukler ORDER BY frekans DESC"
cr.execute(sorgu)
vt.commit()
cevaplar = cr.fetchall()
if cevaplar:
for cevap in cevaplar:
satir = "{:08d} {}\n".format(cevap[1],cevap[0])
tf.write(satir)
tf.close()
vt.close()
def txt_dosyabul(klasor):
liste = []
#klasördeki .txt uzantılı ve ismi zzz_ ile başlamayan dosyaları bul
for dir, dirs, files in os.walk(klasor):
for dosya in files:
if dosya.endswith(".txt"):
liste.append(dosya)
return klasor, liste
def pdf_dosyabul(klasor):
liste = []
for dir, dirs, files in os.walk(klasor):
for dosya in files:
if dosya.endswith(".pdf"):
liste.append(dosya)
return klasor, liste
if __name__ == '__main__':
#assert kucukHarfYap("ÇĞIİÖŞÜ")=="çğıiöşü"
basla = time.perf_counter()
#htmltest = HTMLDerlem("http://manap.se/test.txt")
#pdftest = PDFDerlemMiner("veri/test.pdf")
#txttest = TXTDerlem("veri/txttest.txt")
#dosyaya()
TXT_KLASOR = "D:/aaa-kaynaklar"
PDF_KLASOR = "D:/aaa-pdfler"
gensozluk_oku()
dosyasay =0
#txt uzantılı dosyalar
klasor, dosyalar = txt_dosyabul(TXT_KLASOR)
for d in dosyalar:
dosyasay +=1
print("{} {:06d} {}".format(damga(),dosyasay,d))
print("{} {:06d} {}".format(damga(),dosyasay,d), file=logfile)
txttest = TXTDerlemTR(klasor+"/"+d)
print("{} Toplam çalışma süresi = {} saniye".format(damga(),time.perf_counter()-basla))
print("{} Toplam çalışma süresi = {} saniye".format(damga(),time.perf_counter()-basla),file=logfile)
logfile.flush()
#pdf uzantılı dosyalar
klasor, dosyalar = pdf_dosyabul(PDF_KLASOR)
for d in dosyalar:
dosyasay +=1
print("{} {:06d} {}".format(damga(),dosyasay,d))
print("{} {:06d} {}".format(damga(),dosyasay,d), file=logfile)
pdftest = PDFDerlemMiner(klasor+"/"+d)
print("{} Toplam çalışma süresi = {} saniye".format(damga(),time.perf_counter()-basla))
print("{} Toplam çalışma süresi = {} saniye".format(damga(),time.perf_counter()-basla),file=logfile)
logfile.flush()
#log dosyamızı kapatıyoruz
if logfile:
logfile.close()