Preprocessing.py 135 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751
  1. # -*- coding: utf-8 -*-
  2. from bs4 import BeautifulSoup, Comment
  3. import copy
  4. import sys
  5. import os
  6. import time
  7. import codecs
  8. from BiddingKG.dl.ratio.re_ratio import extract_ratio
  9. sys.setrecursionlimit(1000000)
  10. sys.path.append(os.path.abspath("../.."))
  11. sys.path.append(os.path.abspath(".."))
  12. from BiddingKG.dl.common.Utils import *
  13. from BiddingKG.dl.interface.Entitys import *
  14. from BiddingKG.dl.interface.predictor import getPredictor
  15. from BiddingKG.dl.common.nerUtils import *
  16. from BiddingKG.dl.money.moneySource.ruleExtra import extract_moneySource
  17. from BiddingKG.dl.time.re_servicetime import extract_servicetime
  18. from BiddingKG.dl.relation_extraction.re_email import extract_email
  19. from BiddingKG.dl.bidway.re_bidway import extract_bidway,bidway_integrate
  20. from BiddingKG.dl.fingerprint.documentFingerprint import getFingerprint
  21. from BiddingKG.dl.entityLink.entityLink import *
  22. #
  23. def tableToText(soup):
  24. '''
  25. @param:
  26. soup:网页html的soup
  27. @return:处理完表格信息的网页text
  28. '''
  29. def getTrs(tbody):
  30. #获取所有的tr
  31. trs = []
  32. objs = tbody.find_all(recursive=False)
  33. for obj in objs:
  34. if obj.name=="tr":
  35. trs.append(obj)
  36. if obj.name=="tbody":
  37. for tr in obj.find_all("tr",recursive=False):
  38. trs.append(tr)
  39. return trs
  40. def fixSpan(tbody):
  41. # 处理colspan, rowspan信息补全问题
  42. #trs = tbody.findChildren('tr', recursive=False)
  43. trs = getTrs(tbody)
  44. ths_len = 0
  45. ths = list()
  46. trs_set = set()
  47. #修改为先进行列补全再进行行补全,否则可能会出现表格解析混乱
  48. # 遍历每一个tr
  49. for indtr, tr in enumerate(trs):
  50. ths_tmp = tr.findChildren('th', recursive=False)
  51. #不补全含有表格的tr
  52. if len(tr.findChildren('table'))>0:
  53. continue
  54. if len(ths_tmp) > 0:
  55. ths_len = ths_len + len(ths_tmp)
  56. for th in ths_tmp:
  57. ths.append(th)
  58. trs_set.add(tr)
  59. # 遍历每行中的element
  60. tds = tr.findChildren(recursive=False)
  61. for indtd, td in enumerate(tds):
  62. # 若有colspan 则补全同一行下一个位置
  63. if 'colspan' in td.attrs:
  64. if str(re.sub("[^0-9]","",str(td['colspan'])))!="":
  65. col = int(re.sub("[^0-9]","",str(td['colspan'])))
  66. if col<100 and len(td.get_text())<1000:
  67. td['colspan'] = 1
  68. for i in range(1, col, 1):
  69. td.insert_after(copy.copy(td))
  70. for indtr, tr in enumerate(trs):
  71. ths_tmp = tr.findChildren('th', recursive=False)
  72. #不补全含有表格的tr
  73. if len(tr.findChildren('table'))>0:
  74. continue
  75. if len(ths_tmp) > 0:
  76. ths_len = ths_len + len(ths_tmp)
  77. for th in ths_tmp:
  78. ths.append(th)
  79. trs_set.add(tr)
  80. # 遍历每行中的element
  81. tds = tr.findChildren(recursive=False)
  82. for indtd, td in enumerate(tds):
  83. # 若有rowspan 则补全下一行同样位置
  84. if 'rowspan' in td.attrs:
  85. if str(re.sub("[^0-9]","",str(td['rowspan'])))!="":
  86. row = int(re.sub("[^0-9]","",str(td['rowspan'])))
  87. td['rowspan'] = 1
  88. for i in range(1, row, 1):
  89. # 获取下一行的所有td, 在对应的位置插入
  90. if indtr+i<len(trs):
  91. tds1 = trs[indtr + i].findChildren(['td','th'], recursive=False)
  92. if len(tds1) >= (indtd) and len(tds1)>0:
  93. if indtd > 0:
  94. tds1[indtd - 1].insert_after(copy.copy(td))
  95. else:
  96. tds1[0].insert_before(copy.copy(td))
  97. elif indtd-2>0 and len(tds1) > 0 and len(tds1) == indtd - 1: # 修正某些表格最后一列没补全
  98. tds1[indtd-2].insert_after(copy.copy(td))
  99. def getTable(tbody):
  100. #trs = tbody.findChildren('tr', recursive=False)
  101. trs = getTrs(tbody)
  102. inner_table = []
  103. for tr in trs:
  104. tr_line = []
  105. tds = tr.findChildren(['td','th'], recursive=False)
  106. if len(tds)==0:
  107. tr_line.append([re.sub('\xa0','',segment(tr,final=False)),0]) # 2021/12/21 修复部分表格没有td 造成数据丢失
  108. for td in tds:
  109. tr_line.append([re.sub('\xa0','',segment(td,final=False)),0])
  110. #tr_line.append([td.get_text(),0])
  111. inner_table.append(tr_line)
  112. return inner_table
  113. #处理表格不对齐的问题
  114. def fixTable(inner_table,fix_value="~~"):
  115. maxWidth = 0
  116. for item in inner_table:
  117. if len(item)>maxWidth:
  118. maxWidth = len(item)
  119. for i in range(len(inner_table)):
  120. if len(inner_table[i])<maxWidth:
  121. for j in range(maxWidth-len(inner_table[i])):
  122. inner_table[i].append([fix_value,0])
  123. return inner_table
  124. def removePadding(inner_table,pad_row = "@@",pad_col = "##"):
  125. height = len(inner_table)
  126. width = len(inner_table[0])
  127. for i in range(height):
  128. point = ""
  129. for j in range(width):
  130. if inner_table[i][j][0]==point and point!="":
  131. inner_table[i][j][0] = pad_row
  132. else:
  133. if inner_table[i][j][0] not in [pad_row,pad_col]:
  134. point = inner_table[i][j][0]
  135. for j in range(width):
  136. point = ""
  137. for i in range(height):
  138. if inner_table[i][j][0]==point and point!="":
  139. inner_table[i][j][0] = pad_col
  140. else:
  141. if inner_table[i][j][0] not in [pad_row,pad_col]:
  142. point = inner_table[i][j][0]
  143. def addPadding(inner_table,pad_row = "@@",pad_col = "##"):
  144. height = len(inner_table)
  145. width = len(inner_table[0])
  146. for i in range(height):
  147. for j in range(width):
  148. if inner_table[i][j][0]==pad_row:
  149. inner_table[i][j][0] = inner_table[i][j-1][0]
  150. inner_table[i][j][1] = inner_table[i][j-1][1]
  151. if inner_table[i][j][0]==pad_col:
  152. inner_table[i][j][0] = inner_table[i-1][j][0]
  153. inner_table[i][j][1] = inner_table[i-1][j][1]
  154. def repairTable(inner_table,dye_set = set(),key_set = set(),fix_value="~~"):
  155. '''
  156. @summary: 修复表头识别,将明显错误的进行修正
  157. '''
  158. def repairNeeded(line):
  159. first_1 = -1
  160. last_1 = -1
  161. first_0 = -1
  162. last_0 = -1
  163. count_1 = 0
  164. count_0 = 0
  165. for i in range(len(line)):
  166. if line[i][0]==fix_value:
  167. continue
  168. if line[i][1]==1:
  169. if first_1==-1:
  170. first_1 = i
  171. last_1 = i
  172. count_1 += 1
  173. if line[i][1]==0:
  174. if first_0 == -1:
  175. first_0 = i
  176. last_0 = i
  177. count_0 += 1
  178. if first_1 ==-1 or last_0 == -1:
  179. return False
  180. #异常情况:第一个不是表头;最后一个是表头;表头个数远大于属性值个数
  181. if first_1-0>0 or last_0-len(line)+1<0 or last_1==len(line)-1 or count_1-count_0>=3:
  182. return True
  183. return False
  184. def getsimilarity(line,line1):
  185. same_count = 0
  186. for item,item1 in zip(line,line1):
  187. if item[1]==item1[1]:
  188. same_count += 1
  189. return same_count/len(line)
  190. def selfrepair(inner_table,index,dye_set,key_set):
  191. '''
  192. @summary: 计算每个节点受到的挤压度来判断是否需要染色
  193. '''
  194. #print("B",inner_table[index])
  195. min_presure = 3
  196. list_dye = []
  197. first = None
  198. count = 0
  199. temp_set = set()
  200. _index = 0
  201. for item in inner_table[index]:
  202. if first is None:
  203. first = item[1]
  204. if item[0] not in temp_set:
  205. count += 1
  206. temp_set.add(item[0])
  207. else:
  208. if first == item[1]:
  209. if item[0] not in temp_set:
  210. temp_set.add(item[0])
  211. count += 1
  212. else:
  213. list_dye.append([first,count,_index])
  214. first = item[1]
  215. temp_set.add(item[0])
  216. count = 1
  217. _index += 1
  218. list_dye.append([first,count,_index])
  219. if len(list_dye)>1:
  220. begin = 0
  221. end = 0
  222. for i in range(len(list_dye)):
  223. end = list_dye[i][2]
  224. dye_flag = False
  225. #首尾要求压力减一
  226. if i==0:
  227. if list_dye[i+1][1]-list_dye[i][1]+1>=min_presure-1:
  228. dye_flag = True
  229. dye_type = list_dye[i+1][0]
  230. elif i==len(list_dye)-1:
  231. if list_dye[i-1][1]-list_dye[i][1]+1>=min_presure-1:
  232. dye_flag = True
  233. dye_type = list_dye[i-1][0]
  234. else:
  235. if list_dye[i][1]>1:
  236. if list_dye[i+1][1]-list_dye[i][1]+1>=min_presure:
  237. dye_flag = True
  238. dye_type = list_dye[i+1][0]
  239. if list_dye[i-1][1]-list_dye[i][1]+1>=min_presure:
  240. dye_flag = True
  241. dye_type = list_dye[i-1][0]
  242. else:
  243. if list_dye[i+1][1]+list_dye[i-1][1]-list_dye[i][1]+1>=min_presure:
  244. dye_flag = True
  245. dye_type = list_dye[i+1][0]
  246. if list_dye[i+1][1]+list_dye[i-1][1]-list_dye[i][1]+1>=min_presure:
  247. dye_flag = True
  248. dye_type = list_dye[i-1][0]
  249. if dye_flag:
  250. for h in range(begin,end):
  251. inner_table[index][h][1] = dye_type
  252. dye_set.add((inner_table[index][h][0],dye_type))
  253. key_set.add(inner_table[index][h][0])
  254. begin = end
  255. #print("E",inner_table[index])
  256. def otherrepair(inner_table,index,dye_set,key_set):
  257. list_provide_repair = []
  258. if index==0 and len(inner_table)>1:
  259. list_provide_repair.append(index+1)
  260. elif index==len(inner_table)-1:
  261. list_provide_repair.append(index-1)
  262. else:
  263. list_provide_repair.append(index+1)
  264. list_provide_repair.append(index-1)
  265. for provide_index in list_provide_repair:
  266. if not repairNeeded(inner_table[provide_index]):
  267. same_prob = getsimilarity(inner_table[index], inner_table[provide_index])
  268. if same_prob>=0.8:
  269. for i in range(len(inner_table[provide_index])):
  270. if inner_table[index][i][1]!=inner_table[provide_index][i][1]:
  271. dye_set.add((inner_table[index][i][0],inner_table[provide_index][i][1]))
  272. key_set.add(inner_table[index][i][0])
  273. inner_table[index][i][1] = inner_table[provide_index][i][1]
  274. elif same_prob<=0.2:
  275. for i in range(len(inner_table[provide_index])):
  276. if inner_table[index][i][1]==inner_table[provide_index][i][1]:
  277. dye_set.add((inner_table[index][i][0],inner_table[provide_index][i][1]))
  278. key_set.add(inner_table[index][i][0])
  279. inner_table[index][i][1] = 0 if inner_table[provide_index][i][1] ==1 else 1
  280. len_dye_set = len(dye_set)
  281. height = len(inner_table)
  282. for i in range(height):
  283. if repairNeeded(inner_table[i]):
  284. selfrepair(inner_table,i,dye_set,key_set)
  285. #otherrepair(inner_table,i,dye_set,key_set)
  286. for h in range(len(inner_table)):
  287. for w in range(len(inner_table[0])):
  288. if inner_table[h][w][0] in key_set:
  289. for item in dye_set:
  290. if inner_table[h][w][0]==item[0]:
  291. inner_table[h][w][1] = item[1]
  292. #如果两个set长度不相同,则有同一个key被反复染色,将导致无限迭代
  293. if len(dye_set)!=len(key_set):
  294. for i in range(height):
  295. if repairNeeded(inner_table[i]):
  296. selfrepair(inner_table,i,dye_set,key_set)
  297. #otherrepair(inner_table,i,dye_set,key_set)
  298. return
  299. if len(dye_set)==len_dye_set:
  300. '''
  301. for i in range(height):
  302. if repairNeeded(inner_table[i]):
  303. otherrepair(inner_table,i,dye_set,key_set)
  304. '''
  305. return
  306. repairTable(inner_table, dye_set, key_set)
  307. def sliceTable(inner_table,fix_value="~~"):
  308. #进行分块
  309. height = len(inner_table)
  310. width = len(inner_table[0])
  311. head_list = []
  312. head_list.append(0)
  313. last_head = None
  314. last_is_same_value = False
  315. for h in range(height):
  316. is_all_key = True#是否是全表头行
  317. is_all_value = True#是否是全属性值
  318. is_same_with_lastHead = True#和上一行的结构是否相同
  319. is_same_value=True#一行的item都一样
  320. #is_same_first_item = True#与上一行的第一项是否相同
  321. same_value = inner_table[h][0][0]
  322. for w in range(width):
  323. if last_head is not None:
  324. if inner_table[h-1][w][0]!=fix_value and inner_table[h-1][w][1] == 0:
  325. is_all_key = False
  326. if inner_table[h][w][0]==1:
  327. is_all_value = False
  328. if inner_table[h][w][1]!= inner_table[h-1][w][1]:
  329. is_same_with_lastHead = False
  330. if inner_table[h][w][0]!=fix_value and inner_table[h][w][0]!=same_value:
  331. is_same_value = False
  332. else:
  333. if re.search("\d+",same_value) is not None:
  334. is_same_value = False
  335. if h>0 and inner_table[h][0][0]!=inner_table[h-1][0][0]:
  336. is_same_first_item = False
  337. last_head = h
  338. if last_is_same_value:
  339. last_is_same_value = is_same_value
  340. continue
  341. if is_same_value:
  342. head_list.append(h)
  343. last_is_same_value = is_same_value
  344. continue
  345. if not is_all_key:
  346. if not is_same_with_lastHead:
  347. head_list.append(h)
  348. head_list.append(height)
  349. return head_list
  350. def setHead_initem(inner_table,pat_head,fix_value="~~",prob_min=0.5):
  351. set_item = set()
  352. height = len(inner_table)
  353. width = len(inner_table[0])
  354. for i in range(height):
  355. for j in range(width):
  356. item = inner_table[i][j][0]
  357. set_item.add(item)
  358. list_item = list(set_item)
  359. x = []
  360. for item in list_item:
  361. x.append(getPredictor("form").encode(item))
  362. predict_y = getPredictor("form").predict(np.array(x),type="item")
  363. _dict = dict()
  364. for item,values in zip(list_item,list(predict_y)):
  365. _dict[item] = values[1]
  366. # print("##",item,values)
  367. #print(_dict)
  368. for i in range(height):
  369. for j in range(width):
  370. item = inner_table[i][j][0]
  371. inner_table[i][j][1] = 1 if _dict[item]>prob_min else (1 if re.search(pat_head,item) is not None and len(item)<8 else 0)
  372. # print("=====")
  373. # for item in inner_table:
  374. # print(item)
  375. # print("======")
  376. repairTable(inner_table)
  377. head_list = sliceTable(inner_table)
  378. return inner_table,head_list
  379. def setHead_incontext(inner_table,pat_head,fix_value="~~",prob_min=0.5):
  380. data_x,data_position = getPredictor("form").getModel("context").encode(inner_table)
  381. predict_y = getPredictor("form").getModel("context").predict(data_x)
  382. for _position,_y in zip(data_position,predict_y):
  383. _w = _position[0]
  384. _h = _position[1]
  385. if _y[1]>prob_min:
  386. inner_table[_h][_w][1] = 1
  387. else:
  388. inner_table[_h][_w][1] = 0
  389. _item = inner_table[_h][_w][0]
  390. if re.search(pat_head,_item) is not None and len(_item)<8:
  391. inner_table[_h][_w][1] = 1
  392. # print("=====")
  393. # for item in inner_table:
  394. # print(item)
  395. # print("======")
  396. height = len(inner_table)
  397. width = len(inner_table[0])
  398. for i in range(height):
  399. for j in range(width):
  400. if re.search("[::]$", inner_table[i][j][0]) and len(inner_table[i][j][0])<8:
  401. inner_table[i][j][1] = 1
  402. repairTable(inner_table)
  403. head_list = sliceTable(inner_table)
  404. # print("inner_table:",inner_table)
  405. return inner_table,head_list
  406. #设置表头
  407. def setHead_inline(inner_table,prob_min=0.64):
  408. pad_row = "@@"
  409. pad_col = "##"
  410. removePadding(inner_table, pad_row, pad_col)
  411. pad_pattern = re.compile(pad_row+"|"+pad_col)
  412. height = len(inner_table)
  413. width = len(inner_table[0])
  414. head_list = []
  415. head_list.append(0)
  416. #行表头
  417. is_head_last = False
  418. for i in range(height):
  419. is_head = False
  420. is_long_value = False
  421. #判断是否是全padding值
  422. is_same_value = True
  423. same_value = inner_table[i][0][0]
  424. for j in range(width):
  425. if inner_table[i][j][0]!=same_value and inner_table[i][j][0]!=pad_row:
  426. is_same_value = False
  427. break
  428. #predict is head or not with model
  429. temp_item = ""
  430. for j in range(width):
  431. temp_item += inner_table[i][j][0]+"|"
  432. temp_item = re.sub(pad_pattern,"",temp_item)
  433. form_prob = getPredictor("form").predict(formEncoding(temp_item,expand=True),type="line")
  434. if form_prob is not None:
  435. if form_prob[0][1]>prob_min:
  436. is_head = True
  437. else:
  438. is_head = False
  439. #print(temp_item,form_prob)
  440. if len(inner_table[i][0][0])>40:
  441. is_long_value = True
  442. if is_head or is_long_value or is_same_value:
  443. #不把连续表头分开
  444. if not is_head_last:
  445. head_list.append(i)
  446. if is_long_value or is_same_value:
  447. head_list.append(i+1)
  448. if is_head:
  449. for j in range(width):
  450. inner_table[i][j][1] = 1
  451. is_head_last = is_head
  452. head_list.append(height)
  453. #列表头
  454. for i in range(len(head_list)-1):
  455. head_begin = head_list[i]
  456. head_end = head_list[i+1]
  457. #最后一列不设置为列表头
  458. for i in range(width-1):
  459. is_head = False
  460. #predict is head or not with model
  461. temp_item = ""
  462. for j in range(head_begin,head_end):
  463. temp_item += inner_table[j][i][0]+"|"
  464. temp_item = re.sub(pad_pattern,"",temp_item)
  465. form_prob = getPredictor("form").predict(formEncoding(temp_item,expand=True),type="line")
  466. if form_prob is not None:
  467. if form_prob[0][1]>prob_min:
  468. is_head = True
  469. else:
  470. is_head = False
  471. if is_head:
  472. for j in range(head_begin,head_end):
  473. inner_table[j][i][1] = 2
  474. addPadding(inner_table, pad_row, pad_col)
  475. return inner_table,head_list
  476. #设置表头
  477. def setHead_withRule(inner_table,pattern,pat_value,count):
  478. height = len(inner_table)
  479. width = len(inner_table[0])
  480. head_list = []
  481. head_list.append(0)
  482. #行表头
  483. is_head_last = False
  484. for i in range(height):
  485. set_match = set()
  486. is_head = False
  487. is_long_value = False
  488. is_same_value = True
  489. same_value = inner_table[i][0][0]
  490. for j in range(width):
  491. if inner_table[i][j][0]!=same_value:
  492. is_same_value = False
  493. break
  494. for j in range(width):
  495. if re.search(pat_value,inner_table[i][j][0]) is not None:
  496. is_head = False
  497. break
  498. str_find = re.findall(pattern,inner_table[i][j][0])
  499. if len(str_find)>0:
  500. set_match.add(inner_table[i][j][0])
  501. if len(set_match)>=count:
  502. is_head = True
  503. if len(inner_table[i][0][0])>40:
  504. is_long_value = True
  505. if is_head or is_long_value or is_same_value:
  506. if not is_head_last:
  507. head_list.append(i)
  508. if is_head:
  509. for j in range(width):
  510. inner_table[i][j][1] = 1
  511. is_head_last = is_head
  512. head_list.append(height)
  513. #列表头
  514. for i in range(len(head_list)-1):
  515. head_begin = head_list[i]
  516. head_end = head_list[i+1]
  517. #最后一列不设置为列表头
  518. for i in range(width-1):
  519. set_match = set()
  520. is_head = False
  521. for j in range(head_begin,head_end):
  522. if re.search(pat_value,inner_table[j][i][0]) is not None:
  523. is_head = False
  524. break
  525. str_find = re.findall(pattern,inner_table[j][i][0])
  526. if len(str_find)>0:
  527. set_match.add(inner_table[j][i][0])
  528. if len(set_match)>=count:
  529. is_head = True
  530. if is_head:
  531. for j in range(head_begin,head_end):
  532. inner_table[j][i][1] = 2
  533. return inner_table,head_list
  534. #取得表格的处理方向
  535. def getDirect(inner_table,begin,end):
  536. '''
  537. column_head = set()
  538. row_head = set()
  539. widths = len(inner_table[0])
  540. for height in range(begin,end):
  541. for width in range(widths):
  542. if inner_table[height][width][1] ==1:
  543. row_head.add(height)
  544. if inner_table[height][width][1] ==2:
  545. column_head.add(width)
  546. company_pattern = re.compile("公司")
  547. if 0 in column_head and begin not in row_head:
  548. return "column"
  549. if 0 in column_head and begin in row_head:
  550. for height in range(begin,end):
  551. count = 0
  552. count_flag = True
  553. for width_index in range(width):
  554. if inner_table[height][width_index][1]==0:
  555. if re.search(company_pattern,inner_table[height][width_index][0]) is not None:
  556. count += 1
  557. else:
  558. count_flag = False
  559. if count_flag and count>=2:
  560. return "column"
  561. return "row"
  562. '''
  563. count_row_keys = 0
  564. count_column_keys = 0
  565. width = len(inner_table[0])
  566. if begin<end:
  567. for w in range(len(inner_table[begin])):
  568. if inner_table[begin][w][1]!=0:
  569. count_row_keys += 1
  570. for h in range(begin,end):
  571. if inner_table[h][0][1]!=0:
  572. count_column_keys += 1
  573. company_pattern = re.compile("有限(责任)?公司")
  574. for height in range(begin,end):
  575. count_set = set()
  576. count_flag = True
  577. for width_index in range(width):
  578. if inner_table[height][width_index][1]==0:
  579. if re.search(company_pattern,inner_table[height][width_index][0]) is not None:
  580. count_set.add(inner_table[height][width_index][0])
  581. else:
  582. count_flag = False
  583. if count_flag and len(count_set)>=2:
  584. return "column"
  585. # if count_column_keys>count_row_keys: #2022/2/15 此项不够严谨,造成很多错误,故取消
  586. # return "column"
  587. return "row"
  588. #根据表格处理方向生成句子,
  589. def getTableText(inner_table,head_list,key_direct=False):
  590. # packPattern = "(标包|[标包][号段名])"
  591. packPattern = "(标包|标的|[标包][号段名]|((项目|物资|设备|场次|标段|标的|产品)(名称)))" # 2020/11/23 大网站规则,补充采购类包名
  592. rankPattern = "(排名|排序|名次|序号|评标结果|评审结果|是否中标|推荐意见)" # 2020/11/23 大网站规则,添加序号为排序
  593. entityPattern = "((候选|([中投]标|报价))(单位|公司|人|供应商))"
  594. moneyPattern = "([中投]标|报价)(金额|价)"
  595. height = len(inner_table)
  596. width = len(inner_table[0])
  597. text = ""
  598. for head_i in range(len(head_list)-1):
  599. head_begin = head_list[head_i]
  600. head_end = head_list[head_i+1]
  601. direct = getDirect(inner_table, head_begin, head_end)
  602. #若只有一行,则直接按行读取
  603. if head_end-head_begin==1:
  604. text_line = ""
  605. for i in range(head_begin,head_end):
  606. for w in range(len(inner_table[i])):
  607. if inner_table[i][w][1]==1:
  608. _punctuation = ":"
  609. else:
  610. _punctuation = "," #2021/12/15 统一为中文标点,避免 206893924 国际F座1108,1,009,197.49元
  611. if w>0:
  612. if inner_table[i][w][0]!= inner_table[i][w-1][0]:
  613. text_line += inner_table[i][w][0]+_punctuation
  614. else:
  615. text_line += inner_table[i][w][0]+_punctuation
  616. text_line = text_line+"。" if text_line!="" else text_line
  617. text += text_line
  618. else:
  619. #构建一个共现矩阵
  620. table_occurence = []
  621. for i in range(head_begin,head_end):
  622. line_oc = []
  623. for j in range(width):
  624. cell = inner_table[i][j]
  625. line_oc.append({"text":cell[0],"type":cell[1],"occu_count":0,"left_head":"","top_head":"","left_dis":0,"top_dis":0})
  626. table_occurence.append(line_oc)
  627. occu_height = len(table_occurence)
  628. occu_width = len(table_occurence[0]) if len(table_occurence)>0 else 0
  629. #为每个属性值寻找表头
  630. for i in range(occu_height):
  631. for j in range(occu_width):
  632. cell = table_occurence[i][j]
  633. #是属性值
  634. if cell["type"]==0 and cell["text"]!="":
  635. left_head = ""
  636. top_head = ""
  637. find_flag = False
  638. temp_head = ""
  639. for loop_i in range(1,i+1):
  640. if not key_direct:
  641. key_values = [1,2]
  642. else:
  643. key_values = [1]
  644. if table_occurence[i-loop_i][j]["type"] in key_values:
  645. if find_flag:
  646. if table_occurence[i-loop_i][j]["text"]!=temp_head:
  647. top_head = table_occurence[i-loop_i][j]["text"]+":"+top_head
  648. else:
  649. top_head = table_occurence[i-loop_i][j]["text"]+":"+top_head
  650. find_flag = True
  651. temp_head = table_occurence[i-loop_i][j]["text"]
  652. table_occurence[i-loop_i][j]["occu_count"] += 1
  653. else:
  654. #找到表头后遇到属性值就返回
  655. if find_flag:
  656. break
  657. cell["top_head"] += top_head
  658. find_flag = False
  659. temp_head = ""
  660. for loop_j in range(1,j+1):
  661. if not key_direct:
  662. key_values = [1,2]
  663. else:
  664. key_values = [2]
  665. if table_occurence[i][j-loop_j]["type"] in key_values:
  666. if find_flag:
  667. if table_occurence[i][j-loop_j]["text"]!=temp_head:
  668. left_head = table_occurence[i][j-loop_j]["text"]+":"+left_head
  669. else:
  670. left_head = table_occurence[i][j-loop_j]["text"]+":"+left_head
  671. find_flag = True
  672. temp_head = table_occurence[i][j-loop_j]["text"]
  673. table_occurence[i][j-loop_j]["occu_count"] += 1
  674. else:
  675. if find_flag:
  676. break
  677. cell["left_head"] += left_head
  678. if direct=="row":
  679. for i in range(occu_height):
  680. pack_text = ""
  681. rank_text = ""
  682. entity_text = ""
  683. text_line = ""
  684. money_text = ""
  685. #在同一句话中重复的可以去掉
  686. text_set = set()
  687. for j in range(width):
  688. cell = table_occurence[i][j]
  689. if cell["type"]==0 or (cell["type"]==1 and cell["occu_count"]==0):
  690. cell = table_occurence[i][j]
  691. head = (cell["top_head"]+":") if len(cell["top_head"])>0 else ""
  692. if re.search("单报标限总]价|金额|成交报?价|报价", head):
  693. head = cell["left_head"] + head
  694. else:
  695. head += cell["left_head"]
  696. if str(head+cell["text"]) in text_set:
  697. continue
  698. if re.search(packPattern,head) is not None:
  699. pack_text += head+cell["text"]+","
  700. elif re.search(rankPattern,head) is not None: # 2020/11/23 大网站规则发现问题,if 改elif
  701. #排名替换为同一种表达
  702. rank_text += head+cell["text"]+","
  703. #print(rank_text)
  704. elif re.search(entityPattern,head) is not None:
  705. entity_text += head+cell["text"]+","
  706. #print(entity_text)
  707. else:
  708. if re.search(moneyPattern,head) is not None and entity_text!="":
  709. money_text += head+cell["text"]+","
  710. else:
  711. text_line += head+cell["text"]+","
  712. text_set.add(str(head+cell["text"]))
  713. text += pack_text+rank_text+entity_text+money_text+text_line
  714. text = text[:-1]+"。" if len(text)>0 else text
  715. else:
  716. for j in range(occu_width):
  717. pack_text = ""
  718. rank_text = ""
  719. entity_text = ""
  720. text_line = ""
  721. text_set = set()
  722. for i in range(occu_height):
  723. cell = table_occurence[i][j]
  724. if cell["type"]==0 or (cell["type"]==1 and cell["occu_count"]==0):
  725. cell = table_occurence[i][j]
  726. head = (cell["left_head"]+"") if len(cell["left_head"])>0 else ""
  727. if re.search("单报标限总]价|金额|成交报?价|报价", head):
  728. head = cell["top_head"] + head
  729. else:
  730. head += cell["top_head"]
  731. if str(head+cell["text"]) in text_set:
  732. continue
  733. if re.search(packPattern,head) is not None:
  734. pack_text += head+cell["text"]+","
  735. elif re.search(rankPattern,head) is not None: # 2020/11/23 大网站规则发现问题,if 改elif
  736. #排名替换为同一种表达
  737. rank_text += head+cell["text"]+","
  738. #print(rank_text)
  739. elif re.search(entityPattern,head) is not None and \
  740. re.search('业绩|资格|条件',head)==None and re.search('业绩',cell["text"])==None : #2021/10/19 解决包含业绩的行调到前面问题
  741. entity_text += head+cell["text"]+","
  742. #print(entity_text)
  743. else:
  744. text_line += head+cell["text"]+","
  745. text_set.add(str(head+cell["text"]))
  746. text += pack_text+rank_text+entity_text+text_line
  747. text = text[:-1]+"。" if len(text)>0 else text
  748. # if direct=="row":
  749. # for i in range(head_begin,head_end):
  750. # pack_text = ""
  751. # rank_text = ""
  752. # entity_text = ""
  753. # text_line = ""
  754. # #在同一句话中重复的可以去掉
  755. # text_set = set()
  756. # for j in range(width):
  757. # cell = inner_table[i][j]
  758. # #是属性值
  759. # if cell[1]==0 and cell[0]!="":
  760. # head = ""
  761. #
  762. # find_flag = False
  763. # temp_head = ""
  764. # for loop_i in range(0,i+1-head_begin):
  765. # if not key_direct:
  766. # key_values = [1,2]
  767. # else:
  768. # key_values = [1]
  769. # if inner_table[i-loop_i][j][1] in key_values:
  770. # if find_flag:
  771. # if inner_table[i-loop_i][j][0]!=temp_head:
  772. # head = inner_table[i-loop_i][j][0]+":"+head
  773. # else:
  774. # head = inner_table[i-loop_i][j][0]+":"+head
  775. # find_flag = True
  776. # temp_head = inner_table[i-loop_i][j][0]
  777. # else:
  778. # #找到表头后遇到属性值就返回
  779. # if find_flag:
  780. # break
  781. #
  782. # find_flag = False
  783. # temp_head = ""
  784. #
  785. #
  786. #
  787. # for loop_j in range(1,j+1):
  788. # if not key_direct:
  789. # key_values = [1,2]
  790. # else:
  791. # key_values = [2]
  792. # if inner_table[i][j-loop_j][1] in key_values:
  793. # if find_flag:
  794. # if inner_table[i][j-loop_j][0]!=temp_head:
  795. # head = inner_table[i][j-loop_j][0]+":"+head
  796. # else:
  797. # head = inner_table[i][j-loop_j][0]+":"+head
  798. # find_flag = True
  799. # temp_head = inner_table[i][j-loop_j][0]
  800. # else:
  801. # if find_flag:
  802. # break
  803. #
  804. # if str(head+inner_table[i][j][0]) in text_set:
  805. # continue
  806. # if re.search(packPattern,head) is not None:
  807. # pack_text += head+inner_table[i][j][0]+","
  808. # elif re.search(rankPattern,head) is not None: # 2020/11/23 大网站规则发现问题,if 改elif
  809. # #排名替换为同一种表达
  810. # rank_text += head+inner_table[i][j][0]+","
  811. # #print(rank_text)
  812. # elif re.search(entityPattern,head) is not None:
  813. # entity_text += head+inner_table[i][j][0]+","
  814. # #print(entity_text)
  815. # else:
  816. # text_line += head+inner_table[i][j][0]+","
  817. # text_set.add(str(head+inner_table[i][j][0]))
  818. # text += pack_text+rank_text+entity_text+text_line
  819. # text = text[:-1]+"。" if len(text)>0 else text
  820. # else:
  821. # for j in range(width):
  822. #
  823. # rank_text = ""
  824. # entity_text = ""
  825. # text_line = ""
  826. # text_set = set()
  827. # for i in range(head_begin,head_end):
  828. # cell = inner_table[i][j]
  829. # #是属性值
  830. # if cell[1]==0 and cell[0]!="":
  831. # find_flag = False
  832. # head = ""
  833. # temp_head = ""
  834. #
  835. # for loop_j in range(1,j+1):
  836. # if not key_direct:
  837. # key_values = [1,2]
  838. # else:
  839. # key_values = [2]
  840. # if inner_table[i][j-loop_j][1] in key_values:
  841. # if find_flag:
  842. # if inner_table[i][j-loop_j][0]!=temp_head:
  843. # head = inner_table[i][j-loop_j][0]+":"+head
  844. # else:
  845. # head = inner_table[i][j-loop_j][0]+":"+head
  846. # find_flag = True
  847. # temp_head = inner_table[i][j-loop_j][0]
  848. # else:
  849. # if find_flag:
  850. # break
  851. # find_flag = False
  852. # temp_head = ""
  853. # for loop_i in range(0,i+1-head_begin):
  854. # if not key_direct:
  855. # key_values = [1,2]
  856. # else:
  857. # key_values = [1]
  858. # if inner_table[i-loop_i][j][1] in key_values:
  859. # if find_flag:
  860. # if inner_table[i-loop_i][j][0]!=temp_head:
  861. # head = inner_table[i-loop_i][j][0]+":"+head
  862. # else:
  863. # head = inner_table[i-loop_i][j][0]+":"+head
  864. # find_flag = True
  865. # temp_head = inner_table[i-loop_i][j][0]
  866. # else:
  867. # if find_flag:
  868. # break
  869. # if str(head+inner_table[i][j][0]) in text_set:
  870. # continue
  871. # if re.search(rankPattern,head) is not None:
  872. # rank_text += head+inner_table[i][j][0]+","
  873. # #print(rank_text)
  874. # elif re.search(entityPattern,head) is not None:
  875. # entity_text += head+inner_table[i][j][0]+","
  876. # #print(entity_text)
  877. # else:
  878. # text_line += head+inner_table[i][j][0]+","
  879. # text_set.add(str(head+inner_table[i][j][0]))
  880. # text += rank_text+entity_text+text_line
  881. # text = text[:-1]+"。" if len(text)>0 else text
  882. return text
  883. def removeFix(inner_table,fix_value="~~"):
  884. height = len(inner_table)
  885. width = len(inner_table[0])
  886. for h in range(height):
  887. for w in range(width):
  888. if inner_table[h][w][0]==fix_value:
  889. inner_table[h][w][0] = ""
  890. def trunTable(tbody):
  891. fixSpan(tbody)
  892. inner_table = getTable(tbody)
  893. inner_table = fixTable(inner_table)
  894. if len(inner_table)>0 and len(inner_table[0])>0:
  895. #inner_table,head_list = setHead_withRule(inner_table,pat_head,pat_value,3)
  896. #inner_table,head_list = setHead_inline(inner_table)
  897. inner_table,head_list = setHead_initem(inner_table,pat_head)
  898. # inner_table,head_list = setHead_incontext(inner_table,pat_head)
  899. # print(inner_table)
  900. # for begin in range(len(head_list[:-1])):
  901. # for item in inner_table[head_list[begin]:head_list[begin+1]]:
  902. # print(item)
  903. # print("====")
  904. removeFix(inner_table)
  905. # print("----")
  906. # print(head_list)
  907. # for item in inner_table:
  908. # print(item)
  909. tbody.string = getTableText(inner_table,head_list)
  910. #print(tbody.string)
  911. tbody.name = "turntable"
  912. return inner_table
  913. return None
  914. pat_head = re.compile('^(名称|序号|项目|标项|工程|品目[一二三四1234]|第[一二三四1234](标段|名|候选人|中标)|包段|标包|分包|包号|货物|单位|数量|价格|报价|金额|总价|单价|[招投中]标|候选|编号|得分|评委|评分|名次|排名|排序|科室|方式|工期|时间|产品|开始|结束|联系|日期|面积|姓名|证号|备注|级别|地[点址]|类型|代理|制造|企业资质|质量目标|工期目标|(需求|服务|项目|施工|采购|招租|出租|转让|出让|业主|询价|委托|权属|招标|竞得|抽取|承建)(人|方|单位)(名称)?|(供应商|供货商|服务商)(名称)?)$')
  915. #pat_head = re.compile('(名称|序号|项目|工程|品目[一二三四1234]|第[一二三四1234](标段|候选人|中标)|包段|包号|货物|单位|数量|价格|报价|金额|总价|单价|[招投中]标|供应商|候选|编号|得分|评委|评分|名次|排名|排序|科室|方式|工期|时间|产品|开始|结束|联系|日期|面积|姓名|证号|备注|级别|地[点址]|类型|代理)')
  916. pat_value = re.compile("(\d{2,}.\d{1}|\d+年\d+月|\d{8,}|\d{3,}-\d{6,}|有限[责任]*公司|^\d+$)")
  917. list_innerTable = []
  918. # 2022/2/9 删除干扰标签
  919. for tag in soup.find_all('option'): #例子: 216661412
  920. if 'selected' not in tag.attrs:
  921. tag.extract()
  922. for ul in soup.find_all('ul'): #例子 156439663 多个不同channel 类别的标题
  923. if ul.find_all('li') == ul.findChildren(recursive=False) and len(set(re.findall(
  924. '招标公告|中标结果公示|中标候选人公示|招标答疑|开标评标|合同履?约?公示|开标评标|资格评审',
  925. ul.get_text(), re.S)))>3:
  926. ul.extract()
  927. tbodies = soup.find_all('table')
  928. # 遍历表格中的每个tbody
  929. #逆序处理嵌套表格
  930. for tbody_index in range(1,len(tbodies)+1):
  931. tbody = tbodies[len(tbodies)-tbody_index]
  932. inner_table = trunTable(tbody)
  933. list_innerTable.append(inner_table)
  934. tbodies = soup.find_all('tbody')
  935. # 遍历表格中的每个tbody
  936. #逆序处理嵌套表格
  937. for tbody_index in range(1,len(tbodies)+1):
  938. tbody = tbodies[len(tbodies)-tbody_index]
  939. inner_table = trunTable(tbody)
  940. list_innerTable.append(inner_table)
  941. return soup
  942. # return list_innerTable
  943. re_num = re.compile("[二三四五六七八九]十[一二三四五六七八九]?|十[一二三四五六七八九]|[一二三四五六七八九十]")
  944. num_dict = {
  945. "一": 1, "二": 2,
  946. "三": 3, "四": 4,
  947. "五": 5, "六": 6,
  948. "七": 7, "八": 8,
  949. "九": 9, "十": 10}
  950. # 一百以内的中文大写转换为数字
  951. def change2num(text):
  952. result_num = -1
  953. # text = text[:6]
  954. match = re_num.search(text)
  955. if match:
  956. _num = match.group()
  957. if num_dict.get(_num):
  958. return num_dict.get(_num)
  959. else:
  960. tenths = 1
  961. the_unit = 0
  962. num_split = _num.split("十")
  963. if num_dict.get(num_split[0]):
  964. tenths = num_dict.get(num_split[0])
  965. if num_dict.get(num_split[1]):
  966. the_unit = num_dict.get(num_split[1])
  967. result_num = tenths * 10 + the_unit
  968. elif re.search("\d{1,2}",text):
  969. _num = re.search("\d{1,2}",text).group()
  970. result_num = int(_num)
  971. return result_num
  972. #大纲分段处理
  973. def get_preprocessed_outline(soup):
  974. pattern_0 = re.compile("^(?:[二三四五六七八九]十[一二三四五六七八九]?|十[一二三四五六七八九]|[一二三四五六七八九十])[、.\.]")
  975. pattern_1 = re.compile("^[\((]?(?:[二三四五六七八九]十[一二三四五六七八九]?|十[一二三四五六七八九]|[一二三四五六七八九十])[\))]")
  976. pattern_2 = re.compile("^\d{1,2}[、.\.](?=[^\d]{1,2}|$)")
  977. pattern_3 = re.compile("^[\((]?\d{1,2}[\))]")
  978. pattern_list = [pattern_0, pattern_1, pattern_2, pattern_3]
  979. body = soup.find("body")
  980. body_child = body.find_all(recursive=False)
  981. deal_part = body
  982. # print(body_child[0]['id'])
  983. if 'id' in body_child[0].attrs:
  984. if len(body_child) <= 2 and body_child[0]['id'] == 'pcontent':
  985. deal_part = body_child[0]
  986. if len(deal_part.find_all(recursive=False))>2:
  987. deal_part = deal_part.parent
  988. skip_tag = ['turntable', 'tbody', 'th', 'tr', 'td', 'table','thead','tfoot']
  989. for part in deal_part.find_all(recursive=False):
  990. # 查找解析文本的主干部分
  991. is_main_text = False
  992. through_text_num = 0
  993. while (not is_main_text and part.find_all(recursive=False)):
  994. while len(part.find_all(recursive=False)) == 1 and part.get_text(strip=True) == \
  995. part.find_all(recursive=False)[0].get_text(strip=True):
  996. part = part.find_all(recursive=False)[0]
  997. max_len = len(part.get_text(strip=True))
  998. is_main_text = True
  999. for t_part in part.find_all(recursive=False):
  1000. if t_part.name not in skip_tag and t_part.get_text(strip=True)!="":
  1001. through_text_num += 1
  1002. if t_part.get_text(strip=True)!="" and len(t_part.get_text(strip=True))/max_len>=0.65:
  1003. if t_part.name not in skip_tag:
  1004. is_main_text = False
  1005. part = t_part
  1006. break
  1007. else:
  1008. while len(t_part.find_all(recursive=False)) == 1 and t_part.get_text(strip=True) == \
  1009. t_part.find_all(recursive=False)[0].get_text(strip=True):
  1010. t_part = t_part.find_all(recursive=False)[0]
  1011. if through_text_num>2:
  1012. is_table = True
  1013. for _t_part in t_part.find_all(recursive=False):
  1014. if _t_part.name not in skip_tag:
  1015. is_table = False
  1016. break
  1017. if not is_table:
  1018. is_main_text = False
  1019. part = t_part
  1020. break
  1021. else:
  1022. is_main_text = False
  1023. part = t_part
  1024. break
  1025. is_find = False
  1026. for _pattern in pattern_list:
  1027. last_index = 0
  1028. handle_list = []
  1029. for _part in part.find_all(recursive=False):
  1030. if _part.name not in skip_tag and _part.get_text(strip=True) != "":
  1031. # print('text:', _part.get_text(strip=True))
  1032. re_match = re.search(_pattern, _part.get_text(strip=True))
  1033. if re_match:
  1034. outline_index = change2num(re_match.group())
  1035. if last_index < outline_index:
  1036. # _part.insert_before("##split##")
  1037. handle_list.append(_part)
  1038. last_index = outline_index
  1039. if len(handle_list)>1:
  1040. is_find = True
  1041. for _part in handle_list:
  1042. _part.insert_before("##split##")
  1043. if is_find:
  1044. break
  1045. # print(soup)
  1046. return soup
  1047. #数据清洗
  1048. def segment(soup,final=True):
  1049. # print("==")
  1050. # print(soup)
  1051. # print("====")
  1052. #segList = ["tr","div","h1", "h2", "h3", "h4", "h5", "h6", "header"]
  1053. subspaceList = ["td",'a',"span","p"]
  1054. if soup.name in subspaceList:
  1055. #判断有值叶子节点数
  1056. _count = 0
  1057. for child in soup.find_all(recursive=True):
  1058. if child.get_text().strip()!="" and len(child.find_all())==0:
  1059. _count += 1
  1060. if _count<=1:
  1061. text = soup.get_text()
  1062. # 2020/11/24 大网站规则添加
  1063. if 'title' in soup.attrs:
  1064. if '...' in soup.get_text() and soup.get_text().strip()[:-3] in soup.attrs['title']:
  1065. text = soup.attrs['title']
  1066. _list = []
  1067. for x in re.split("\s+",text):
  1068. if x.strip()!="":
  1069. _list.append(len(x))
  1070. if len(_list)>0:
  1071. _minLength = min(_list)
  1072. if _minLength>2:
  1073. _substr = ","
  1074. else:
  1075. _substr = ""
  1076. else:
  1077. _substr = ""
  1078. text = text.replace("\r\n",",").replace("\n",",")
  1079. text = re.sub("\s+",_substr,text)
  1080. # text = re.sub("\s+","##space##",text)
  1081. return text
  1082. segList = ["title"]
  1083. commaList = ["div","br","td","p","li"]
  1084. #commaList = []
  1085. spaceList = ["span"]
  1086. tbodies = soup.find_all('tbody')
  1087. if len(tbodies) == 0:
  1088. tbodies = soup.find_all('table')
  1089. # 递归遍历所有节点,插入符号
  1090. for child in soup.find_all(recursive=True):
  1091. # print(child.name,child.get_text())
  1092. if child.name in segList:
  1093. child.insert_after("。")
  1094. if child.name in commaList:
  1095. child.insert_after(",")
  1096. # if child.name == 'div' and 'class' in child.attrs:
  1097. # # 添加附件"attachment"标识
  1098. # if "richTextFetch" in child['class']:
  1099. # child.insert_before("##attachment##")
  1100. # print(child.parent)
  1101. # if child.name in subspaceList:
  1102. # child.insert_before("#subs"+str(child.name)+"#")
  1103. # child.insert_after("#sube"+str(child.name)+"#")
  1104. # if child.name in spaceList:
  1105. # child.insert_after(" ")
  1106. text = str(soup.get_text())
  1107. #替换英文冒号为中文冒号
  1108. text = re.sub("(?<=[\u4e00-\u9fa5]):|:(?=[\u4e00-\u9fa5])",":",text)
  1109. #替换为中文逗号
  1110. text = re.sub("(?<=[\u4e00-\u9fa5]),|,(?=[\u4e00-\u9fa5])",",",text)
  1111. #替换为中文分号
  1112. text = re.sub("(?<=[\u4e00-\u9fa5]);|;(?=[\u4e00-\u9fa5])",";",text)
  1113. # 感叹号替换为中文句号
  1114. text = re.sub("(?<=[\u4e00-\u9fa5])[!!]|[!!](?=[\u4e00-\u9fa5])","。",text)
  1115. #替换格式未识别的问号为" " ,update:2021/7/20
  1116. text = re.sub("[?\?]{2,}"," ",text)
  1117. #替换"""为"“",否则导入deepdive出错
  1118. # text = text.replace('"',"“").replace("\r","").replace("\n",",")
  1119. text = text.replace('"',"“").replace("\r","").replace("\n","") #2022/1/4修复 非分段\n 替换为逗号造成 公司拆分 span \n南航\n上海\n分公司
  1120. # print('==1',text)
  1121. # text = re.sub("\s{4,}",",",text)
  1122. # 解决公告中的" "空格替换问题
  1123. if re.search("\s{4,}",text):
  1124. _text = ""
  1125. for _sent in re.split("。+",text):
  1126. for _sent2 in re.split(',+',_sent):
  1127. for _sent3 in re.split(":+",_sent2):
  1128. for _t in re.split("\s{4,}",_sent3):
  1129. if len(_t)<3:
  1130. _text += _t
  1131. else:
  1132. _text += ","+_t
  1133. _text += ":"
  1134. _text = _text[:-1]
  1135. _text += ","
  1136. _text = _text[:-1]
  1137. _text += "。"
  1138. _text = _text[:-1]
  1139. text = _text
  1140. # print('==2',text)
  1141. #替换标点
  1142. #替换连续的标点
  1143. if final:
  1144. text = re.sub("##space##"," ",text)
  1145. punc_pattern = "(?P<del>[。,;::,\s]+)"
  1146. list_punc = re.findall(punc_pattern,text)
  1147. list_punc.sort(key=lambda x:len(x),reverse=True)
  1148. for punc_del in list_punc:
  1149. if len(punc_del)>1:
  1150. if len(punc_del.strip())>0:
  1151. if ":" in punc_del.strip():
  1152. if "。" in punc_del.strip():
  1153. text = re.sub(punc_del, ":。", text)
  1154. else:
  1155. text = re.sub(punc_del,":",text)
  1156. else:
  1157. text = re.sub(punc_del,punc_del.strip()[0],text) #2021/12/09 修正由于某些标签后插入符号把原来符号替换
  1158. else:
  1159. text = re.sub(punc_del,"",text)
  1160. #将连续的中文句号替换为一个
  1161. text_split = text.split("。")
  1162. text_split = [x for x in text_split if len(x)>0]
  1163. text = "。".join(text_split)
  1164. # #删除标签中的所有空格
  1165. # for subs in subspaceList:
  1166. # patten = "#subs"+str(subs)+"#(.*?)#sube"+str(subs)+"#"
  1167. # while(True):
  1168. # oneMatch = re.search(re.compile(patten),text)
  1169. # if oneMatch is not None:
  1170. # _match = oneMatch.group(1)
  1171. # text = text.replace("#subs"+str(subs)+"#"+_match+"#sube"+str(subs)+"#",_match)
  1172. # else:
  1173. # break
  1174. # text过大报错
  1175. LOOP_LEN = 10000
  1176. LOOP_BEGIN = 0
  1177. _text = ""
  1178. if len(text)<10000000:
  1179. while(LOOP_BEGIN<len(text)):
  1180. _text += re.sub(")",")",re.sub("(","(",re.sub("\s+","",text[LOOP_BEGIN:LOOP_BEGIN+LOOP_LEN])))
  1181. LOOP_BEGIN += LOOP_LEN
  1182. text = _text
  1183. # 附件标识前修改为句号,避免正文和附件内容混合在一起
  1184. text = re.sub("[^。](?=##attachment##)","。",text)
  1185. return text
  1186. '''
  1187. #数据清洗
  1188. def segment(soup):
  1189. segList = ["title"]
  1190. commaList = ["p","div","h1", "h2", "h3", "h4", "h5", "h6", "header", "dl", "ul", "label"]
  1191. spaceList = ["span"]
  1192. tbodies = soup.find_all('tbody')
  1193. if len(tbodies) == 0:
  1194. tbodies = soup.find_all('table')
  1195. # 递归遍历所有节点,插入符号
  1196. for child in soup.find_all(recursive=True):
  1197. if child.name == 'br':
  1198. child.insert_before(',')
  1199. child_text = re.sub('\s', '', child.get_text())
  1200. if child_text == '' or child_text[-1] in ['。',',',':',';']:
  1201. continue
  1202. if child.name in segList:
  1203. child.insert_after("。")
  1204. if child.name in commaList:
  1205. if len(child_text)>3 and len(child_text) <50: # 先判断是否字数少于50,成立加逗号,否则加句号
  1206. child.insert_after(",")
  1207. elif len(child_text) >=50:
  1208. child.insert_after("。")
  1209. #if child.name in spaceList:
  1210. #child.insert_after(" ")
  1211. text = str(soup.get_text())
  1212. text = re.sub("\s{5,}",",",text)
  1213. text = text.replace('"',"“").replace("\r","").replace("\n",",")
  1214. #替换"""为"“",否则导入deepdive出错
  1215. text = text.replace('"',"“")
  1216. #text = text.replace('"',"“").replace("\r","").replace("\n","")
  1217. #删除所有空格
  1218. text = re.sub("\s+","#nbsp#",text)
  1219. text_list = text.split('#nbsp#')
  1220. new_text = ''
  1221. for i in range(len(text_list)-1):
  1222. if text_list[i] == '' or text_list[i][-1] in [',','。',';',':']:
  1223. new_text += text_list[i]
  1224. elif re.findall('([一二三四五六七八九]、)', text_list[i+1][:4]) != []:
  1225. new_text += text_list[i] + '。'
  1226. elif re.findall('([0-9]、)', text_list[i+1][:4]) != []:
  1227. new_text += text_list[i] + ';'
  1228. elif text_list[i].isdigit() and text_list[i+1].isdigit():
  1229. new_text += text_list[i] + ' '
  1230. elif text_list[i][-1] in ['-',':','(',')','/','(',')','——','年','月','日','时','分','¥'] or text_list[i+1][0] in ['-',':','(',')','/','(',')','——','年','月','日','时','分','元','万元']:
  1231. new_text += text_list[i]
  1232. elif len(text_list[i]) >= 3 and len(text_list[i+1]) >= 3:
  1233. new_text += text_list[i] + ','
  1234. else:
  1235. new_text += text_list[i]
  1236. new_text += text_list[-1]
  1237. text = new_text
  1238. #替换英文冒号为中文冒号
  1239. text = re.sub("(?<=[\u4e00-\u9fa5]):|:(?=[\u4e00-\u9fa5])",":",text)
  1240. #替换为中文逗号
  1241. text = re.sub("(?<=[\u4e00-\u9fa5]),|,(?=[\u4e00-\u9fa5])",",",text)
  1242. #替换为中文分号
  1243. text = re.sub("(?<=[\u4e00-\u9fa5]);|;(?=[\u4e00-\u9fa5])",";",text)
  1244. #替换标点
  1245. while(True):
  1246. #替换连续的标点
  1247. punc = re.search(",(?P<punc>:|。|,|;)\s*",text)
  1248. if punc is not None:
  1249. text = re.sub(","+punc.group("punc")+"\s*",punc.group("punc"),text)
  1250. punc = re.search("(?P<punc>:|。|,|;)\s*,",text)
  1251. if punc is not None:
  1252. text = re.sub(punc.group("punc")+"\s*,",punc.group("punc"),text)
  1253. else:
  1254. #替换标点之后的空格
  1255. punc = re.search("(?P<punc>:|。|,|;)\s+",text)
  1256. if punc is not None:
  1257. text = re.sub(punc.group("punc")+"\s+",punc.group("punc"),text)
  1258. else:
  1259. break
  1260. #将连续的中文句号替换为一个
  1261. text_split = text.split("。")
  1262. text_split = [x for x in text_split if len(x)>0]
  1263. text = "。".join(text_split)
  1264. #替换中文括号为英文括号
  1265. text = re.sub("(","(",text)
  1266. text = re.sub(")",")",text)
  1267. return text
  1268. '''
  1269. #连续实体合并(弃用)
  1270. def union_ner(list_ner):
  1271. result_list = []
  1272. union_index = []
  1273. union_index_set = set()
  1274. for i in range(len(list_ner)-1):
  1275. if len(set([str(list_ner[i][2]),str(list_ner[i+1][2])])&set(["org","company"]))==2:
  1276. if list_ner[i][1]-list_ner[i+1][0]==1:
  1277. union_index_set.add(i)
  1278. union_index_set.add(i+1)
  1279. union_index.append((i,i+1))
  1280. for i in range(len(list_ner)):
  1281. if i not in union_index_set:
  1282. result_list.append(list_ner[i])
  1283. for item in union_index:
  1284. #print(str(list_ner[item[0]][3])+str(list_ner[item[1]][3]))
  1285. result_list.append((list_ner[item[0]][0],list_ner[item[1]][1],'company',str(list_ner[item[0]][3])+str(list_ner[item[1]][3])))
  1286. return result_list
  1287. # def get_preprocessed(articles,useselffool=False):
  1288. # '''
  1289. # @summary:预处理步骤,NLP处理、实体识别
  1290. # @param:
  1291. # articles:待处理的文章list [[id,source,jointime,doc_id,title]]
  1292. # @return:list of articles,list of each article of sentences,list of each article of entitys
  1293. # '''
  1294. # list_articles = []
  1295. # list_sentences = []
  1296. # list_entitys = []
  1297. # cost_time = dict()
  1298. # for article in articles:
  1299. # list_sentences_temp = []
  1300. # list_entitys_temp = []
  1301. # doc_id = article[0]
  1302. # sourceContent = article[1]
  1303. # _send_doc_id = article[3]
  1304. # _title = article[4]
  1305. # #表格处理
  1306. # key_preprocess = "tableToText"
  1307. # start_time = time.time()
  1308. # article_processed = segment(tableToText(BeautifulSoup(sourceContent,"lxml")))
  1309. #
  1310. # # log(article_processed)
  1311. #
  1312. # if key_preprocess not in cost_time:
  1313. # cost_time[key_preprocess] = 0
  1314. # cost_time[key_preprocess] += time.time()-start_time
  1315. #
  1316. # #article_processed = article[1]
  1317. # list_articles.append(Article(doc_id,article_processed,sourceContent,_send_doc_id,_title))
  1318. # #nlp处理
  1319. # if article_processed is not None and len(article_processed)!=0:
  1320. # split_patten = "。"
  1321. # sentences = []
  1322. # _begin = 0
  1323. # for _iter in re.finditer(split_patten,article_processed):
  1324. # sentences.append(article_processed[_begin:_iter.span()[1]])
  1325. # _begin = _iter.span()[1]
  1326. # sentences.append(article_processed[_begin:])
  1327. #
  1328. # lemmas = []
  1329. # doc_offsets = []
  1330. # dep_types = []
  1331. # dep_tokens = []
  1332. #
  1333. # time1 = time.time()
  1334. #
  1335. # '''
  1336. # tokens_all = fool.cut(sentences)
  1337. # #pos_all = fool.LEXICAL_ANALYSER.pos(tokens_all)
  1338. # #ner_tag_all = fool.LEXICAL_ANALYSER.ner_labels(sentences,tokens_all)
  1339. # ner_entitys_all = fool.ner(sentences)
  1340. # '''
  1341. # #限流执行
  1342. # key_nerToken = "nerToken"
  1343. # start_time = time.time()
  1344. # tokens_all,ner_entitys_all = getTokensAndNers(sentences,useselffool=useselffool)
  1345. # if key_nerToken not in cost_time:
  1346. # cost_time[key_nerToken] = 0
  1347. # cost_time[key_nerToken] += time.time()-start_time
  1348. #
  1349. #
  1350. # for sentence_index in range(len(sentences)):
  1351. #
  1352. #
  1353. #
  1354. # list_sentence_entitys = []
  1355. # sentence_text = sentences[sentence_index]
  1356. # tokens = tokens_all[sentence_index]
  1357. #
  1358. # list_tokenbegin = []
  1359. # begin = 0
  1360. # for i in range(0,len(tokens)):
  1361. # list_tokenbegin.append(begin)
  1362. # begin += len(str(tokens[i]))
  1363. # list_tokenbegin.append(begin+1)
  1364. # #pos_tag = pos_all[sentence_index]
  1365. # pos_tag = ""
  1366. #
  1367. # ner_entitys = ner_entitys_all[sentence_index]
  1368. #
  1369. # list_sentences_temp.append(Sentences(doc_id=doc_id,sentence_index=sentence_index,sentence_text=sentence_text,tokens=tokens,pos_tags=pos_tag,ner_tags=ner_entitys))
  1370. #
  1371. # #识别package
  1372. #
  1373. #
  1374. # #识别实体
  1375. # for ner_entity in ner_entitys:
  1376. # begin_index_temp = ner_entity[0]
  1377. # end_index_temp = ner_entity[1]
  1378. # entity_type = ner_entity[2]
  1379. # entity_text = ner_entity[3]
  1380. #
  1381. # for j in range(len(list_tokenbegin)):
  1382. # if list_tokenbegin[j]==begin_index_temp:
  1383. # begin_index = j
  1384. # break
  1385. # elif list_tokenbegin[j]>begin_index_temp:
  1386. # begin_index = j-1
  1387. # break
  1388. # begin_index_temp += len(str(entity_text))
  1389. # for j in range(begin_index,len(list_tokenbegin)):
  1390. # if list_tokenbegin[j]>=begin_index_temp:
  1391. # end_index = j-1
  1392. # break
  1393. # entity_id = "%s_%d_%d_%d"%(doc_id,sentence_index,begin_index,end_index)
  1394. #
  1395. # #去掉标点符号
  1396. # entity_text = re.sub("[,,。:]","",entity_text)
  1397. # list_sentence_entitys.append(Entity(doc_id,entity_id,entity_text,entity_type,sentence_index,begin_index,end_index,ner_entity[0],ner_entity[1]-1))
  1398. #
  1399. #
  1400. # #使用正则识别金额
  1401. # entity_type = "money"
  1402. #
  1403. # #money_patten_str = "(([1-9][\d,,]*(?:\.\d+)?[百千万亿]?[\(\)()元整]+)|([零壹贰叁肆伍陆柒捌玖拾佰仟萬億十百千万亿元角分]{3,})|(?:[¥¥]+,?|报价|标价)[(\(]?([万])?元?[)\)]?[::]?.{,7}?([1-9][\d,,]*(?:\.\d+)?(?:,?)[百千万亿]?)|([1-9][\d,,]*(?:\.\d+)?(?:,?)[百千万亿]?)[\((]?([万元]{1,2}))*"
  1404. #
  1405. # list_money_pattern = {"cn":"(()()([零壹贰叁肆伍陆柒捌玖拾佰仟萬億十百千万亿元角分]{3,})())*",
  1406. # "key_word":"((?:[¥¥]+,?|[报标限]价|金额)(?:[(\(]?\s*([万元]*)\s*[)\)]?)\s*[::]?(\s*[^壹贰叁肆伍陆柒捌玖拾佰仟萬億分]{,7}?)([0-9][\d,,]*(?:\.\d+)?(?:,?)[百千万亿元]*)())*",
  1407. # "front_m":"((?:[(\(]?\s*([万元]+)\s*[)\)])\s*[::]?(\s*[^壹贰叁肆伍陆柒捌玖拾佰仟萬億分]{,7}?)([0-9][\d,,]*(?:\.\d+)?(?:,?)[百千万亿元]*)())*",
  1408. # "behind_m":"(()()([0-9][\d,,]*(?:\.\d+)?(?:,?)[百千万亿]*)[\((]?([万元]+)[\))]?)*"}
  1409. #
  1410. # set_begin = set()
  1411. # for pattern_key in list_money_pattern.keys():
  1412. # pattern = re.compile(list_money_pattern[pattern_key])
  1413. # all_match = re.findall(pattern, sentence_text)
  1414. # index = 0
  1415. # for i in range(len(all_match)):
  1416. # if len(all_match[i][0])>0:
  1417. # # print("===",all_match[i])
  1418. # #print(all_match[i][0])
  1419. # unit = ""
  1420. # entity_text = all_match[i][3]
  1421. # if pattern_key in ["key_word","front_m"]:
  1422. # unit = all_match[i][1]
  1423. # else:
  1424. # unit = all_match[i][4]
  1425. # if entity_text.find("元")>=0:
  1426. # unit = ""
  1427. #
  1428. # index += len(all_match[i][0])-len(entity_text)-len(all_match[i][4])#-len(all_match[i][1])-len(all_match[i][2])#整个提出来的作为实体->数字部分作为整体,否则会丢失特征
  1429. #
  1430. # begin_index_temp = index
  1431. # for j in range(len(list_tokenbegin)):
  1432. # if list_tokenbegin[j]==index:
  1433. # begin_index = j
  1434. # break
  1435. # elif list_tokenbegin[j]>index:
  1436. # begin_index = j-1
  1437. # break
  1438. # index += len(str(entity_text))+len(all_match[i][4])#+len(all_match[i][2])+len(all_match[i][1])#整个提出来的作为实体
  1439. # end_index_temp = index
  1440. # #index += len(str(all_match[i][0]))
  1441. # for j in range(begin_index,len(list_tokenbegin)):
  1442. # if list_tokenbegin[j]>=index:
  1443. # end_index = j-1
  1444. # break
  1445. # entity_id = "%s_%d_%d_%d"%(doc_id,sentence_index,begin_index,end_index)
  1446. #
  1447. #
  1448. # entity_text = re.sub("[^0-9.零壹贰叁肆伍陆柒捌玖拾佰仟萬億十百千万亿元角分]","",entity_text)
  1449. # if len(unit)>0:
  1450. # entity_text = str(getUnifyMoney(entity_text)*getMultipleFactor(unit[0]))
  1451. # else:
  1452. # entity_text = str(getUnifyMoney(entity_text))
  1453. #
  1454. # _exists = False
  1455. # for item in list_sentence_entitys:
  1456. # if item.entity_id==entity_id and item.entity_type==entity_type:
  1457. # _exists = True
  1458. # if not _exists:
  1459. # if float(entity_text)>10:
  1460. # list_sentence_entitys.append(Entity(doc_id,entity_id,entity_text,entity_type,sentence_index,begin_index,end_index,begin_index_temp,end_index_temp))
  1461. #
  1462. # else:
  1463. # index += 1
  1464. #
  1465. # list_sentence_entitys.sort(key=lambda x:x.begin_index)
  1466. # list_entitys_temp = list_entitys_temp+list_sentence_entitys
  1467. # list_sentences.append(list_sentences_temp)
  1468. # list_entitys.append(list_entitys_temp)
  1469. # return list_articles,list_sentences,list_entitys,cost_time
  1470. def get_preprocessed(articles, useselffool=False):
  1471. '''
  1472. @summary:预处理步骤,NLP处理、实体识别
  1473. @param:
  1474. articles:待处理的文章list [[id,source,jointime,doc_id,title]]
  1475. @return:list of articles,list of each article of sentences,list of each article of entitys
  1476. '''
  1477. cost_time = dict()
  1478. list_articles = get_preprocessed_article(articles,cost_time)
  1479. list_sentences,list_outlines = get_preprocessed_sentences(list_articles,True,cost_time)
  1480. list_entitys = get_preprocessed_entitys(list_sentences,True,cost_time)
  1481. calibrateEnterprise(list_articles,list_sentences,list_entitys)
  1482. return list_articles,list_sentences,list_entitys,list_outlines,cost_time
  1483. def special_treatment(sourceContent, web_source_no):
  1484. if web_source_no == 'DX000202-1':
  1485. ser = re.search('中标供应商及中标金额:【((\w{5,20}-[\d,.]+,)+)】', sourceContent)
  1486. if ser:
  1487. new = ""
  1488. l = ser.group(1).split(',')
  1489. for i in range(len(l)):
  1490. it = l[i]
  1491. if '-' in it:
  1492. role, money = it.split('-')
  1493. new += '标段%d, 中标供应商: ' % (i + 1) + role + ',中标金额:' + money + '。'
  1494. sourceContent = sourceContent.replace(ser.group(0), new, 1)
  1495. elif web_source_no == '00753-14':
  1496. pcontent = sourceContent.find("div", id="pcontent")
  1497. pcontent = pcontent.find_all(recursive=False)[0]
  1498. first_table = None
  1499. for idx in range(len(pcontent.find_all(recursive=False))):
  1500. t_part = pcontent.find_all(recursive=False)[idx]
  1501. if t_part.name != "table":
  1502. break
  1503. if idx == 0:
  1504. first_table = t_part
  1505. else:
  1506. for _tr in t_part.find("tbody").find_all(recursive=False):
  1507. first_table.find("tbody").append(_tr)
  1508. t_part.clear()
  1509. elif web_source_no == 'DX008357-11':
  1510. pcontent = sourceContent.find("div", id="pcontent")
  1511. pcontent = pcontent.find_all(recursive=False)[0]
  1512. error_table = []
  1513. is_error_table = False
  1514. for part in pcontent.find_all(recursive=False):
  1515. if is_error_table:
  1516. if part.name == "table":
  1517. error_table.append(part)
  1518. else:
  1519. break
  1520. if part.name == "div" and part.get_text(strip=True) == "中标候选单位:":
  1521. is_error_table = True
  1522. first_table = None
  1523. for idx in range(len(error_table)):
  1524. t_part = error_table[idx]
  1525. # if t_part.name != "table":
  1526. # break
  1527. if idx == 0:
  1528. for _tr in t_part.find("tbody").find_all(recursive=False):
  1529. if _tr.get_text(strip=True) == "":
  1530. _tr.decompose()
  1531. first_table = t_part
  1532. else:
  1533. for _tr in t_part.find("tbody").find_all(recursive=False):
  1534. if _tr.get_text(strip=True) != "":
  1535. first_table.find("tbody").append(_tr)
  1536. t_part.clear()
  1537. elif web_source_no == '18021-2':
  1538. pcontent = sourceContent.find("div", id="pcontent")
  1539. td = pcontent.find_all("td")
  1540. for _td in td:
  1541. if str(_td.string).strip() == "报价金额":
  1542. _td.string = "单价"
  1543. elif web_source_no == '13740-2':
  1544. # “xxx成为成交供应商”
  1545. re_match = re.search("[^,。]+成为[^,。]*成交供应商", sourceContent)
  1546. if re_match:
  1547. sourceContent = sourceContent.replace(re_match.group(), "成交人:" + re_match.group(), sourceContent)
  1548. elif web_source_no == '03786-10':
  1549. ser1 = re.search('中标价:([\d,.]+)', sourceContent)
  1550. ser2 = re.search('合同金额[((]万元[))]:([\d,.]+)', sourceContent)
  1551. if ser1 and ser2:
  1552. m1 = ser1.group(1).replace(',', '')
  1553. m2 = ser2.group(1).replace(',', '')
  1554. if float(m1) < 100000 and (m1.split('.')[0] == m2.split('.')[0] or m2 == '0'):
  1555. new = '中标价(万元):' + m1
  1556. sourceContent = sourceContent.replace(ser1.group(0), new, 1)
  1557. elif web_source_no=='00076-4':
  1558. ser = re.search('主要标的数量:([0-9一]+)\w{,3},主要标的单价:([\d,.]+)元?,合同金额:(.00),', sourceContent)
  1559. if ser:
  1560. num = ser.group(1).replace('一', '1')
  1561. try:
  1562. num = 1 if num == '0' else num
  1563. unit_price = ser.group(2).replace(',', '')
  1564. total_price = str(int(num) * float(unit_price))
  1565. new = '合同金额:' + total_price
  1566. sourceContent = sourceContent.replace('合同金额:.00', new, 1)
  1567. except Exception as e:
  1568. log('preprocessing.py special_treatment exception')
  1569. elif web_source_no=='DX000105-2':
  1570. if re.search("成交公示", sourceContent) and re.search(',投标人:', sourceContent) and re.search(',成交人:', sourceContent)==None:
  1571. sourceContent = sourceContent.replace(',投标人:', ',成交人:')
  1572. elif web_source_no in ['04080-3', '04080-4']:
  1573. ser = re.search('合同金额:([0-9,]+.[0-9]{3,})(.{,4})', sourceContent)
  1574. if ser and '万' not in ser.group(2):
  1575. sourceContent = sourceContent.replace('合同金额:', '合同金额(万元):')
  1576. elif web_source_no=='03761-3':
  1577. ser = re.search('中标价,([0-9]+)[.0-9]*%', sourceContent)
  1578. if ser and int(ser.group(1))>100:
  1579. sourceContent = sourceContent.replace(ser.group(0), ser.group(0)[:-1]+'元')
  1580. elif web_source_no=='00695-7':
  1581. ser = re.search('支付金额:', sourceContent)
  1582. if ser:
  1583. sourceContent = sourceContent.replace('支付金额:', '合同金额:')
  1584. return sourceContent
  1585. def article_limit(soup,limit_words=30000):
  1586. sub_space = re.compile("\s+")
  1587. def soup_limit(_soup,_count,max_count=30000,max_gap=500):
  1588. """
  1589. :param _soup: soup
  1590. :param _count: 当前字数
  1591. :param max_count: 字数最大限制
  1592. :param max_gap: 超过限制后的最大误差
  1593. :return:
  1594. """
  1595. _gap = _count - max_count
  1596. _is_skip = False
  1597. next_soup = None
  1598. while len(_soup.find_all(recursive=False)) == 1 and \
  1599. _soup.get_text(strip=True) == _soup.find_all(recursive=False)[0].get_text(strip=True):
  1600. _soup = _soup.find_all(recursive=False)[0]
  1601. try:
  1602. for _soup_part in _soup.find_all(recursive=False):
  1603. if not _is_skip:
  1604. _count += len(re.sub(sub_space, "", _soup_part.get_text()))
  1605. if _count >= max_count:
  1606. _gap = _count - max_count
  1607. if _gap <= max_gap:
  1608. _is_skip = True
  1609. else:
  1610. next_soup = _soup_part
  1611. _count -= len(re.sub(sub_space, "", _soup_part.get_text()))
  1612. break
  1613. else:
  1614. _soup_part.decompose()
  1615. except:
  1616. return _count,_gap,None
  1617. return _count,_gap,next_soup
  1618. text_count = 0
  1619. have_attachment = False
  1620. attachment_part = None
  1621. for child in soup.find_all(recursive=True):
  1622. if child.name == 'div' and 'class' in child.attrs:
  1623. if "richTextFetch" in child['class']:
  1624. child.insert_before("##attachment##")
  1625. attachment_part = child
  1626. have_attachment = True
  1627. break
  1628. if not have_attachment:
  1629. # 无附件
  1630. if len(re.sub(sub_space, "", soup.get_text())) > limit_words:
  1631. text_count,gap,n_soup = soup_limit(soup,text_count,max_count=limit_words,max_gap=500)
  1632. while n_soup:
  1633. text_count, gap, n_soup = soup_limit(n_soup, text_count, max_count=limit_words, max_gap=500)
  1634. else:
  1635. # 有附件
  1636. _text = re.sub(sub_space, "", soup.get_text())
  1637. _text_split = _text.split("##attachment##")
  1638. if len(_text_split[0])>limit_words:
  1639. main_soup = attachment_part.parent
  1640. main_text = main_soup.find_all(recursive=False)[0]
  1641. text_count, gap, n_soup = soup_limit(main_text, text_count, max_count=limit_words, max_gap=500)
  1642. while n_soup:
  1643. text_count, gap, n_soup = soup_limit(n_soup, text_count, max_count=limit_words, max_gap=500)
  1644. if len(_text_split[1])>limit_words:
  1645. attachment_text_nums = 0
  1646. attachment_skip = False
  1647. for part in attachment_part.find_all(recursive=False):
  1648. if not attachment_skip:
  1649. attachment_text_nums += len(re.sub(sub_space, "", part.get_text()))
  1650. if attachment_text_nums>=limit_words:
  1651. attachment_skip = True
  1652. else:
  1653. part.decompose()
  1654. return soup
  1655. def get_preprocessed_article(articles,cost_time = dict(),useselffool=True):
  1656. '''
  1657. :param articles: 待处理的article source html
  1658. :param useselffool: 是否使用selffool
  1659. :return: list_articles
  1660. '''
  1661. list_articles = []
  1662. for article in articles:
  1663. doc_id = article[0]
  1664. sourceContent = article[1]
  1665. sourceContent = re.sub("<html>|</html>|<body>|</body>","",sourceContent)
  1666. sourceContent = sourceContent.replace('<br/>', '<br>')
  1667. sourceContent = re.sub("<br>(\s{0,}<br>)+","<br>",sourceContent)
  1668. # for br_match in re.findall("[^>]+?<br>",sourceContent):
  1669. # _new = re.sub("<br>","",br_match)
  1670. # # <br>标签替换为<p>标签
  1671. # if not re.search("^\s+$",_new):
  1672. # _new = '<p>'+_new + '</p>'
  1673. # # print(br_match,_new)
  1674. # sourceContent = sourceContent.replace(br_match,_new,1)
  1675. _send_doc_id = article[3]
  1676. _title = article[4]
  1677. page_time = article[5]
  1678. web_source_no = article[6]
  1679. '''特别数据源对 html 做特别修改'''
  1680. if web_source_no in ['DX000202-1']:
  1681. sourceContent = special_treatment(sourceContent, web_source_no)
  1682. #表格处理
  1683. key_preprocess = "tableToText"
  1684. start_time = time.time()
  1685. # article_processed = tableToText(BeautifulSoup(sourceContent,"lxml"))
  1686. article_processed = BeautifulSoup(sourceContent,"lxml")
  1687. '''特别数据源对 BeautifulSoup(html) 做特别修改'''
  1688. if web_source_no in ["00753-14","DX008357-11","18021-2"]:
  1689. article_processed = special_treatment(article_processed, web_source_no)
  1690. for _soup in article_processed.descendants:
  1691. # 识别无标签文本,添加<span>标签
  1692. if not _soup.name and not _soup.parent.string and _soup.string.strip()!="":
  1693. # print(_soup.parent.string,_soup.string.strip())
  1694. _soup.wrap(article_processed.new_tag("span"))
  1695. # print(article_processed)
  1696. # 正文和附件内容限制字数30000
  1697. article_processed = article_limit(article_processed,limit_words=30000)
  1698. article_processed = get_preprocessed_outline(article_processed)
  1699. article_processed = tableToText(article_processed)
  1700. # print(article_processed)
  1701. article_processed = segment(article_processed)
  1702. article_processed = article_processed.replace('.','.') # 2021/12/01 修正OCR识别PDF小数点错误问题
  1703. article_processed = article_processed.replace('报价限价', '招标限价') #2021/12/17 由于报价限价预测为中投标金额所以修改
  1704. article_processed = article_processed.replace('成交工程价款', '成交工程价') # 2021/12/21 修正为中标价
  1705. # 修复OCR金额中“,”、“。”识别错误
  1706. article_processed_list = article_processed.split("##attachment##")
  1707. if len(article_processed_list)>1:
  1708. attachment_text = article_processed_list[1]
  1709. for _match in re.finditer("\d。\d{2}",attachment_text):
  1710. _match_text = _match.group()
  1711. attachment_text = attachment_text.replace(_match_text,_match_text.replace("。","."),1)
  1712. for _match in re.finditer("(\d,\d{3})[,,.]",attachment_text):
  1713. _match_text = _match.group()
  1714. attachment_text = attachment_text.replace(_match_text,_match_text.replace(",",","),1)
  1715. article_processed_list[1] = attachment_text
  1716. article_processed = "##attachment##".join(article_processed_list)
  1717. '''特别数据源对 预处理后文本 做特别修改'''
  1718. if web_source_no in ['03786-10', '00076-4', 'DX000105-2', '04080-3', '04080-4', '03761-3', '00695-7',"13740-2"]:
  1719. article_processed = special_treatment(article_processed, web_source_no)
  1720. # 提取bidway
  1721. list_bidway = extract_bidway(article_processed, _title)
  1722. if list_bidway:
  1723. bidway = list_bidway[0].get("body")
  1724. # bidway名称统一规范
  1725. bidway = bidway_integrate(bidway)
  1726. else:
  1727. bidway = ""
  1728. # 修正被","逗号分隔的时间
  1729. repair_time = re.compile("[12]\d,?\d,?\d,?[-—-―/年],?[0-1]?\d,?[-—-―/月],?[0-3]?\d,?[日号]?,?(?:上午|下午)?,?[0-2]?\d,?:,?[0-6]\d,?:,?[0-6]\d|"
  1730. "[12]\d,?\d,?\d,?[-—-―/年],?[0-1]?\d,?[-—-―/月],?[0-3]?\d,?[日号]?,?(?:上午|下午)?,?[0-2]?\d,?[:时点],?[0-6]\d分?|"
  1731. "[12]\d,?\d,?\d,?[-—-―/年],?[0-1]?\d,?[-—-―/月],?[0-3]?\d,?[日号]?,?(?:上午|下午)?,?[0-2]?\d,?[时点]|"
  1732. "[12]\d,?\d,?\d,?[-—-―/年],?[0-1]?\d,?[-—-―/月],?[0-3]?\d,?[日号]|"
  1733. "[0-2]?\d,?:,?[0-6]\d,?:,?[0-6]\d"
  1734. )
  1735. for _time in set(re.findall(repair_time,article_processed)):
  1736. if re.search(",",_time):
  1737. _time2 = re.sub(",", "", _time)
  1738. item = re.search("[12]\d{3}[-—-―/][0-1]?\d[-—-―/][0-3]\d(?=\d)", _time2)
  1739. if item:
  1740. _time2 = _time2.replace(item.group(),item.group() + " ")
  1741. article_processed = article_processed.replace(_time, _time2)
  1742. else:
  1743. item = re.search("[12]\d{3}[-—-―/][0-1]?\d[-—-―/][0-3]\d(?=\d)", _time)
  1744. if item:
  1745. _time2 = _time.replace(item.group(),item.group() + " ")
  1746. article_processed = article_processed.replace(_time, _time2)
  1747. # print('re_rtime',re.findall(repair_time,article_processed))
  1748. # log(article_processed)
  1749. if key_preprocess not in cost_time:
  1750. cost_time[key_preprocess] = 0
  1751. cost_time[key_preprocess] += round(time.time()-start_time,2)
  1752. #article_processed = article[1]
  1753. _article = Article(doc_id,article_processed,sourceContent,_send_doc_id,_title,
  1754. bidway=bidway)
  1755. _article.fingerprint = getFingerprint(_title+sourceContent)
  1756. _article.page_time = page_time
  1757. list_articles.append(_article)
  1758. return list_articles
  1759. def get_preprocessed_sentences(list_articles,useselffool=True,cost_time=dict()):
  1760. '''
  1761. :param list_articles: 经过预处理的article text
  1762. :return: list_sentences
  1763. '''
  1764. list_sentences = []
  1765. list_outlines = []
  1766. for article in list_articles:
  1767. list_sentences_temp = []
  1768. list_entitys_temp = []
  1769. doc_id = article.id
  1770. _send_doc_id = article.doc_id
  1771. _title = article.title
  1772. #表格处理
  1773. key_preprocess = "tableToText"
  1774. start_time = time.time()
  1775. article_processed = article.content
  1776. attachment_begin_index = -1
  1777. if key_preprocess not in cost_time:
  1778. cost_time[key_preprocess] = 0
  1779. cost_time[key_preprocess] += time.time()-start_time
  1780. #nlp处理
  1781. if article_processed is not None and len(article_processed)!=0:
  1782. split_patten = "。"
  1783. sentences = []
  1784. _begin = 0
  1785. sentences_set = set()
  1786. for _iter in re.finditer(split_patten,article_processed):
  1787. _sen = article_processed[_begin:_iter.span()[1]]
  1788. if len(_sen)>0 and _sen not in sentences_set:
  1789. # 标识在附件里的句子
  1790. if re.search("##attachment##",_sen):
  1791. attachment_begin_index = len(sentences)
  1792. # _sen = re.sub("##attachment##","",_sen)
  1793. sentences.append(_sen)
  1794. sentences_set.add(_sen)
  1795. _begin = _iter.span()[1]
  1796. _sen = article_processed[_begin:]
  1797. if re.search("##attachment##", _sen):
  1798. # _sen = re.sub("##attachment##", "", _sen)
  1799. attachment_begin_index = len(sentences)
  1800. if len(_sen)>0 and _sen not in sentences_set:
  1801. sentences.append(_sen)
  1802. sentences_set.add(_sen)
  1803. # 解析outline大纲分段
  1804. outline_list = []
  1805. if re.search("##split##",article.content):
  1806. temp_sentences = []
  1807. last_sentence_index = (-1,-1)
  1808. outline_index = 0
  1809. for sentence_index in range(len(sentences)):
  1810. sentence_text = sentences[sentence_index]
  1811. for _ in re.findall("##split##", sentence_text):
  1812. _match = re.search("##split##", sentence_text)
  1813. if last_sentence_index[0] > -1:
  1814. sentence_begin_index,wordOffset_begin = last_sentence_index
  1815. sentence_end_index = sentence_index
  1816. wordOffset_end = _match.start()
  1817. if sentence_begin_index<attachment_begin_index and sentence_end_index>=attachment_begin_index:
  1818. outline_list.append(Outline(doc_id,outline_index,'',sentence_begin_index,attachment_begin_index-1,wordOffset_begin,len(sentences[attachment_begin_index-1])))
  1819. else:
  1820. outline_list.append(Outline(doc_id,outline_index,'',sentence_begin_index,sentence_end_index,wordOffset_begin,wordOffset_end))
  1821. outline_index += 1
  1822. sentence_text = re.sub("##split##", "", sentence_text,count=1)
  1823. last_sentence_index = (sentence_index,_match.start())
  1824. temp_sentences.append(sentence_text)
  1825. if attachment_begin_index>-1 and last_sentence_index[0]<attachment_begin_index:
  1826. outline_list.append(Outline(doc_id,outline_index,'',last_sentence_index[0],attachment_begin_index-1,last_sentence_index[1],len(temp_sentences[attachment_begin_index-1])))
  1827. else:
  1828. outline_list.append(Outline(doc_id,outline_index,'',last_sentence_index[0],len(sentences)-1,last_sentence_index[1],len(temp_sentences[-1])))
  1829. sentences = temp_sentences
  1830. #解析outline的outline_text内容
  1831. for _outline in outline_list:
  1832. if _outline.sentence_begin_index==_outline.sentence_end_index:
  1833. _text = sentences[_outline.sentence_begin_index][_outline.wordOffset_begin:_outline.wordOffset_end]
  1834. else:
  1835. _text = ""
  1836. for idx in range(_outline.sentence_begin_index,_outline.sentence_end_index+1):
  1837. if idx==_outline.sentence_begin_index:
  1838. _text += sentences[idx][_outline.wordOffset_begin:]
  1839. elif idx==_outline.sentence_end_index:
  1840. _text += sentences[idx][:_outline.wordOffset_end]
  1841. else:
  1842. _text += sentences[idx]
  1843. _outline.outline_text = _text
  1844. _outline_summary = re.split("[::,]",_text,1)[0]
  1845. if len(_outline_summary)<20:
  1846. _outline.outline_summary = _outline_summary
  1847. # print(_outline.outline_index,_outline.outline_text)
  1848. article.content = "".join(sentences)
  1849. # sentences.append(article_processed[_begin:])
  1850. lemmas = []
  1851. doc_offsets = []
  1852. dep_types = []
  1853. dep_tokens = []
  1854. time1 = time.time()
  1855. '''
  1856. tokens_all = fool.cut(sentences)
  1857. #pos_all = fool.LEXICAL_ANALYSER.pos(tokens_all)
  1858. #ner_tag_all = fool.LEXICAL_ANALYSER.ner_labels(sentences,tokens_all)
  1859. ner_entitys_all = fool.ner(sentences)
  1860. '''
  1861. #限流执行
  1862. key_nerToken = "nerToken"
  1863. start_time = time.time()
  1864. tokens_all = getTokens(sentences,useselffool=useselffool)
  1865. if key_nerToken not in cost_time:
  1866. cost_time[key_nerToken] = 0
  1867. cost_time[key_nerToken] += round(time.time()-start_time,2)
  1868. in_attachment = False
  1869. for sentence_index in range(len(sentences)):
  1870. if sentence_index == attachment_begin_index:
  1871. in_attachment = True
  1872. sentence_text = sentences[sentence_index]
  1873. tokens = tokens_all[sentence_index]
  1874. #pos_tag = pos_all[sentence_index]
  1875. pos_tag = ""
  1876. ner_entitys = ""
  1877. list_sentences_temp.append(Sentences(doc_id=doc_id,sentence_index=sentence_index,sentence_text=sentence_text,tokens=tokens,pos_tags=pos_tag,ner_tags=ner_entitys,in_attachment=in_attachment))
  1878. if len(list_sentences_temp)==0:
  1879. list_sentences_temp.append(Sentences(doc_id=doc_id,sentence_index=0,sentence_text="sentence_text",tokens=[],pos_tags=[],ner_tags=""))
  1880. list_sentences.append(list_sentences_temp)
  1881. list_outlines.append(outline_list)
  1882. return list_sentences,list_outlines
  1883. def get_preprocessed_entitys(list_sentences,useselffool=True,cost_time=dict()):
  1884. '''
  1885. :param list_sentences:分局情况
  1886. :param cost_time:
  1887. :return: list_entitys
  1888. '''
  1889. list_entitys = []
  1890. for list_sentence in list_sentences:
  1891. sentences = []
  1892. list_entitys_temp = []
  1893. for _sentence in list_sentence:
  1894. sentences.append(_sentence.sentence_text)
  1895. lemmas = []
  1896. doc_offsets = []
  1897. dep_types = []
  1898. dep_tokens = []
  1899. time1 = time.time()
  1900. '''
  1901. tokens_all = fool.cut(sentences)
  1902. #pos_all = fool.LEXICAL_ANALYSER.pos(tokens_all)
  1903. #ner_tag_all = fool.LEXICAL_ANALYSER.ner_labels(sentences,tokens_all)
  1904. ner_entitys_all = fool.ner(sentences)
  1905. '''
  1906. #限流执行
  1907. key_nerToken = "nerToken"
  1908. start_time = time.time()
  1909. found_yeji = 0 # 2021/8/6 增加判断是否正文包含评标结果 及类似业绩判断用于过滤后面的金额
  1910. # found_pingbiao = False
  1911. ner_entitys_all = getNers(sentences,useselffool=useselffool)
  1912. if key_nerToken not in cost_time:
  1913. cost_time[key_nerToken] = 0
  1914. cost_time[key_nerToken] += round(time.time()-start_time,2)
  1915. company_dict = set()
  1916. company_index = dict((i,set()) for i in range(len(list_sentence)))
  1917. for sentence_index in range(len(list_sentence)):
  1918. list_sentence_entitys = []
  1919. sentence_text = list_sentence[sentence_index].sentence_text
  1920. tokens = list_sentence[sentence_index].tokens
  1921. doc_id = list_sentence[sentence_index].doc_id
  1922. in_attachment = list_sentence[sentence_index].in_attachment
  1923. list_tokenbegin = []
  1924. begin = 0
  1925. for i in range(0,len(tokens)):
  1926. list_tokenbegin.append(begin)
  1927. begin += len(str(tokens[i]))
  1928. list_tokenbegin.append(begin+1)
  1929. #pos_tag = pos_all[sentence_index]
  1930. pos_tag = ""
  1931. ner_entitys = ner_entitys_all[sentence_index]
  1932. '''正则识别角色实体 经营部|经销部|电脑部|服务部|复印部|印刷部|彩印部|装饰部|修理部|汽修部|修理店|零售店|设计店|服务店|家具店|专卖店|分店|文具行|商行|印刷厂|修理厂|维修中心|修配中心|养护中心|服务中心|会馆|文化馆|超市|门市|商场|家具城|印刷社|经销处'''
  1933. for it in re.finditer(
  1934. '(?P<text_key_word>(((单一来源|中标|中选|中价|成交)(供应商|供货商|服务商|候选人|单位|人))|(供应商|供货商|服务商|候选人))(名称)?[为::]+)(?P<text>([^,。、;《::]{5,20})(厂|中心|超市|门市|商场|工作室|文印室|城|部|店|站|馆|行|社|处))[,。]',
  1935. sentence_text):
  1936. for k, v in it.groupdict().items():
  1937. if k == 'text_key_word':
  1938. keyword = v
  1939. if k == 'text':
  1940. entity = v
  1941. b = it.start() + len(keyword)
  1942. e = it.end() - 1
  1943. if (b, e, 'location', entity) in ner_entitys:
  1944. ner_entitys.remove((b, e, 'location', entity))
  1945. ner_entitys.append((b, e, 'company', entity))
  1946. elif (b, e, 'org', entity) not in ner_entitys and (b, e, 'company', entity) not in ner_entitys:
  1947. ner_entitys.append((b, e, 'company', entity))
  1948. for it in re.finditer(
  1949. '(?P<text_key_word>((建设|招租|招标|采购)(单位|人)|业主)(名称)?[为::]+)(?P<text>\w{2,4}[省市县区镇]([^,。、;《]{2,20})(管理处|办公室|委员会|村委会|纪念馆|监狱|管教所|修养所|社区|农场|林场|羊场|猪场|石场|村|幼儿园))[,。]',
  1950. sentence_text):
  1951. for k, v in it.groupdict().items():
  1952. if k == 'text_key_word':
  1953. keyword = v
  1954. if k == 'text':
  1955. entity = v
  1956. b = it.start() + len(keyword)
  1957. e = it.end() - 1
  1958. if (b, e, 'location', entity) in ner_entitys:
  1959. ner_entitys.remove((b, e, 'location', entity))
  1960. ner_entitys.append((b, e, 'org', entity))
  1961. if (b, e, 'org', entity) not in ner_entitys and (b, e, 'company', entity) not in ner_entitys:
  1962. ner_entitys.append((b, e, 'org', entity))
  1963. for ner_entity in ner_entitys:
  1964. if ner_entity[2] in ['company','org']:
  1965. company_dict.add((ner_entity[2],ner_entity[3]))
  1966. company_index[sentence_index].add((ner_entity[0],ner_entity[1]))
  1967. #识别package
  1968. #识别实体
  1969. for ner_entity in ner_entitys:
  1970. begin_index_temp = ner_entity[0]
  1971. end_index_temp = ner_entity[1]
  1972. entity_type = ner_entity[2]
  1973. entity_text = ner_entity[3]
  1974. if entity_type in ["org","company"] and not isLegalEnterprise(entity_text):
  1975. continue
  1976. for j in range(len(list_tokenbegin)):
  1977. if list_tokenbegin[j]==begin_index_temp:
  1978. begin_index = j
  1979. break
  1980. elif list_tokenbegin[j]>begin_index_temp:
  1981. begin_index = j-1
  1982. break
  1983. begin_index_temp += len(str(entity_text))
  1984. for j in range(begin_index,len(list_tokenbegin)):
  1985. if list_tokenbegin[j]>=begin_index_temp:
  1986. end_index = j-1
  1987. break
  1988. entity_id = "%s_%d_%d_%d"%(doc_id,sentence_index,begin_index,end_index)
  1989. #去掉标点符号
  1990. entity_text = re.sub("[,,。:!&@$\*]","",entity_text)
  1991. entity_text = entity_text.replace("(","(").replace(")",")") if isinstance(entity_text,str) else entity_text
  1992. list_sentence_entitys.append(Entity(doc_id,entity_id,entity_text,entity_type,sentence_index,begin_index,end_index,ner_entity[0],ner_entity[1],in_attachment=in_attachment))
  1993. # 标记文章末尾的"发布人”、“发布时间”实体
  1994. if sentence_index==len(list_sentence)-1:
  1995. if len(list_sentence_entitys[-2:])>2:
  1996. second2last = list_sentence_entitys[-2]
  1997. last = list_sentence_entitys[-1]
  1998. if (second2last.entity_type in ["company",'org'] and last.entity_type=="time") or (
  1999. second2last.entity_type=="time" and last.entity_type in ["company",'org']):
  2000. if last.wordOffset_begin - second2last.wordOffset_end < 6 and len(sentence_text) - last.wordOffset_end<6:
  2001. last.is_tail = True
  2002. second2last.is_tail = True
  2003. #使用正则识别金额
  2004. entity_type = "money"
  2005. #money_patten_str = "(([1-9][\d,,]*(?:\.\d+)?[百千万亿]?[\(\)()元整]+)|([零壹贰叁肆伍陆柒捌玖拾佰仟萬億十百千万亿元角分]{3,})|(?:[¥¥]+,?|报价|标价)[(\(]?([万])?元?[)\)]?[::]?.{,7}?([1-9][\d,,]*(?:\.\d+)?(?:,?)[百千万亿]?)|([1-9][\d,,]*(?:\.\d+)?(?:,?)[百千万亿]?)[\((]?([万元]{1,2}))*"
  2006. # list_money_pattern = {"cn":"(()()(?P<money_cn>[零壹贰叁肆伍陆柒捌玖拾佰仟萬億圆十百千万亿元角分]{3,})())",
  2007. # "key_word":"((?P<text_key_word>(?:[¥¥]+,?|[单报标限]价|金额|价格|标的基本情况|CNY|成交结果:)(?:[,(\(]*\s*(?P<unit_key_word_before>[万元]*(?P<filter_unit2>[台个只]*))\s*[)\)]?)\s*[,,::]*(\s*[^壹贰叁肆伍陆柒捌玖拾佰仟萬億分万元]{,8}?))(?P<money_key_word>[0-9][\d,]*(?:\.\d+)?(?:,?)[百千万亿元]*)(?:[(\(]?(?P<filter_>[%])*\s*(?P<unit_key_word_behind>[万元]*(?P<filter_unit1>[台个只]*))\s*[)\)]?))",
  2008. # "front_m":"((?P<text_front_m>(?:[(\(]?\s*(?P<unit_front_m_before>[万元]+)\s*[)\)])\s*[,,::]*(\s*[^壹贰叁肆伍陆柒捌玖拾佰仟萬億分万元]{,7}?))(?P<money_front_m>[0-9][\d,]*(?:\.\d+)?(?:,?)[百千万亿元]*)())",
  2009. # "behind_m":"(()()(?P<money_behind_m>[0-9][\d,,]*(?:\.\d+)?(?:,?)[百千万亿]*)[\((]?(?P<unit_behind_m>[万元]+(?P<filter_unit3>[台个只]*))[\))]?)"}
  2010. list_money_pattern = {"cn":"(()()(?P<money_cn>[零壹贰叁肆伍陆柒捌玖拾佰仟萬億圆十百千万亿元角分]{3,})())",
  2011. "key_word": "((?P<text_key_word>(?:[¥¥]+,?|[单报标限总]价|金额|成交报?价|价格|预算|(监理|设计|勘察)(服务)?费|标的基本情况|CNY|成交结果|成交额|中标额)(?:[,,(\(]*\s*(人民币)?(?P<unit_key_word_before>[万亿]?元?(?P<filter_unit2>[台个只吨]*))\s*(/?费率)?(人民币)?[)\)]?)\s*[,,::]*(\s*[^壹贰叁肆伍陆柒捌玖拾佰仟萬億分万元编号时间]{,8}?))(第[123一二三]名[::])?(\d+(\*\d+%)+=)?(?P<money_key_word>[0-9][\d,]*(?:\.\d+)?(?:,?)[百千]{,1})(?:[(\(]?(?P<filter_>[%])*\s*(单位[::])?(?P<unit_key_word_behind>[万亿]?元?(?P<filter_unit1>[台只吨斤棵株页亩方条天]*))\s*[)\)]?))",
  2012. "front_m":"((?P<text_front_m>(?:[(\(]?\s*(?P<unit_front_m_before>[万亿]?元)\s*[)\)])\s*[,,::]*(\s*[^壹贰叁肆伍陆柒捌玖拾佰仟萬億分万元]{,7}?))(?P<money_front_m>[0-9][\d,]*(?:\.\d+)?(?:,?)[百千]*)())",
  2013. "behind_m":"(()()(?P<money_behind_m>[0-9][\d,]*(?:\.\d+)?(?:,?)[百千]*)(人民币)?[\((]?(?P<unit_behind_m>[万亿]?元(?P<filter_unit3>[台个只吨斤棵株页亩方条米]*))[\))]?)"}
  2014. # 2021/7/19 调整金额,单位提取正则,修复部分金额因为单位提取失败被过滤问题。
  2015. pattern_money = re.compile("%s|%s|%s|%s"%(list_money_pattern["cn"],list_money_pattern["key_word"],list_money_pattern["behind_m"],list_money_pattern["front_m"]))
  2016. set_begin = set()
  2017. # for pattern_key in list_money_pattern.keys():
  2018. # for pattern_key in ["cn","key_word","behind_m","front_m"]:
  2019. # # pattern = re.compile(list_money_pattern[pattern_key])
  2020. # pattern = re.compile("(()()([零壹贰叁肆伍陆柒捌玖拾佰仟萬億十百千万亿元角分]{3,})())*|((?:[¥¥]+,?|[报标限]价|金额)(?:[(\(]?\s*([万元]*)\s*[)\)]?)\s*[::]?(\s*[^壹贰叁肆伍陆柒捌玖拾佰仟萬億分]{,7}?)([0-9][\d,,]*(?:\.\d+)?(?:,?)[百千万亿元]*)(?:[(\(]?\s*([万元]*)\s*[)\)]?))*|(()()([0-9][\d,,]*(?:\.\d+)?(?:,?)[百千万亿]*)[\((]?([万元]+)[\))]?)*|((?:[(\(]?\s*([万元]+)\s*[)\)])\s*[::]?(\s*[^壹贰叁肆伍陆柒捌玖拾佰仟萬億分]{,7}?)([0-9][\d,,]*(?:\.\d+)?(?:,?)[百千万亿元]*)())*")
  2021. # all_match = re.findall(pattern, sentence_text)
  2022. # index = 0
  2023. # for i in range(len(all_match)):
  2024. # if len(all_match[i][0])>0:
  2025. # print("===",all_match[i])
  2026. # #print(all_match[i][0])
  2027. # unit = ""
  2028. # entity_text = all_match[i][3]
  2029. # if pattern_key in ["key_word","front_m"]:
  2030. # unit = all_match[i][1]
  2031. # if pattern_key=="key_word":
  2032. # if all_match[i][1]=="" and all_match[i][4]!="":
  2033. # unit = all_match[i][4]
  2034. # else:
  2035. # unit = all_match[i][4]
  2036. # if entity_text.find("元")>=0:
  2037. # unit = ""
  2038. #
  2039. # index += len(all_match[i][0])-len(entity_text)-len(all_match[i][4])#-len(all_match[i][1])-len(all_match[i][2])#整个提出来的作为实体->数字部分作为整体,否则会丢失特征
  2040. # begin_index_temp = index
  2041. # for j in range(len(list_tokenbegin)):
  2042. # if list_tokenbegin[j]==index:
  2043. # begin_index = j
  2044. # break
  2045. # elif list_tokenbegin[j]>index:
  2046. # begin_index = j-1
  2047. # break
  2048. # index += len(str(entity_text))+len(all_match[i][4])#+len(all_match[i][2])+len(all_match[i][1])#整个提出来的作为实体
  2049. # end_index_temp = index
  2050. # #index += len(str(all_match[i][0]))
  2051. # for j in range(begin_index,len(list_tokenbegin)):
  2052. # if list_tokenbegin[j]>=index:
  2053. # end_index = j-1
  2054. # break
  2055. # entity_id = "%s_%d_%d_%d"%(doc_id,sentence_index,begin_index,end_index)
  2056. #
  2057. # entity_text = re.sub("[^0-9.零壹贰叁肆伍陆柒捌玖拾佰仟萬億十百千万亿元角分]","",entity_text)
  2058. # if len(unit)>0:
  2059. # entity_text = str(getUnifyMoney(entity_text)*getMultipleFactor(unit[0]))
  2060. # else:
  2061. # entity_text = str(getUnifyMoney(entity_text))
  2062. #
  2063. # _exists = False
  2064. # for item in list_sentence_entitys:
  2065. # if item.entity_id==entity_id and item.entity_type==entity_type:
  2066. # _exists = True
  2067. # if not _exists:
  2068. # if float(entity_text)>1:
  2069. # list_sentence_entitys.append(Entity(doc_id,entity_id,entity_text,entity_type,sentence_index,begin_index,end_index,begin_index_temp,end_index_temp))
  2070. #
  2071. # else:
  2072. # index += 1
  2073. # if re.search('评标结果|候选人公示', sentence_text):
  2074. # found_pingbiao = True
  2075. if re.search('业绩', sentence_text):
  2076. found_yeji += 1
  2077. if found_yeji >= 2: # 过滤掉业绩后面的所有金额
  2078. all_match = []
  2079. else:
  2080. all_match = re.finditer(pattern_money, sentence_text)
  2081. index = 0
  2082. for _match in all_match:
  2083. if len(_match.group())>0:
  2084. # print("===",_match.group())
  2085. # # print(_match.groupdict())
  2086. notes = '' # 2021/7/20 新增备注金额大写或金额单位 if 金额大写 notes=大写 elif 单位 notes=单位
  2087. unit = ""
  2088. entity_text = ""
  2089. text_beforeMoney = ""
  2090. filter = ""
  2091. filter_unit = False
  2092. notSure = False
  2093. if re.search('业绩', sentence_text[:_match.span()[0]]): # 2021/7/21过滤掉业绩后面金额
  2094. # print('金额在业绩后面: ', _match.group(0))
  2095. found_yeji += 1
  2096. break
  2097. for k,v in _match.groupdict().items():
  2098. if v!="" and v is not None:
  2099. if k=='text_key_word':
  2100. notSure = True
  2101. if k.split("_")[0]=="money":
  2102. entity_text = v
  2103. if k.split("_")[0]=="unit":
  2104. unit = v
  2105. if k.split("_")[0]=="text":
  2106. text_beforeMoney = v
  2107. if k.split("_")[0]=="filter":
  2108. filter = v
  2109. if re.search("filter_unit",k) is not None:
  2110. filter_unit = True
  2111. # print(_match.group())
  2112. # print(entity_text,unit,text_beforeMoney,filter,filter_unit)
  2113. if re.search('(^\d{2,},\d{4,}万?$)|(^\d{2,},\d{2}万?$)', entity_text.strip()): # 2021/7/19 修正OCR识别小数点为逗号
  2114. if re.search('[幢栋号楼层]', sentence_text[max(0, _match.span()[0]-2):_match.span()[0]]):
  2115. entity_text = re.sub('\d+,', '', entity_text)
  2116. else:
  2117. entity_text = entity_text.replace(',', '.')
  2118. # print(' 修正OCR识别小数点为逗号')
  2119. if entity_text.find("元")>=0:
  2120. unit = ""
  2121. if unit == "": #2021/7/21 有明显金额特征的补充单位,避免被过滤
  2122. if ('¥' in text_beforeMoney or '¥' in text_beforeMoney):
  2123. unit = '元'
  2124. # print('明显金额特征补充单位 元')
  2125. elif re.search('[单报标限]价|金额|价格|(监理|设计|勘察)(服务)?费[::为]+$', text_beforeMoney.strip()) and \
  2126. re.search('\d{5,}',entity_text) and re.search('^0|1[3|4|5|6|7|8|9]\d{9}',entity_text)==None:
  2127. unit = '元'
  2128. # print('明显金额特征补充单位 元')
  2129. elif re.search('(^\d{,3}(,?\d{3})+(\.\d{2,7},?)$)|(^\d{,3}(,\d{3})+,?$)',entity_text):
  2130. unit = '元'
  2131. # print('明显金额特征补充单位 元')
  2132. if unit.find("万") >= 0 and entity_text.find("万") >= 0: #2021/7/19修改为金额文本有万,不计算单位
  2133. # print('修正金额及单位都有万, 金额:',entity_text, '单位:',unit)
  2134. unit = "元"
  2135. if re.search('.*万元万元', entity_text): #2021/7/19 修正两个万元
  2136. # print(' 修正两个万元',entity_text)
  2137. entity_text = entity_text.replace('万元万元','万元')
  2138. else:
  2139. if filter_unit:
  2140. continue
  2141. if filter!="":
  2142. continue
  2143. index = _match.span()[0]+len(text_beforeMoney)
  2144. begin_index_temp = index
  2145. for j in range(len(list_tokenbegin)):
  2146. if list_tokenbegin[j]==index:
  2147. begin_index = j
  2148. break
  2149. elif list_tokenbegin[j]>index:
  2150. begin_index = j-1
  2151. break
  2152. index = _match.span()[1]
  2153. end_index_temp = index
  2154. #index += len(str(all_match[i][0]))
  2155. for j in range(begin_index,len(list_tokenbegin)):
  2156. if list_tokenbegin[j]>=index:
  2157. end_index = j-1
  2158. break
  2159. entity_id = "%s_%d_%d_%d"%(doc_id,sentence_index,begin_index,end_index)
  2160. entity_text = re.sub("[^0-9.零壹贰叁肆伍陆柒捌玖拾佰仟萬億圆十百千万亿元角分]","",entity_text)
  2161. # print('转换前金额:', entity_text, '单位:', unit, '备注:',notes, 'text_beforeMoney:',text_beforeMoney)
  2162. if re.search('总投资|投资总额|总预算|总概算|投资规模', sentence_text[max(0, _match.span()[0] - 8):_match.span()[1]]): # 2021/8/5过滤掉总投资金额
  2163. # print('总投资金额: ', _match.group(0))
  2164. notes = '总投资'
  2165. elif re.search('投资', sentence_text[max(0, _match.span()[0] - 8):_match.span()[1]]): # 2021/11/18 投资金额不作为招标金额
  2166. notes = '投资'
  2167. elif re.search('工程造价', sentence_text[max(0, _match.span()[0] - 8):_match.span()[1]]): # 2021/12/20 工程造价不作为招标金额
  2168. notes = '工程造价'
  2169. elif (re.search('保证金', sentence_text[max(0, _match.span()[0] - 5):_match.span()[1]])
  2170. or re.search('保证金的?(缴纳)?(金额|金\?|额|\?)?[\((]*(万?元|为?人民币|大写|调整|变更|已?修改|更改|更正)?[\))]*[::为]',
  2171. sentence_text[max(0, _match.span()[0] - 10):_match.span()[1]])
  2172. or re.search('保证金由[\d.,]+.{,3}(变更|修改|更改|更正|调整?)为',
  2173. sentence_text[max(0, _match.span()[0] - 15):_match.span()[1]])):
  2174. notes = '保证金'
  2175. # print('保证金信息:', sentence_text[max(0, _match.span()[0] - 15):_match.span()[1]])
  2176. elif re.search('成本(警戒|预警)(线|价|值)[^0-9元]{,10}',
  2177. sentence_text[max(0, _match.span()[0] - 10):_match.span()[0]]):
  2178. notes = '成本警戒线'
  2179. elif re.search('(监理|设计|勘察)(服务)?费(报价)?[约为:]', sentence_text[_match.span()[0]:_match.span()[1]]):
  2180. cost_re = re.search('(监理|设计|勘察)(服务)?费', sentence_text[_match.span()[0]:_match.span()[1]])
  2181. notes = cost_re.group(1)
  2182. elif re.search('单价|总金额', sentence_text[_match.span()[0]:_match.span()[1]]):
  2183. notes = '单价'
  2184. elif re.search('[零壹贰叁肆伍陆柒捌玖拾佰仟萬億圆]', entity_text) != None:
  2185. notes = '大写'
  2186. if entity_text[0] == "拾": # 2021/12/16 修正大写金额省略了数字转换错误问题
  2187. entity_text = "壹"+entity_text
  2188. # print("补充备注:notes = 大写")
  2189. if len(unit)>0:
  2190. if unit.find('万')>=0 and len(entity_text.split('.')[0])>=8: # 2021/7/19 修正万元金额过大的情况
  2191. # print('修正单位万元金额过大的情况 金额:', entity_text, '单位:', unit)
  2192. entity_text = str(getUnifyMoney(entity_text) * getMultipleFactor(unit[0])/10000)
  2193. unit = '元' # 修正金额后单位 重置为元
  2194. else:
  2195. # print('str(getUnifyMoney(entity_text)*getMultipleFactor(unit[0])):')
  2196. entity_text = str(getUnifyMoney(entity_text)*getMultipleFactor(unit[0]))
  2197. else:
  2198. if entity_text.find('万')>=0 and entity_text.split('.')[0].isdigit() and len(entity_text.split('.')[0])>=8:
  2199. entity_text = str(getUnifyMoney(entity_text)/10000)
  2200. # print('修正金额字段含万 过大的情况')
  2201. else:
  2202. entity_text = str(getUnifyMoney(entity_text))
  2203. if float(entity_text)>100000000000: # float(entity_text)<100 or 2022/3/4 取消最小金额限制
  2204. # print('过滤掉金额:float(entity_text)<100 or float(entity_text)>100000000000', entity_text, unit)
  2205. continue
  2206. if notSure and unit=="" and float(entity_text)>100*10000:
  2207. # print('过滤掉金额 notSure and unit=="" and float(entity_text)>100*10000:', entity_text, unit)
  2208. continue
  2209. _exists = False
  2210. for item in list_sentence_entitys:
  2211. if item.entity_id==entity_id and item.entity_type==entity_type:
  2212. _exists = True
  2213. if (begin_index >=item.begin_index and begin_index<=item.end_index) or (end_index>=item.begin_index and end_index<=item.end_index):
  2214. _exists = True
  2215. if not _exists:
  2216. if float(entity_text)>1:
  2217. list_sentence_entitys.append(Entity(doc_id,entity_id,entity_text,entity_type,sentence_index,begin_index,end_index,begin_index_temp,end_index_temp,in_attachment=in_attachment))
  2218. list_sentence_entitys[-1].notes = notes # 2021/7/20 新增金额备注
  2219. list_sentence_entitys[-1].money_unit = unit # 2021/7/20 新增金额备注
  2220. # print('预处理中的 金额:%s, 单位:%s'%(entity_text,unit))
  2221. # print(entity_text,unit,notes)
  2222. else:
  2223. index += 1
  2224. # "联系人"正则补充提取 2021/11/15 新增
  2225. list_person_text = [entity.entity_text for entity in list_sentence_entitys if entity.entity_type=='person']
  2226. error_text = ['交易','机构','教育','项目','公司','中标','开标','截标','监督','政府','国家','中国','技术','投标','传真','网址','电子邮',
  2227. '联系','联系电','联系地','采购代','邮政编','邮政','电话','手机','手机号','联系人','地址','地点','邮箱','邮编','联系方','招标','招标人','代理',
  2228. '代理人','采购','附件','注意','登录','报名','踏勘']
  2229. list_person_text = set(list_person_text + error_text)
  2230. re_person = re.compile("联系人[::]([\u4e00-\u9fa5]工)|"
  2231. "联系人[::]([\u4e00-\u9fa5]{2,3})(?=联系)|"
  2232. "联系人[::]([\u4e00-\u9fa5]{2,3})")
  2233. list_person = []
  2234. for match_result in re_person.finditer(sentence_text):
  2235. match_text = match_result.group()
  2236. entity_text = match_text[4:]
  2237. wordOffset_begin = match_result.start() + 4
  2238. wordOffset_end = match_result.end()
  2239. # print(text[wordOffset_begin:wordOffset_end])
  2240. # 排除一些不为人名的实体
  2241. if re.search("^[\u4e00-\u9fa5]{7,}([,。]|$)",sentence_text[wordOffset_begin:wordOffset_begin+20]):
  2242. continue
  2243. if entity_text not in list_person_text and entity_text[:2] not in list_person_text:
  2244. _person = dict()
  2245. _person['body'] = entity_text
  2246. _person['begin_index'] = wordOffset_begin
  2247. _person['end_index'] = wordOffset_end
  2248. list_person.append(_person)
  2249. entity_type = "person"
  2250. for person in list_person:
  2251. begin_index_temp = person['begin_index']
  2252. for j in range(len(list_tokenbegin)):
  2253. if list_tokenbegin[j] == begin_index_temp:
  2254. begin_index = j
  2255. break
  2256. elif list_tokenbegin[j] > begin_index_temp:
  2257. begin_index = j - 1
  2258. break
  2259. index = person['end_index']
  2260. end_index_temp = index
  2261. for j in range(begin_index, len(list_tokenbegin)):
  2262. if list_tokenbegin[j] >= index:
  2263. end_index = j - 1
  2264. break
  2265. entity_id = "%s_%d_%d_%d" % (doc_id, sentence_index, begin_index, end_index)
  2266. entity_text = person['body']
  2267. list_sentence_entitys.append(
  2268. Entity(doc_id, entity_id, entity_text, entity_type, sentence_index, begin_index, end_index,
  2269. begin_index_temp, end_index_temp,in_attachment=in_attachment))
  2270. # 资金来源提取 2020/12/30 新增
  2271. list_moneySource = extract_moneySource(sentence_text)
  2272. entity_type = "moneysource"
  2273. for moneySource in list_moneySource:
  2274. begin_index_temp = moneySource['begin_index']
  2275. for j in range(len(list_tokenbegin)):
  2276. if list_tokenbegin[j] == begin_index_temp:
  2277. begin_index = j
  2278. break
  2279. elif list_tokenbegin[j] > begin_index_temp:
  2280. begin_index = j - 1
  2281. break
  2282. index = moneySource['end_index']
  2283. end_index_temp = index
  2284. for j in range(begin_index, len(list_tokenbegin)):
  2285. if list_tokenbegin[j] >= index:
  2286. end_index = j - 1
  2287. break
  2288. entity_id = "%s_%d_%d_%d" % (doc_id, sentence_index, begin_index, end_index)
  2289. entity_text = moneySource['body']
  2290. list_sentence_entitys.append(
  2291. Entity(doc_id, entity_id, entity_text, entity_type, sentence_index, begin_index, end_index,
  2292. begin_index_temp, end_index_temp,in_attachment=in_attachment))
  2293. # 电子邮箱提取 2021/11/04 新增
  2294. list_email = extract_email(sentence_text)
  2295. entity_type = "email" # 电子邮箱
  2296. for email in list_email:
  2297. begin_index_temp = email['begin_index']
  2298. for j in range(len(list_tokenbegin)):
  2299. if list_tokenbegin[j] == begin_index_temp:
  2300. begin_index = j
  2301. break
  2302. elif list_tokenbegin[j] > begin_index_temp:
  2303. begin_index = j - 1
  2304. break
  2305. index = email['end_index']
  2306. end_index_temp = index
  2307. for j in range(begin_index, len(list_tokenbegin)):
  2308. if list_tokenbegin[j] >= index:
  2309. end_index = j - 1
  2310. break
  2311. entity_id = "%s_%d_%d_%d" % (doc_id, sentence_index, begin_index, end_index)
  2312. entity_text = email['body']
  2313. list_sentence_entitys.append(
  2314. Entity(doc_id, entity_id, entity_text, entity_type, sentence_index, begin_index, end_index,
  2315. begin_index_temp, end_index_temp,in_attachment=in_attachment))
  2316. # 服务期限提取 2020/12/30 新增
  2317. list_servicetime = extract_servicetime(sentence_text)
  2318. entity_type = "serviceTime"
  2319. for servicetime in list_servicetime:
  2320. begin_index_temp = servicetime['begin_index']
  2321. for j in range(len(list_tokenbegin)):
  2322. if list_tokenbegin[j] == begin_index_temp:
  2323. begin_index = j
  2324. break
  2325. elif list_tokenbegin[j] > begin_index_temp:
  2326. begin_index = j - 1
  2327. break
  2328. index = servicetime['end_index']
  2329. end_index_temp = index
  2330. for j in range(begin_index, len(list_tokenbegin)):
  2331. if list_tokenbegin[j] >= index:
  2332. end_index = j - 1
  2333. break
  2334. entity_id = "%s_%d_%d_%d" % (doc_id, sentence_index, begin_index, end_index)
  2335. entity_text = servicetime['body']
  2336. list_sentence_entitys.append(
  2337. Entity(doc_id, entity_id, entity_text, entity_type, sentence_index, begin_index, end_index,
  2338. begin_index_temp, end_index_temp,in_attachment=in_attachment))
  2339. # 招标方式提取 2020/12/30 新增
  2340. # list_bidway = extract_bidway(sentence_text, )
  2341. # entity_type = "bidway"
  2342. # for bidway in list_bidway:
  2343. # begin_index_temp = bidway['begin_index']
  2344. # end_index_temp = bidway['end_index']
  2345. # begin_index = changeIndexFromWordToWords(tokens, begin_index_temp)
  2346. # end_index = changeIndexFromWordToWords(tokens, end_index_temp)
  2347. # if begin_index is None or end_index is None:
  2348. # continue
  2349. # print(begin_index_temp,end_index_temp,begin_index,end_index)
  2350. # entity_id = "%s_%d_%d_%d" % (doc_id, sentence_index, begin_index, end_index)
  2351. # entity_text = bidway['body']
  2352. # list_sentence_entitys.append(
  2353. # Entity(doc_id, entity_id, entity_text, entity_type, sentence_index, begin_index, end_index,
  2354. # begin_index_temp, end_index_temp))
  2355. # 2021/12/29 新增比率提取
  2356. list_ratio = extract_ratio(sentence_text)
  2357. entity_type = "ratio"
  2358. for ratio in list_ratio:
  2359. # print("ratio", ratio)
  2360. begin_index_temp = ratio['begin_index']
  2361. for j in range(len(list_tokenbegin)):
  2362. if list_tokenbegin[j] == begin_index_temp:
  2363. begin_index = j
  2364. break
  2365. elif list_tokenbegin[j] > begin_index_temp:
  2366. begin_index = j - 1
  2367. break
  2368. index = ratio['end_index']
  2369. end_index_temp = index
  2370. for j in range(begin_index, len(list_tokenbegin)):
  2371. if list_tokenbegin[j] >= index:
  2372. end_index = j - 1
  2373. break
  2374. entity_id = "%s_%d_%d_%d" % (doc_id, sentence_index, begin_index, end_index)
  2375. entity_text = ratio['body']
  2376. list_sentence_entitys.append(
  2377. Entity(doc_id, entity_id, entity_text, entity_type, sentence_index, begin_index, end_index,
  2378. begin_index_temp, end_index_temp,in_attachment=in_attachment))
  2379. list_sentence_entitys.sort(key=lambda x:x.begin_index)
  2380. list_entitys_temp = list_entitys_temp+list_sentence_entitys
  2381. # 补充ner模型未识别全的company/org实体
  2382. for sentence_index in range(len(list_sentence)):
  2383. sentence_text = list_sentence[sentence_index].sentence_text
  2384. tokens = list_sentence[sentence_index].tokens
  2385. doc_id = list_sentence[sentence_index].doc_id
  2386. in_attachment = list_sentence[sentence_index].in_attachment
  2387. list_tokenbegin = []
  2388. begin = 0
  2389. for i in range(0, len(tokens)):
  2390. list_tokenbegin.append(begin)
  2391. begin += len(str(tokens[i]))
  2392. list_tokenbegin.append(begin + 1)
  2393. add_sentence_entitys = []
  2394. company_dict = sorted(list(company_dict),key=lambda x:len(x[1]),reverse=True)
  2395. for company_type,company_text in company_dict:
  2396. begin_index_list = findAllIndex(company_text,sentence_text)
  2397. for begin_index in begin_index_list:
  2398. is_continue = False
  2399. for t_begin,t_end in list(company_index[sentence_index]):
  2400. if begin_index>=t_begin and begin_index+len(company_text)<=t_end:
  2401. is_continue = True
  2402. break
  2403. if not is_continue:
  2404. add_sentence_entitys.append((begin_index,begin_index+len(company_text),company_type,company_text))
  2405. company_index[sentence_index].add((begin_index,begin_index+len(company_text)))
  2406. else:
  2407. continue
  2408. for ner_entity in add_sentence_entitys:
  2409. begin_index_temp = ner_entity[0]
  2410. end_index_temp = ner_entity[1]
  2411. entity_type = ner_entity[2]
  2412. entity_text = ner_entity[3]
  2413. if entity_type in ["org","company"] and not isLegalEnterprise(entity_text):
  2414. continue
  2415. for j in range(len(list_tokenbegin)):
  2416. if list_tokenbegin[j]==begin_index_temp:
  2417. begin_index = j
  2418. break
  2419. elif list_tokenbegin[j]>begin_index_temp:
  2420. begin_index = j-1
  2421. break
  2422. begin_index_temp += len(str(entity_text))
  2423. for j in range(begin_index,len(list_tokenbegin)):
  2424. if list_tokenbegin[j]>=begin_index_temp:
  2425. end_index = j-1
  2426. break
  2427. entity_id = "%s_%d_%d_%d"%(doc_id,sentence_index,begin_index,end_index)
  2428. #去掉标点符号
  2429. entity_text = re.sub("[,,。:!&@$\*]","",entity_text)
  2430. entity_text = entity_text.replace("(","(").replace(")",")") if isinstance(entity_text,str) else entity_text
  2431. list_entitys_temp.append(Entity(doc_id,entity_id,entity_text,entity_type,sentence_index,begin_index,end_index,ner_entity[0],ner_entity[1],in_attachment=in_attachment))
  2432. list_entitys_temp.sort(key=lambda x:(x.sentence_index,x.begin_index))
  2433. list_entitys.append(list_entitys_temp)
  2434. return list_entitys
  2435. def union_result(codeName,prem):
  2436. '''
  2437. @summary:模型的结果拼成字典
  2438. @param:
  2439. codeName:编号名称模型的结果字典
  2440. prem:拿到属性的角色的字典
  2441. @return:拼接起来的字典
  2442. '''
  2443. result = []
  2444. assert len(codeName)==len(prem)
  2445. for item_code,item_prem in zip(codeName,prem):
  2446. result.append(dict(item_code,**item_prem))
  2447. return result
  2448. def persistenceData(data):
  2449. '''
  2450. @summary:将中间结果保存到数据库-线上生产的时候不需要执行
  2451. '''
  2452. import psycopg2
  2453. conn = psycopg2.connect(dbname="BiddingKG",user="postgres",password="postgres",host="192.168.2.101")
  2454. cursor = conn.cursor()
  2455. for item_index in range(len(data)):
  2456. item = data[item_index]
  2457. doc_id = item[0]
  2458. dic = item[1]
  2459. code = dic['code']
  2460. name = dic['name']
  2461. prem = dic['prem']
  2462. if len(code)==0:
  2463. code_insert = ""
  2464. else:
  2465. code_insert = ";".join(code)
  2466. prem_insert = ""
  2467. for item in prem:
  2468. for x in item:
  2469. if isinstance(x, list):
  2470. if len(x)>0:
  2471. for x1 in x:
  2472. prem_insert+="/".join(x1)+","
  2473. prem_insert+="$"
  2474. else:
  2475. prem_insert+=str(x)+"$"
  2476. prem_insert+=";"
  2477. sql = " insert into predict_validation(doc_id,code,name,prem) values('"+doc_id+"','"+code_insert+"','"+name+"','"+prem_insert+"')"
  2478. cursor.execute(sql)
  2479. conn.commit()
  2480. conn.close()
  2481. def persistenceData1(list_entitys,list_sentences):
  2482. '''
  2483. @summary:将中间结果保存到数据库-线上生产的时候不需要执行
  2484. '''
  2485. import psycopg2
  2486. conn = psycopg2.connect(dbname="BiddingKG",user="postgres",password="postgres",host="192.168.2.101")
  2487. cursor = conn.cursor()
  2488. for list_entity in list_entitys:
  2489. for entity in list_entity:
  2490. if entity.values is not None:
  2491. sql = " insert into predict_entity(entity_id,entity_text,entity_type,doc_id,sentence_index,begin_index,end_index,label,values) values('"+str(entity.entity_id)+"','"+str(entity.entity_text)+"','"+str(entity.entity_type)+"','"+str(entity.doc_id)+"',"+str(entity.sentence_index)+","+str(entity.begin_index)+","+str(entity.end_index)+","+str(entity.label)+",array"+str(entity.values)+")"
  2492. else:
  2493. sql = " insert into predict_entity(entity_id,entity_text,entity_type,doc_id,sentence_index,begin_index,end_index) values('"+str(entity.entity_id)+"','"+str(entity.entity_text)+"','"+str(entity.entity_type)+"','"+str(entity.doc_id)+"',"+str(entity.sentence_index)+","+str(entity.begin_index)+","+str(entity.end_index)+")"
  2494. cursor.execute(sql)
  2495. for list_sentence in list_sentences:
  2496. for sentence in list_sentence:
  2497. str_tokens = "["
  2498. for item in sentence.tokens:
  2499. str_tokens += "'"
  2500. if item=="'":
  2501. str_tokens += "''"
  2502. else:
  2503. str_tokens += item
  2504. str_tokens += "',"
  2505. str_tokens = str_tokens[:-1]+"]"
  2506. sql = " insert into predict_sentences(doc_id,sentence_index,tokens) values('"+sentence.doc_id+"',"+str(sentence.sentence_index)+",array"+str_tokens+")"
  2507. cursor.execute(sql)
  2508. conn.commit()
  2509. conn.close()
  2510. def _handle(item,result_queue):
  2511. dochtml = item["dochtml"]
  2512. docid = item["docid"]
  2513. list_innerTable = tableToText(BeautifulSoup(dochtml,"lxml"))
  2514. flag = False
  2515. if list_innerTable:
  2516. flag = True
  2517. for table in list_innerTable:
  2518. result_queue.put({"docid":docid,"json_table":json.dumps(table,ensure_ascii=False)})
  2519. def getPredictTable():
  2520. filename = "D:\Workspace2016\DataExport\data\websouce_doc.csv"
  2521. import pandas as pd
  2522. import json
  2523. from BiddingKG.dl.common.MultiHandler import MultiHandler,Queue
  2524. df = pd.read_csv(filename)
  2525. df_data = {"json_table":[],"docid":[]}
  2526. _count = 0
  2527. _sum = len(df["docid"])
  2528. task_queue = Queue()
  2529. result_queue = Queue()
  2530. _index = 0
  2531. for dochtml,docid in zip(df["dochtmlcon"],df["docid"]):
  2532. task_queue.put({"docid":docid,"dochtml":dochtml,"json_table":None})
  2533. _index += 1
  2534. mh = MultiHandler(task_queue=task_queue,task_handler=_handle,result_queue=result_queue,process_count=5,thread_count=1)
  2535. mh.run()
  2536. while True:
  2537. try:
  2538. item = result_queue.get(block=True,timeout=1)
  2539. df_data["docid"].append(item["docid"])
  2540. df_data["json_table"].append(item["json_table"])
  2541. except Exception as e:
  2542. print(e)
  2543. break
  2544. df_1 = pd.DataFrame(df_data)
  2545. df_1.to_csv("../form/websource_67000_table.csv",columns=["docid","json_table"])
  2546. if __name__=="__main__":
  2547. '''
  2548. import glob
  2549. for file in glob.glob("C:\\Users\\User\\Desktop\\test\\*.html"):
  2550. file_txt = str(file).replace("html","txt")
  2551. with codecs.open(file_txt,"a+",encoding="utf8") as f:
  2552. f.write("\n================\n")
  2553. content = codecs.open(file,"r",encoding="utf8").read()
  2554. f.write(segment(tableToText(BeautifulSoup(content,"lxml"))))
  2555. '''
  2556. # content = codecs.open("C:\\Users\\User\\Desktop\\2.html","r",encoding="utf8").read()
  2557. # print(segment(tableToText(BeautifulSoup(content,"lxml"))))
  2558. # getPredictTable()
  2559. with open('D:/138786703.html', 'r', encoding='utf-8') as f:
  2560. sourceContent = f.read()
  2561. # article_processed = segment(tableToText(BeautifulSoup(sourceContent, "lxml")))
  2562. # print(article_processed)
  2563. list_articles, list_sentences, list_entitys, _cost_time = get_preprocessed([['doc_id', sourceContent, "", "", '', '2021-02-01']], useselffool=True)
  2564. for entity in list_entitys[0]:
  2565. print(entity.entity_type, entity.entity_text)