Preprocessing.py 159 KB

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