当前位置:   article > 正文

python将word(doc或docx)的内容导入mysql数据库_python如何把word里的东西写进数据库

python如何把word里的东西写进数据库

需求:python操作word文档并把doc或者docx文档中的内容插入到mysql的数据库中(段落跟图片位置保持一致)

解决方法:用python先把doc文件转换成docx文件(这一步也可以不要后续会说明),然后读取docx的文件并另存为htm格式的文件(上一步可以直接把doc文件另存为htm),python根据bs4获取p标签里的内容,如果段落中有图片则保存图片。(图片在word文档中的位置可以很好的还原到生成的数据库内容)

我见网上有把docx压缩后解压获取图片的,然后根据在根据xml来读取图片的位置,我觉得比较繁琐。用docx模块读取段落的时候还需要是不是判断段落中有分页等,然而转成htm之后就不用判断那么多直接判断段落里的样式或者图片等就可以了。

代码:

doc批量转换成docx文档

  1. def findAllDoc(self):
  2. files = 'D:\\修改的文章'
  3. w = wc.gencache.EnsureDispatch('Word.Application')
  4. for root,ds,fs in os.walk(files):
  5. for f in fs:
  6. if f.endswith('.doc'):
  7. name = os.path.join(root+'\\',f)#必须是此形式的不然会有部分文档打开报错找不到文档
  8. doc = w.Documents.Open("{}".format(name))#打开word文档
  9. doc.SaveAs2("{}x".format(name), 12)#另存为
  10. doc.Close()
  11. sqlIn = 'INSERT post_temp_doc3 SET name = "%s"' % (name)
  12. self.cursor.execute(sqlIn)
  13. self.cursor.connection.commit()
  14. #转换成功删除doc文档
  15. if os.path.exists(name):
  16. os.remove(name)
  17. print('删除成功%s' % name)
  18. else:
  19. print('已经删除文件')
  20. w.Quit()

docx转htm并读取内容插入到数据库

  1. def findAllFile(self):
  2. files = 'D:\\修改的文章\\'
  3. uploads = 'uploads/images/post/'
  4. htmlFile = "D:/1/1.htm"
  5. folderFile = "D:/1/1.files"
  6. w = wc.gencache.EnsureDispatch('Word.Application')
  7. for root,ds,fs in os.walk(files):
  8. for f in fs:
  9. if f.endswith('.docx'):
  10. docxFile = os.path.join(root,f)
  11. doc = w.Documents.Open("{}".format(docxFile))
  12. doc.SaveAs2(htmlFile, 8)#转成htm的参数是8参数详细请参考https://docs.microsoft.com/zh-cn/office/vba/api/word.wdsaveformat
  13. doc.Close()
  14. title = f.replace('.docx', '')
  15. content = ''
  16. #打开htm文件必须是二进制否则编码的问题会很让你头疼
  17. with open(htmlFile, 'rb') as htmls:
  18. htmlRead = htmls.read()
  19. htmlData = BeautifulSoup(htmlRead, 'lxml')
  20. htmlP = htmlData.find_all('p')
  21. for pList in htmlP:
  22. imgList = pList.find_all('img')
  23. if imgList :
  24. for img in imgList:
  25. imgFile = img.get("src")
  26. imgType = imgFile.replace('1.files/', '').partition('.')#获取图片后缀
  27. fileWrite = files.replace('\\', '/')
  28. with open(fileWrite+imgFile, 'rb') as imgr:
  29. imgSrc = fileWrite+uploads+str(int(time.time()))+imgType[1]+imgType[2]
  30. with open(imgSrc, 'wb')as imgw:
  31. imgw.write(imgr.read())
  32. content += '<p><img src="%s"></p>' % imgSrc.replace(fileWrite, '')
  33. else:
  34. content += '<p>%s</p>' % pList.text.replace("'", '&#39;')#转义单引号不然有单引号的内容插入数据库时会报错
  35. sqlIn = 'INSERT post_temp1 SET title = "%s" , content = \'%s\'' % (title,content)
  36. print(sqlIn)
  37. self.cursor.execute(sqlIn)
  38. self.cursor.connection.commit()
  39. if os.path.exists(docxFile):
  40. os.remove(docxFile)#删除docx文档
  41. if os.path.exists(htmlFile):
  42. os.remove(htmlFile)#删除1.htm文档
  43. shutil.rmtree(folderFile)#删除文件夹
  44. w.Quit()

我做的这个比较简单就是段落和图片插入到数据库生成的文章的时候位置不变,至于其他的像span或者加粗没有做处理。如果样式需要还原更详细的话可以自己写一写,毕竟我这个只是个引子。

表达能力不强敬请见谅。附源码地址:https://download.csdn.net/download/daotianmi/16674288

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/391340
推荐阅读
相关标签
  

闽ICP备14008679号