update readme #60

This commit is contained in:
shuaikangzhou 2023-12-05 21:51:31 +08:00
parent 346dfe5b88
commit dc090a748e
3 changed files with 10 additions and 10 deletions

View File

@ -3,6 +3,7 @@ import sys
import time import time
import traceback import traceback
from PyQt5.QtGui import QFont
from PyQt5.QtWidgets import * from PyQt5.QtWidgets import *
from app.log import logger from app.log import logger
@ -15,7 +16,7 @@ ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID("WeChatReport")
class ViewController(QWidget): class ViewController(QWidget):
def __init__(self): def __init__(self):
super().__init__() super().__init__()
self.viewMainWIndow = None self.viewMainWindow = None
self.viewDecrypt = None self.viewDecrypt = None
def loadPCDecryptView(self): def loadPCDecryptView(self):
@ -35,14 +36,14 @@ class ViewController(QWidget):
""" """
username = '' username = ''
start = time.time() start = time.time()
self.viewMainWIndow = mainview.MainWinController(username=username) self.viewMainWindow = mainview.MainWinController(username=username)
self.viewMainWIndow.exitSignal.connect(self.close) self.viewMainWindow.exitSignal.connect(self.close)
try: try:
self.viewMainWIndow.setWindowTitle("留痕") self.viewMainWindow.setWindowTitle("留痕")
self.viewMainWIndow.show() self.viewMainWindow.show()
end = time.time() end = time.time()
print('ok', end - start) print('ok', '本次加载用了', end - start, 's')
self.viewMainWIndow.init_ui() self.viewMainWindow.init_ui()
except Exception as e: except Exception as e:
print(f"Exception: {e}") print(f"Exception: {e}")
logger.error(traceback.print_exc()) logger.error(traceback.print_exc())

View File

@ -46,7 +46,7 @@
- HTML(文本、图片)✅ - HTML(文本、图片)✅
- Word文档✅ - Word文档✅
- CSV文档✅ - CSV文档✅
- 分析聊天数据,做成可视化年报 - 分析聊天数据,做成可视化年报(请下载exe程序体验该功能)
- 🔥**项目持续更新中** - 🔥**项目持续更新中**
- 导出全部表情包❎ - 导出全部表情包❎
- 合并多个备份数据❎ - 合并多个备份数据❎
@ -74,7 +74,6 @@
![image-20230520235220104](doc/images/image-20230520235220104.png) ![image-20230520235220104](doc/images/image-20230520235220104.png)
![image-20230520235338305](doc/images/image-20230520235338305.png)
![image-20230520235351749](doc/images/image-20230520235351749.png) ![image-20230520235351749](doc/images/image-20230520235351749.png)

View File

@ -7,7 +7,7 @@ silk-python
pyaudio pyaudio
fuzzywuzzy fuzzywuzzy
python-Levenshtein python-Levenshtein
pillow==9.5.0 Pillow==10.1.0
requests requests
flask==3.0.0 flask==3.0.0
pyecharts==2.0.1 pyecharts==2.0.1