xjc 3 years ago
parent
commit
9e3ecae5d9
100 changed files with 400 additions and 10 deletions
  1. BIN
      1635485797634.docx
  2. BIN
      icon.ico
  3. 16 10
      parsedocx.py
  4. BIN
      parsedocx.pyc
  5. 9 0
      say365server.py
  6. 33 0
      say365server.spec
  7. 342 0
      service.log
  8. BIN
      test4.files/image001.gif
  9. BIN
      test4.files/image001.png
  10. BIN
      test4.files/image002.gif
  11. BIN
      test4.files/image002.png
  12. BIN
      test4.files/image003.gif
  13. BIN
      test4.files/image003.png
  14. BIN
      test4.files/image004.gif
  15. BIN
      test4.files/image004.png
  16. BIN
      test4.files/image005.gif
  17. BIN
      test4.files/image005.png
  18. BIN
      test4.files/image006.gif
  19. BIN
      test4.files/image006.png
  20. BIN
      test4.files/image007.gif
  21. BIN
      test4.files/image007.png
  22. BIN
      test4.files/image008.gif
  23. BIN
      test4.files/image008.png
  24. BIN
      test4.files/image009.gif
  25. BIN
      test4.files/image009.png
  26. BIN
      test4.files/image010.gif
  27. BIN
      test4.files/image010.png
  28. BIN
      test4.files/image011.gif
  29. BIN
      test4.files/image011.png
  30. BIN
      test4.files/image012.gif
  31. BIN
      test4.files/image012.png
  32. BIN
      test4.files/image013.gif
  33. BIN
      test4.files/image013.png
  34. BIN
      test4.files/image014.gif
  35. BIN
      test4.files/image014.png
  36. BIN
      test4.files/image015.gif
  37. BIN
      test4.files/image015.png
  38. BIN
      test4.files/image016.gif
  39. BIN
      test4.files/image016.png
  40. BIN
      test4.files/image017.gif
  41. BIN
      test4.files/image017.png
  42. BIN
      test4.files/image018.gif
  43. BIN
      test4.files/image018.png
  44. BIN
      test4.files/image019.gif
  45. BIN
      test4.files/image019.png
  46. BIN
      test4.files/image020.gif
  47. BIN
      test4.files/image020.png
  48. BIN
      test4.files/image021.gif
  49. BIN
      test4.files/image021.png
  50. BIN
      test4.files/image022.gif
  51. BIN
      test4.files/image022.png
  52. BIN
      test4.files/image023.gif
  53. BIN
      test4.files/image023.png
  54. BIN
      test4.files/image024.gif
  55. BIN
      test4.files/image024.png
  56. BIN
      test4.files/image025.gif
  57. BIN
      test4.files/image025.png
  58. BIN
      test4.files/image026.gif
  59. BIN
      test4.files/image026.png
  60. BIN
      test4.files/image027.gif
  61. BIN
      test4.files/image027.png
  62. BIN
      test4.files/image028.gif
  63. BIN
      test4.files/image028.png
  64. BIN
      test4.files/image029.gif
  65. BIN
      test4.files/image029.png
  66. BIN
      test4.files/image030.gif
  67. BIN
      test4.files/image030.png
  68. BIN
      test4.files/image031.gif
  69. BIN
      test4.files/image031.png
  70. BIN
      test4.files/image032.gif
  71. BIN
      test4.files/image032.png
  72. BIN
      test4.files/image033.gif
  73. BIN
      test4.files/image033.png
  74. BIN
      test4.files/image034.gif
  75. BIN
      test4.files/image034.png
  76. BIN
      test4.files/image035.gif
  77. BIN
      test4.files/image035.png
  78. BIN
      test4.files/image036.gif
  79. BIN
      test4.files/image036.png
  80. BIN
      test4.files/image037.gif
  81. BIN
      test4.files/image037.png
  82. BIN
      test4.files/image038.gif
  83. BIN
      test4.files/image038.png
  84. BIN
      test4.files/image039.gif
  85. BIN
      test4.files/image039.png
  86. BIN
      test4.files/image040.gif
  87. BIN
      test4.files/image040.png
  88. BIN
      test4.files/image041.gif
  89. BIN
      test4.files/image041.png
  90. BIN
      test4.files/image042.gif
  91. BIN
      test4.files/image042.png
  92. BIN
      test4.files/image043.gif
  93. BIN
      test4.files/image043.png
  94. BIN
      test4.files/image044.gif
  95. BIN
      test4.files/image044.png
  96. BIN
      test4.files/image045.gif
  97. BIN
      test4.files/image045.png
  98. BIN
      test4.files/image046.gif
  99. BIN
      test4.files/image046.png
  100. 0 0
      test4.files/image047.gif

BIN
1635485797634.docx


BIN
icon.ico


+ 16 - 10
parsedocx.py

@@ -3,25 +3,29 @@ import re,os
 import json,uuid
 from bs4 import BeautifulSoup
 from win32com.client import Dispatch
+import pythoncom
+
 
 class DocxConverter(object):
     """
     """
-    def __init__(self,docpath=None):
+    def __init__(self,docpath="test4.docx"):
         """
         """
         self.docpath = docpath
-        self.word = Dispatch("Word.Application")
-        self.word.Visible = 0
-        self.doc = word.Documents.Open(self.docpath)
 
     def docx2html(self):
         """
         """
+        pythoncom.CoInitialize()
+        self.word = Dispatch("Word.Application")
+        self.word.Visible = 0
+        self.doc = self.word.Documents.Open(self.docpath)
         html = os.path.join(os.path.dirname(self.docpath),str(uuid.uuid4())+".html")
-        self.doc.SaveAs(html)
+        self.doc.SaveAs(html,10)
         self.doc.Close()
         self.word.Quit()
+        pythoncom.CoUninitialize()
         return html
 
 class QuestionsParser(object):
@@ -103,10 +107,12 @@ class QuestionsParser(object):
         qno = re.search(r"\d+",tgtext.split(u"、")[0]).group()
         return qno
         
-
-questionparser =  QuestionsParser()
+#docxconverter = DocxConverter() 
+#questionparser =  QuestionsParser()
 
 if __name__ == "__main__":
-    ques = questionparser.get_questions()
-    with open("t.json","w+") as f:
-        f.write(json.dumps(ques))
+    #ques = questionparser.get_questions()
+    #with open("t.json","w+") as f:
+    #    f.write(json.dumps(ques))
+    #docxconverter.docx2html()
+    pass

BIN
parsedocx.pyc


+ 9 - 0
say365server.py

@@ -0,0 +1,9 @@
+#!-*-coding:utf-8 -*-
+import os
+
+def main():
+    os.system("xscanserver.exe --startup auto install")
+    os.system("xscanserver.exe start")
+
+if __name__=='__main__':
+    main()

+ 33 - 0
say365server.spec

@@ -0,0 +1,33 @@
+# -*- mode: python ; coding: utf-8 -*-
+
+block_cipher = None
+
+
+a = Analysis(['say365server.py'],
+             pathex=['D:\\docxdemo'],
+             binaries=[],
+             datas=[],
+             hiddenimports=['email.mime.message', 'email.mime.image', 'email.mime.text', 'email.mime.multipart', 'email.mime.audio', 'email.mime.base', 'email.mime.application', 'email.mime.nonmultipart'],
+             hookspath=[],
+             runtime_hooks=[],
+             excludes=[],
+             win_no_prefer_redirects=False,
+             win_private_assemblies=False,
+             cipher=block_cipher,
+             noarchive=False)
+pyz = PYZ(a.pure, a.zipped_data,
+             cipher=block_cipher)
+exe = EXE(pyz,
+          a.scripts,
+          a.binaries,
+          a.zipfiles,
+          a.datas,
+          [],
+          name='say365server',
+          debug=False,
+          bootloader_ignore_signals=False,
+          strip=False,
+          upx=True,
+          upx_exclude=[],
+          runtime_tmpdir=None,
+          console=True , icon='icon.ico')

+ 342 - 0
service.log

@@ -0,0 +1,342 @@
+2021-10-28 15:20:29,499 [PythonService] INFO     服务正在运行...
+2021-10-28 18:01:18,371 [PythonService] INFO     服务正在运行...
+2021-10-28 18:02:22,720 [PythonService] INFO     服务正在运行...
+2021-10-28 18:05:01,954 [PythonService] INFO     服务正在运行...
+2021-10-28 18:05:27,907 [PythonService] INFO     服务正在运行...
+2021-10-28 18:07:52,762 [PythonService] INFO     服务正在运行...
+2021-10-28 18:13:20,743 [PythonService] INFO     服务正在运行...
+2021-10-28 18:13:42,542 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-28 18:13:44,239 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-28 18:19:12,154 [PythonService] INFO     服务正在运行...
+2021-10-28 18:19:15,407 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-28 18:19:18,440 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-28 18:21:01,440 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-28 18:23:10,042 [PythonService] INFO     服务正在运行...
+2021-10-28 18:23:13,207 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-28 18:23:14,040 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-28 18:23:14,461 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 10:52:50,818 [PythonService] INFO     服务正在运行...
+2021-10-29 10:54:09,598 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 10:54:10,911 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 10:55:52,404 [PythonService] INFO     服务正在运行...
+2021-10-29 10:55:55,163 [PythonService] ERROR    None
+2021-10-29 10:55:55,164 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 10:55:56,263 [PythonService] ERROR    None
+2021-10-29 10:55:56,265 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 10:56:56,056 [PythonService] INFO     服务正在运行...
+2021-10-29 10:56:58,611 [PythonService] ERROR    c:\AppData\say365\1635476218606.docx
+2021-10-29 10:56:58,615 [PythonService] ERROR    None
+2021-10-29 10:56:58,615 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 11:03:03,361 [PythonService] INFO     服务正在运行...
+2021-10-29 11:03:03,361 [PythonService] INFO     服务正在运行...
+2021-10-29 11:03:07,144 [PythonService] ERROR    d:\docxdemo\1635476587140.docx
+2021-10-29 11:03:07,144 [PythonService] ERROR    d:\docxdemo\1635476587140.docx
+2021-10-29 11:03:07,148 [PythonService] ERROR    None
+2021-10-29 11:03:07,148 [PythonService] ERROR    None
+2021-10-29 11:03:07,148 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 11:03:07,148 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 11:03:08,102 [PythonService] ERROR    d:\docxdemo\1635476588101.docx
+2021-10-29 11:03:08,102 [PythonService] ERROR    d:\docxdemo\1635476588101.docx
+2021-10-29 11:03:08,107 [PythonService] ERROR    None
+2021-10-29 11:03:08,107 [PythonService] ERROR    None
+2021-10-29 11:03:08,107 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 11:03:08,107 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 11:03:08,778 [PythonService] ERROR    d:\docxdemo\1635476588777.docx
+2021-10-29 11:03:08,778 [PythonService] ERROR    d:\docxdemo\1635476588777.docx
+2021-10-29 11:03:08,780 [PythonService] ERROR    None
+2021-10-29 11:03:08,780 [PythonService] ERROR    None
+2021-10-29 11:03:08,780 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 11:03:08,780 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 11:06:22,088 [PythonService] INFO     服务正在运行...
+2021-10-29 11:06:22,088 [PythonService] INFO     服务正在运行...
+2021-10-29 11:06:27,144 [PythonService] ERROR    d:\docxdemo\1635476787120.docx
+2021-10-29 11:06:27,144 [PythonService] ERROR    d:\docxdemo\1635476787120.docx
+2021-10-29 11:06:27,145 [PythonService] INFO     Microsoft Word
+2021-10-29 11:06:27,145 [PythonService] INFO     Microsoft Word
+2021-10-29 11:06:27,184 [PythonService] ERROR    None
+2021-10-29 11:06:27,184 [PythonService] ERROR    None
+2021-10-29 11:06:27,184 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 11:06:27,184 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 12:24:53,289 [PythonService] INFO     服务正在运行...
+2021-10-29 12:24:53,289 [PythonService] INFO     服务正在运行...
+2021-10-29 12:27:54,983 [PythonService] ERROR    d:\docxdemo\1635481674880.docx
+2021-10-29 12:27:54,983 [PythonService] ERROR    d:\docxdemo\1635481674880.docx
+2021-10-29 12:27:54,983 [PythonService] INFO     Microsoft Word
+2021-10-29 12:27:54,983 [PythonService] INFO     Microsoft Word
+2021-10-29 12:27:54,986 [PythonService] ERROR    None
+2021-10-29 12:27:54,986 [PythonService] ERROR    None
+2021-10-29 12:27:54,986 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 12:27:54,986 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 12:30:29,207 [PythonService] INFO     服务正在运行...
+2021-10-29 12:30:29,207 [PythonService] INFO     服务正在运行...
+2021-10-29 12:33:27,815 [PythonService] INFO     服务正在运行...
+2021-10-29 12:33:27,815 [PythonService] INFO     服务正在运行...
+2021-10-29 12:33:37,674 [PythonService] ERROR    d:\docxdemo\1635482017669.docx
+2021-10-29 12:33:37,674 [PythonService] ERROR    d:\docxdemo\1635482017669.docx
+2021-10-29 12:33:37,674 [PythonService] INFO     Microsoft Word
+2021-10-29 12:33:37,674 [PythonService] INFO     Microsoft Word
+2021-10-29 12:33:37,677 [PythonService] ERROR    None
+2021-10-29 12:33:37,677 [PythonService] ERROR    None
+2021-10-29 12:33:37,678 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 12:33:37,678 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 12:33:38,852 [PythonService] ERROR    d:\docxdemo\1635482018851.docx
+2021-10-29 12:33:38,852 [PythonService] ERROR    d:\docxdemo\1635482018851.docx
+2021-10-29 12:33:38,852 [PythonService] INFO     Microsoft Word
+2021-10-29 12:33:38,852 [PythonService] INFO     Microsoft Word
+2021-10-29 12:33:38,855 [PythonService] ERROR    None
+2021-10-29 12:33:38,855 [PythonService] ERROR    None
+2021-10-29 12:33:38,855 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 12:33:38,855 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 12:33:39,421 [PythonService] ERROR    d:\docxdemo\1635482019419.docx
+2021-10-29 12:33:39,421 [PythonService] ERROR    d:\docxdemo\1635482019419.docx
+2021-10-29 12:33:39,421 [PythonService] INFO     Microsoft Word
+2021-10-29 12:33:39,421 [PythonService] INFO     Microsoft Word
+2021-10-29 12:33:39,427 [PythonService] ERROR    None
+2021-10-29 12:33:39,427 [PythonService] ERROR    None
+2021-10-29 12:33:39,427 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 12:33:39,427 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 12:36:33,174 [PythonService] ERROR    d:\docxdemo\1635482193162.docx
+2021-10-29 12:36:33,174 [PythonService] ERROR    d:\docxdemo\1635482193162.docx
+2021-10-29 12:36:33,174 [PythonService] INFO     Microsoft Word
+2021-10-29 12:36:33,174 [PythonService] INFO     Microsoft Word
+2021-10-29 12:36:33,177 [PythonService] ERROR    None
+2021-10-29 12:36:33,177 [PythonService] ERROR    None
+2021-10-29 12:36:33,177 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 12:36:33,177 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:16:36,381 [PythonService] INFO     服务正在运行...
+2021-10-29 13:16:36,381 [PythonService] INFO     服务正在运行...
+2021-10-29 13:17:31,355 [PythonService] INFO     服务正在运行...
+2021-10-29 13:17:31,355 [PythonService] INFO     服务正在运行...
+2021-10-29 13:17:35,930 [PythonService] INFO     22222222222
+2021-10-29 13:17:35,930 [PythonService] INFO     22222222222
+2021-10-29 13:17:35,930 [PythonService] INFO     None
+2021-10-29 13:17:35,930 [PythonService] INFO     None
+2021-10-29 13:17:35,940 [PythonService] ERROR    d:\docxdemo\1635484655938.docx
+2021-10-29 13:17:35,940 [PythonService] ERROR    d:\docxdemo\1635484655938.docx
+2021-10-29 13:17:35,940 [PythonService] INFO     Microsoft Word
+2021-10-29 13:17:35,940 [PythonService] INFO     Microsoft Word
+2021-10-29 13:17:35,944 [PythonService] ERROR    None
+2021-10-29 13:17:35,944 [PythonService] ERROR    None
+2021-10-29 13:17:35,944 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:17:35,944 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:22:46,835 [PythonService] INFO     服务正在运行...
+2021-10-29 13:22:46,835 [PythonService] INFO     服务正在运行...
+2021-10-29 13:22:49,161 [PythonService] ERROR    d:\docxdemo\1635484969139.docx
+2021-10-29 13:22:49,161 [PythonService] ERROR    d:\docxdemo\1635484969139.docx
+2021-10-29 13:22:49,163 [PythonService] INFO     Microsoft Word
+2021-10-29 13:22:49,163 [PythonService] INFO     Microsoft Word
+2021-10-29 13:22:49,181 [PythonService] ERROR    None
+2021-10-29 13:22:49,181 [PythonService] ERROR    None
+2021-10-29 13:22:49,183 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:22:49,183 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:22:54,025 [PythonService] ERROR    d:\docxdemo\1635484974024.docx
+2021-10-29 13:22:54,025 [PythonService] ERROR    d:\docxdemo\1635484974024.docx
+2021-10-29 13:22:54,026 [PythonService] INFO     Microsoft Word
+2021-10-29 13:22:54,026 [PythonService] INFO     Microsoft Word
+2021-10-29 13:22:54,029 [PythonService] ERROR    None
+2021-10-29 13:22:54,029 [PythonService] ERROR    None
+2021-10-29 13:22:54,029 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:22:54,029 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:22:54,696 [PythonService] ERROR    d:\docxdemo\1635484974685.docx
+2021-10-29 13:22:54,696 [PythonService] ERROR    d:\docxdemo\1635484974685.docx
+2021-10-29 13:22:54,696 [PythonService] INFO     Microsoft Word
+2021-10-29 13:22:54,696 [PythonService] INFO     Microsoft Word
+2021-10-29 13:22:54,700 [PythonService] ERROR    None
+2021-10-29 13:22:54,700 [PythonService] ERROR    None
+2021-10-29 13:22:54,700 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:22:54,700 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:22:55,247 [PythonService] ERROR    d:\docxdemo\1635484975246.docx
+2021-10-29 13:22:55,247 [PythonService] ERROR    d:\docxdemo\1635484975246.docx
+2021-10-29 13:22:55,247 [PythonService] INFO     Microsoft Word
+2021-10-29 13:22:55,247 [PythonService] INFO     Microsoft Word
+2021-10-29 13:22:55,252 [PythonService] ERROR    None
+2021-10-29 13:22:55,252 [PythonService] ERROR    None
+2021-10-29 13:22:55,252 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:22:55,252 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:22:56,757 [PythonService] ERROR    d:\docxdemo\1635484976757.docx
+2021-10-29 13:22:56,757 [PythonService] ERROR    d:\docxdemo\1635484976757.docx
+2021-10-29 13:22:56,757 [PythonService] INFO     Microsoft Word
+2021-10-29 13:22:56,757 [PythonService] INFO     Microsoft Word
+2021-10-29 13:22:56,760 [PythonService] ERROR    None
+2021-10-29 13:22:56,760 [PythonService] ERROR    None
+2021-10-29 13:22:56,762 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:22:56,762 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:23:39,624 [PythonService] INFO     服务正在运行...
+2021-10-29 13:23:39,624 [PythonService] INFO     服务正在运行...
+2021-10-29 13:23:43,539 [PythonService] ERROR    d:\docxdemo\1635485023534.docx
+2021-10-29 13:23:43,539 [PythonService] ERROR    d:\docxdemo\1635485023534.docx
+2021-10-29 13:23:43,540 [PythonService] INFO     Microsoft Word
+2021-10-29 13:23:43,540 [PythonService] INFO     Microsoft Word
+2021-10-29 13:23:43,545 [PythonService] ERROR    None
+2021-10-29 13:23:43,545 [PythonService] ERROR    None
+2021-10-29 13:23:43,546 [PythonService] ERROR    [Errno 2] No such file or directory: u'd:\\docxdemo\\57eedebe-e248-4057-861c-143ff3c17a10.html'
+2021-10-29 13:23:43,546 [PythonService] ERROR    [Errno 2] No such file or directory: u'd:\\docxdemo\\57eedebe-e248-4057-861c-143ff3c17a10.html'
+2021-10-29 13:23:46,428 [PythonService] ERROR    d:\docxdemo\1635485026411.docx
+2021-10-29 13:23:46,428 [PythonService] ERROR    d:\docxdemo\1635485026411.docx
+2021-10-29 13:23:46,430 [PythonService] INFO     Microsoft Word
+2021-10-29 13:23:46,430 [PythonService] INFO     Microsoft Word
+2021-10-29 13:23:46,433 [PythonService] ERROR    None
+2021-10-29 13:23:46,433 [PythonService] ERROR    None
+2021-10-29 13:23:46,434 [PythonService] ERROR    [Errno 2] No such file or directory: u'd:\\docxdemo\\0a54a1e5-e842-481c-93ec-5fe03de335d7.html'
+2021-10-29 13:23:46,434 [PythonService] ERROR    [Errno 2] No such file or directory: u'd:\\docxdemo\\0a54a1e5-e842-481c-93ec-5fe03de335d7.html'
+2021-10-29 13:23:47,134 [PythonService] ERROR    d:\docxdemo\1635485027134.docx
+2021-10-29 13:23:47,134 [PythonService] ERROR    d:\docxdemo\1635485027134.docx
+2021-10-29 13:23:47,134 [PythonService] INFO     Microsoft Word
+2021-10-29 13:23:47,134 [PythonService] INFO     Microsoft Word
+2021-10-29 13:23:47,138 [PythonService] ERROR    None
+2021-10-29 13:23:47,138 [PythonService] ERROR    None
+2021-10-29 13:23:47,138 [PythonService] ERROR    [Errno 2] No such file or directory: u'd:\\docxdemo\\e0106354-009a-4d0d-9671-ee75056694c0.html'
+2021-10-29 13:23:47,138 [PythonService] ERROR    [Errno 2] No such file or directory: u'd:\\docxdemo\\e0106354-009a-4d0d-9671-ee75056694c0.html'
+2021-10-29 13:28:09,483 [PythonService] ERROR    d:\docxdemo\1635485289026.docx
+2021-10-29 13:28:09,483 [PythonService] INFO     Microsoft Word
+2021-10-29 13:28:10,424 [PythonService] ERROR    1635485289026.docx
+2021-10-29 13:28:12,614 [PythonService] INFO     test
+2021-10-29 13:29:04,398 [PythonService] ERROR    d:\docxdemo\1635485343965.docx
+2021-10-29 13:29:04,401 [PythonService] INFO     Microsoft Word
+2021-10-29 13:29:05,092 [PythonService] ERROR    1635485343965.docx
+2021-10-29 13:29:06,036 [PythonService] INFO     test
+2021-10-29 13:30:27,000 [PythonService] ERROR    d:\docxdemo\1635485426392.docx
+2021-10-29 13:30:27,006 [PythonService] INFO     Microsoft Word
+2021-10-29 13:30:27,880 [PythonService] ERROR    22222222222
+2021-10-29 13:30:27,881 [PythonService] ERROR    1635485426392.docx
+2021-10-29 13:30:29,010 [PythonService] INFO     test
+2021-10-29 13:30:53,990 [PythonService] ERROR    d:\docxdemo\1635485453625.docx
+2021-10-29 13:30:53,993 [PythonService] INFO     Microsoft Word
+2021-10-29 13:30:54,645 [PythonService] ERROR    22222222222
+2021-10-29 13:30:54,648 [PythonService] ERROR    1635485453625.docx
+2021-10-29 13:30:55,691 [PythonService] INFO     test
+2021-10-29 13:33:00,941 [PythonService] ERROR    d:\docxdemo\1635485580526.docx
+2021-10-29 13:33:00,946 [PythonService] INFO     Microsoft Word
+2021-10-29 13:33:01,775 [PythonService] ERROR    22222222222
+2021-10-29 13:33:01,776 [PythonService] ERROR    1635485580526.docx
+2021-10-29 13:33:02,809 [PythonService] INFO     test
+2021-10-29 13:33:48,167 [PythonService] INFO     服务正在运行...
+2021-10-29 13:33:48,167 [PythonService] INFO     服务正在运行...
+2021-10-29 13:33:52,996 [PythonService] ERROR    d:\docxdemo\1635485632993.docx
+2021-10-29 13:33:52,996 [PythonService] ERROR    d:\docxdemo\1635485632993.docx
+2021-10-29 13:33:52,997 [PythonService] INFO     Microsoft Word
+2021-10-29 13:33:52,997 [PythonService] INFO     Microsoft Word
+2021-10-29 13:33:53,000 [PythonService] ERROR    22222222222
+2021-10-29 13:33:53,000 [PythonService] ERROR    22222222222
+2021-10-29 13:33:53,000 [PythonService] ERROR    None
+2021-10-29 13:33:53,000 [PythonService] ERROR    None
+2021-10-29 13:33:53,000 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:33:53,000 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:33:54,184 [PythonService] ERROR    d:\docxdemo\1635485634184.docx
+2021-10-29 13:33:54,184 [PythonService] ERROR    d:\docxdemo\1635485634184.docx
+2021-10-29 13:33:54,186 [PythonService] INFO     Microsoft Word
+2021-10-29 13:33:54,186 [PythonService] INFO     Microsoft Word
+2021-10-29 13:33:54,188 [PythonService] ERROR    22222222222
+2021-10-29 13:33:54,188 [PythonService] ERROR    22222222222
+2021-10-29 13:33:54,190 [PythonService] ERROR    None
+2021-10-29 13:33:54,190 [PythonService] ERROR    None
+2021-10-29 13:33:54,190 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:33:54,190 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:33:54,489 [PythonService] ERROR    d:\docxdemo\1635485634488.docx
+2021-10-29 13:33:54,489 [PythonService] ERROR    d:\docxdemo\1635485634488.docx
+2021-10-29 13:33:54,490 [PythonService] INFO     Microsoft Word
+2021-10-29 13:33:54,490 [PythonService] INFO     Microsoft Word
+2021-10-29 13:33:54,493 [PythonService] ERROR    22222222222
+2021-10-29 13:33:54,493 [PythonService] ERROR    22222222222
+2021-10-29 13:33:54,493 [PythonService] ERROR    None
+2021-10-29 13:33:54,493 [PythonService] ERROR    None
+2021-10-29 13:33:54,493 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:33:54,493 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:36:31,447 [PythonService] INFO     服务正在运行...
+2021-10-29 13:36:31,447 [PythonService] INFO     服务正在运行...
+2021-10-29 13:36:36,125 [PythonService] ERROR    d:\docxdemo\1635485796120.docx
+2021-10-29 13:36:36,125 [PythonService] ERROR    d:\docxdemo\1635485796120.docx
+2021-10-29 13:36:36,127 [PythonService] INFO     Microsoft Word
+2021-10-29 13:36:36,127 [PythonService] INFO     Microsoft Word
+2021-10-29 13:36:36,150 [PythonService] ERROR    22222222222
+2021-10-29 13:36:36,150 [PythonService] ERROR    22222222222
+2021-10-29 13:36:36,150 [PythonService] ERROR    None
+2021-10-29 13:36:36,150 [PythonService] ERROR    None
+2021-10-29 13:36:36,151 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:36:36,151 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:36:37,121 [PythonService] ERROR    d:\docxdemo\1635485797120.docx
+2021-10-29 13:36:37,121 [PythonService] ERROR    d:\docxdemo\1635485797120.docx
+2021-10-29 13:36:37,121 [PythonService] INFO     Microsoft Word
+2021-10-29 13:36:37,121 [PythonService] INFO     Microsoft Word
+2021-10-29 13:36:37,125 [PythonService] ERROR    22222222222
+2021-10-29 13:36:37,125 [PythonService] ERROR    22222222222
+2021-10-29 13:36:37,125 [PythonService] ERROR    None
+2021-10-29 13:36:37,125 [PythonService] ERROR    None
+2021-10-29 13:36:37,125 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:36:37,125 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:36:37,635 [PythonService] ERROR    d:\docxdemo\1635485797634.docx
+2021-10-29 13:36:37,635 [PythonService] ERROR    d:\docxdemo\1635485797634.docx
+2021-10-29 13:36:37,635 [PythonService] INFO     Microsoft Word
+2021-10-29 13:36:37,635 [PythonService] INFO     Microsoft Word
+2021-10-29 13:36:37,640 [PythonService] ERROR    22222222222
+2021-10-29 13:36:37,640 [PythonService] ERROR    22222222222
+2021-10-29 13:36:37,640 [PythonService] ERROR    None
+2021-10-29 13:36:37,640 [PythonService] ERROR    None
+2021-10-29 13:36:37,640 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:36:37,640 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:39:44,915 [PythonService] INFO     服务正在运行...
+2021-10-29 13:39:44,915 [PythonService] INFO     服务正在运行...
+2021-10-29 13:39:48,953 [PythonService] ERROR    global name 'DispatchEx' is not defined
+2021-10-29 13:39:48,953 [PythonService] ERROR    global name 'DispatchEx' is not defined
+2021-10-29 13:39:49,900 [PythonService] ERROR    global name 'DispatchEx' is not defined
+2021-10-29 13:39:49,900 [PythonService] ERROR    global name 'DispatchEx' is not defined
+2021-10-29 13:39:50,661 [PythonService] ERROR    global name 'DispatchEx' is not defined
+2021-10-29 13:39:50,661 [PythonService] ERROR    global name 'DispatchEx' is not defined
+2021-10-29 13:40:21,994 [PythonService] INFO     服务正在运行...
+2021-10-29 13:40:21,994 [PythonService] INFO     服务正在运行...
+2021-10-29 13:40:24,559 [PythonService] ERROR    d:\docxdemo\1635486024268.docx
+2021-10-29 13:40:24,559 [PythonService] ERROR    d:\docxdemo\1635486024268.docx
+2021-10-29 13:40:24,561 [PythonService] INFO     Microsoft Word
+2021-10-29 13:40:24,561 [PythonService] INFO     Microsoft Word
+2021-10-29 13:40:24,592 [PythonService] ERROR    22222222222
+2021-10-29 13:40:24,592 [PythonService] ERROR    22222222222
+2021-10-29 13:40:24,592 [PythonService] ERROR    None
+2021-10-29 13:40:24,592 [PythonService] ERROR    None
+2021-10-29 13:40:24,592 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:40:24,592 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:40:25,723 [PythonService] ERROR    d:\docxdemo\1635486025507.docx
+2021-10-29 13:40:25,723 [PythonService] ERROR    d:\docxdemo\1635486025507.docx
+2021-10-29 13:40:25,723 [PythonService] INFO     Microsoft Word
+2021-10-29 13:40:25,723 [PythonService] INFO     Microsoft Word
+2021-10-29 13:40:25,773 [PythonService] ERROR    22222222222
+2021-10-29 13:40:25,773 [PythonService] ERROR    22222222222
+2021-10-29 13:40:25,773 [PythonService] ERROR    None
+2021-10-29 13:40:25,773 [PythonService] ERROR    None
+2021-10-29 13:40:25,775 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:40:25,775 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:56:31,214 [PythonService] ERROR    d:\docxdemo\1635486990994.docx
+2021-10-29 13:56:31,214 [PythonService] ERROR    d:\docxdemo\1635486990994.docx
+2021-10-29 13:56:31,214 [PythonService] INFO     Microsoft Word
+2021-10-29 13:56:31,214 [PythonService] INFO     Microsoft Word
+2021-10-29 13:56:31,262 [PythonService] ERROR    22222222222
+2021-10-29 13:56:31,262 [PythonService] ERROR    22222222222
+2021-10-29 13:56:31,262 [PythonService] ERROR    None
+2021-10-29 13:56:31,262 [PythonService] ERROR    None
+2021-10-29 13:56:31,263 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:56:31,263 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:56:34,293 [PythonService] ERROR    d:\docxdemo\1635486994091.docx
+2021-10-29 13:56:34,293 [PythonService] ERROR    d:\docxdemo\1635486994091.docx
+2021-10-29 13:56:34,293 [PythonService] INFO     Microsoft Word
+2021-10-29 13:56:34,293 [PythonService] INFO     Microsoft Word
+2021-10-29 13:56:34,299 [PythonService] ERROR    22222222222
+2021-10-29 13:56:34,299 [PythonService] ERROR    22222222222
+2021-10-29 13:56:34,299 [PythonService] ERROR    None
+2021-10-29 13:56:34,299 [PythonService] ERROR    None
+2021-10-29 13:56:34,299 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 13:56:34,299 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 14:04:37,888 [PythonService] INFO     服务正在运行...
+2021-10-29 14:04:37,888 [PythonService] INFO     服务正在运行...
+2021-10-29 14:04:41,158 [PythonService] INFO     444444444
+2021-10-29 14:04:41,158 [PythonService] INFO     444444444
+2021-10-29 14:04:41,160 [PythonService] INFO     None
+2021-10-29 14:04:41,160 [PythonService] INFO     None
+2021-10-29 14:04:41,336 [PythonService] ERROR    d:\docxdemo\1635487480917.docx
+2021-10-29 14:04:41,336 [PythonService] ERROR    d:\docxdemo\1635487480917.docx
+2021-10-29 14:04:41,338 [PythonService] INFO     Microsoft Word
+2021-10-29 14:04:41,338 [PythonService] INFO     Microsoft Word
+2021-10-29 14:04:41,349 [PythonService] ERROR    22222222222
+2021-10-29 14:04:41,349 [PythonService] ERROR    22222222222
+2021-10-29 14:04:41,351 [PythonService] ERROR    None
+2021-10-29 14:04:41,351 [PythonService] ERROR    None
+2021-10-29 14:04:41,351 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'
+2021-10-29 14:04:41,351 [PythonService] ERROR    'NoneType' object has no attribute 'SaveAs'

BIN
test4.files/image001.gif


BIN
test4.files/image001.png


BIN
test4.files/image002.gif


BIN
test4.files/image002.png


BIN
test4.files/image003.gif


BIN
test4.files/image003.png


BIN
test4.files/image004.gif


BIN
test4.files/image004.png


BIN
test4.files/image005.gif


BIN
test4.files/image005.png


BIN
test4.files/image006.gif


BIN
test4.files/image006.png


BIN
test4.files/image007.gif


BIN
test4.files/image007.png


BIN
test4.files/image008.gif


BIN
test4.files/image008.png


BIN
test4.files/image009.gif


BIN
test4.files/image009.png


BIN
test4.files/image010.gif


BIN
test4.files/image010.png


BIN
test4.files/image011.gif


BIN
test4.files/image011.png


BIN
test4.files/image012.gif


BIN
test4.files/image012.png


BIN
test4.files/image013.gif


BIN
test4.files/image013.png


BIN
test4.files/image014.gif


BIN
test4.files/image014.png


BIN
test4.files/image015.gif


BIN
test4.files/image015.png


BIN
test4.files/image016.gif


BIN
test4.files/image016.png


BIN
test4.files/image017.gif


BIN
test4.files/image017.png


BIN
test4.files/image018.gif


BIN
test4.files/image018.png


BIN
test4.files/image019.gif


BIN
test4.files/image019.png


BIN
test4.files/image020.gif


BIN
test4.files/image020.png


BIN
test4.files/image021.gif


BIN
test4.files/image021.png


BIN
test4.files/image022.gif


BIN
test4.files/image022.png


BIN
test4.files/image023.gif


BIN
test4.files/image023.png


BIN
test4.files/image024.gif


BIN
test4.files/image024.png


BIN
test4.files/image025.gif


BIN
test4.files/image025.png


BIN
test4.files/image026.gif


BIN
test4.files/image026.png


BIN
test4.files/image027.gif


BIN
test4.files/image027.png


BIN
test4.files/image028.gif


BIN
test4.files/image028.png


BIN
test4.files/image029.gif


BIN
test4.files/image029.png


BIN
test4.files/image030.gif


BIN
test4.files/image030.png


BIN
test4.files/image031.gif


BIN
test4.files/image031.png


BIN
test4.files/image032.gif


BIN
test4.files/image032.png


BIN
test4.files/image033.gif


BIN
test4.files/image033.png


BIN
test4.files/image034.gif


BIN
test4.files/image034.png


BIN
test4.files/image035.gif


BIN
test4.files/image035.png


BIN
test4.files/image036.gif


BIN
test4.files/image036.png


BIN
test4.files/image037.gif


BIN
test4.files/image037.png


BIN
test4.files/image038.gif


BIN
test4.files/image038.png


BIN
test4.files/image039.gif


BIN
test4.files/image039.png


BIN
test4.files/image040.gif


BIN
test4.files/image040.png


BIN
test4.files/image041.gif


BIN
test4.files/image041.png


BIN
test4.files/image042.gif


BIN
test4.files/image042.png


BIN
test4.files/image043.gif


BIN
test4.files/image043.png


BIN
test4.files/image044.gif


BIN
test4.files/image044.png


BIN
test4.files/image045.gif


BIN
test4.files/image045.png


BIN
test4.files/image046.gif


BIN
test4.files/image046.png


+ 0 - 0
test4.files/image047.gif


Some files were not shown because too many files changed in this diff