-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChineseDB.py
484 lines (393 loc) · 11.4 KB
/
ChineseDB.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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
# ChineseDB.py
import sys, os, re, sqlite3
from collections import namedtuple
from urllib.request import urlopen
from urllib.error import HTTPError
from bs4 import BeautifulSoup
from more_itertools import ilen
from pinyin_utils import getVersion, convertPinyin
from tabdb import tabdb
from englishWords import fixWord
reInt = re.compile(r'^\s*(\d+)')
__VERSION__ = getVersion()
# ===========================================================================
class ChineseDB:
def __init__(self, filename='./Chinese.db'):
db = self.db = sqlite3.connect(filename)
self.createMissingTables()
self.setChars = set(())
# ------------------------------------------------------------------------
def createMissingTables(self):
# --- NOTE: sqlite adds a column named rowid to each table
self.do('''
create table if not exists
chars (
Char text primary key,
CharOrder integer unique,
FirstWordNum integer null,
Pinyin text,
Meaning text
);
create table if not exists
words (
Word text primary key,
WordFreq integer,
Pinyin text,
PartOfSpeech char(1),
Meaning text
);
create table if not exists
english (
Word text primary key,
WordFreq integer,
Chinese text,
Pinyin text
);
create table if not exists
abbrev (
Word text primary key,
WordFreq integer,
Meaning text
);
''')
# ------------------------------------------------------------------------
def rebuildTables(self, *args):
for table in args:
if table in ['chars','words','english','abbrev']:
self.do(f"drop table {table}")
else:
raise Exception(f"No such table: {table}")
self.createMissingTables()
# ------------------------------------------------------------------------
# ------------------------------------------------------------------------
def numChars(self):
return self.fetch('select count(*) from chars')
# ------------------------------------------------------------------------
def chars(self, min=0, max=999999, *, debug=False):
if debug:
print(f"CALL chars({min}, {max})")
assert type(min) == int
assert type(max) == int
sql = f'''
select Char, CharOrder, Pinyin, Meaning
from chars
order by FirstWordNum, CharOrder
limit {max-min} offset {min}
'''
if debug:
print(f"SQL:\n{sql}")
cursor = self.db.cursor()
for row in cursor.execute(sql):
yield {
'Char': row[0],
'CharOrder': row[1],
'Pinyin': row[2],
'Meaning': row[3],
}
# ------------------------------------------------------------------------
def setChar(self, h):
(ch, n, pinyin, meaning) = (h[key] for key in
('Char','CharOrder','Pinyin','Meaning')
)
assert len(ch) == 1
self.do('''
insert or replace into chars
(Char, CharOrder, Pinyin, Meaning)
values(?,?,?,?)
''',
(ch, n, pinyin, meaning)
)
self.setChars.add(ch)
# ------------------------------------------------------------------------
def setCharMeaning(self, ch, meaning):
self.do('''
update chars
set Meaning = ?
where Char = ?
''',
(meaning, ch)
)
# ------------------------------------------------------------------------
def setFirstWordNum(self, ch, num):
self.do('''
update chars
set FirstWordNum = ?
where Char = ?
and FirstWordNum is null
''',
(num, ch)
)
# ------------------------------------------------------------------------
def buildSetOfChars(self):
nChars = 0
for h in self.chars():
nChars += 1
self.setChars.add(h['Char'])
print(f"buildSetOfChars(): {nChars} chars found")
# ------------------------------------------------------------------------
# ------------------------------------------------------------------------
def setWord(self, h):
# --- NOTE: We only want to add a word if all of its characters
# exist in the chars table
(word, freq, pinyin, part, meaning) = (
h[key] for key in (
'Word','WordFreq','Pinyin','PartOfSpeech','Meaning')
)
assert type(word) == str
for ch in word:
if ch not in self.setChars:
return False
if (len(part) == 0):
part = ' '
else:
part = part[0]
if len(word) == 1:
# --- Get pinyin and meaning from chars table
(pinyin, meaning) = self.fetchrow('''
select Pinyin, Meaning
from chars
where Char = ?
''', (word))
self.do('''
insert or replace into words
(Word, WordFreq, Pinyin, PartOfSpeech, Meaning)
values(?,?,?,?,?)
''',
(word, freq, pinyin, part, meaning)
)
return True
# ------------------------------------------------------------------------
def numWords(self):
return self.fetch('select count(*) from words')
# ------------------------------------------------------------------------
def words(self, min=0, max=999999, *, debug=False):
if debug:
print(f"CALL words({min}, {max})")
assert type(min) == int
assert type(max) == int
sql = f'''
select Word, WordFreq, Pinyin, PartOfSpeech, Meaning
from words
order by WordFreq desc
limit {max-min} offset {min}
'''
if debug:
print(f"SQL:\n{sql}")
cursor = self.db.cursor()
for row in cursor.execute(sql):
yield {
'Word': row[0],
'WordFreq': row[1],
'Pinyin': row[2],
'PartOfSpeech': row[3],
'Meaning': row[4],
}
# ------------------------------------------------------------------------
# ------------------------------------------------------------------------
def setEnglishWord(self, h):
(word, freq, chinese, pinyin) = (
h[key] for key in (
'Word','WordFreq','Chinese','Pinyin')
)
assert word and type(word) == str
assert not freq or type(freq) == int
assert not chinese or type(chinese) == str
assert not pinyin or type(pinyin) == str
self.do('''
insert or replace into english
(Word, WordFreq, Chinese, Pinyin)
values(?,?,?,?)
''',
(word, freq, chinese, pinyin)
)
# ------------------------------------------------------------------------
def setAbbrev(self, h, expanded):
word = h['Word']
freq = h['WordFreq']
assert word and type(word) == str
assert not freq or type(freq) == int
self.do('''
insert or replace into abbrev
(Word, WordFreq, Meaning)
values(?,?,?)
''',
(word, freq, expanded)
)
return True
# ------------------------------------------------------------------------
def numEnglishWords(self):
return self.fetch('select count(*) from english')
# ------------------------------------------------------------------------
def englishWords(self, min=0, max=999999, *, debug=False):
if debug:
print(f"CALL englishWords({min}, {max})")
assert type(min) == int
assert type(max) == int
sql = f'''
select Word, WordFreq, Chinese, Pinyin
from english
order by WordFreq desc
limit {max-min} offset {min}
'''
if debug:
print(f"SQL:\n{sql}")
cursor = self.db.cursor()
for row in cursor.execute(sql):
yield {
'Word': row[0],
'WordFreq': row[1],
'Chinese': row[2],
'Pinyin': row[3],
}
# ------------------------------------------------------------------------
# ------------------------------------------------------------------------
def do(self, sql, lData=None):
assert type(sql) == str
sql = sql.strip()
cursor = self.db.cursor()
pos = sql.find(';')
length = len(sql)
if (pos > -1) and (pos != length-1):
if lData:
raise Exception("You cannot provide lData if SQL contains ';'")
cursor.executescript(sql)
else:
try:
if lData:
cursor.execute(sql, lData)
else:
cursor.execute(sql)
except Exception as ex:
self.dumpSQL(sql)
print(f"ERROR: {ex}")
sys.exit(-1)
self.db.commit()
# ------------------------------------------------------------------------
def dumpSQL(self, sql):
print('-' * 65)
print(sql.replace('\t',' '))
print('-' * 65)
# ------------------------------------------------------------------------
def fetchrow(self, sql, lData=None): # fetch a single row
assert type(sql) == str
cursor = self.db.cursor()
if lData:
cursor.execute(sql, lData)
else:
cursor.execute(sql)
lRow = cursor.fetchone()
if lRow:
return lRow
else:
return None
# ------------------------------------------------------------------------
def fetch(self, sql, lData=None): # fetch a single field
assert type(sql) == str
cursor = self.db.cursor()
if lData:
cursor.execute(sql, lData)
else:
cursor.execute(sql)
lRow = cursor.fetchone()
if lRow:
return lRow[0]
else:
return None
# ===========================================================================
def getHanziURL(page):
assert (page >= 0) and (page <= 99)
baseURL = 'http://hanzidb.org/character-list/by-frequency?page='
return baseURL + str(page+1)
# ---------------------------------------------------------------------------
def hanziChars(debug=True):
h = {} # always yield this dictionary
for page in range(100):
if debug:
print(f"Fetching HanZI page {page}")
url = getHanziURL(page)
html = urlopen(url).read()
bs = BeautifulSoup(html, 'lxml')
lTables = bs.find_all('table')
if len(lTables) != 1:
raise Exception(f"There are {len(lTables)} tables on the page")
table = lTables[0]
# --- Cycle through all table rows
nRows = 0
for tr in table.find_all('tr'):
if nRows == 0:
# --- Skip the header row
nRows = 1
continue
lCells = tr.find_all('td')
yield {
'Char': lCells[0].get_text(),
'CharOrder': int(lCells[7].get_text()),
'Pinyin': lCells[1].get_text(),
'Meaning': lCells[2].get_text(),
}
# ===========================================================================
def getEnglishURL(page):
# OLD URL: http://www.naturalenglish.club/esl/{page * 1000}.php
min = 1 + page * 1000
max = min + 999
return (
f'https://en.wiktionary.org/wiki/Wiktionary:Frequency_lists'
f'/TV/2006/{min}-{max}')
# ---------------------------------------------------------------------------
def englishWords(debug=False):
# --- Get English words from Wiktionary
global reInt
h = {} # always yield this dictionary
for page in range(10):
if debug:
print(f"Fetching Wiktionary page {page}")
url = getEnglishURL(page)
html = urlopen(url).read()
bs = BeautifulSoup(html, 'lxml')
lTables = bs.find_all('table')
if len(lTables) != 1:
raise Exception(f"There are {len(lTables)} tables on the page")
table = lTables[0]
# --- Cycle through all table rows
nRows = 0
for tr in table.find_all('tr'):
if nRows == 0:
# --- Skip the header row
nRows = 1
continue
lCells = tr.find_all('td')
freq = lCells[2].get_text()
result = reInt.search(freq)
if result:
freq = result.group(1)
else:
raise Exception(f"Invalid frequency: '{freq}'")
word = lCells[1].get_text()
word = fixWord(word)
if word:
yield {
'Word': word,
'WordFreq': int(freq),
'Chinese': None,
'Pinyin': None,
}
# ===========================================================================
def chineseWords(filepath, debug=False):
try:
lReq = ('Word','Pinyin','WCount','Dominant.PoS','Eng.Tran.')
for h in tabdb(filepath='./ChineseWords.txt', lRequire=lReq):
pinyin = h['Pinyin']
try:
pinyin = convertPinyin(pinyin)
except:
pass # happens if string contains no vowel
yield {
'Word': h['Word'],
'Pinyin': pinyin,
'WordFreq': h['WCount'],
'PartOfSpeech': h['Dominant.PoS'],
'Meaning': h['Eng.Tran.']
}
except Exception as ex:
print(ex)
sys.exit(-1)