mirror of
https://github.com/LC044/WeChatMsg
synced 2025-02-22 02:22:17 +08:00
update readme
This commit is contained in:
parent
bb267c348e
commit
3fb4e8149d
@ -4,20 +4,11 @@
|
||||
<option name="autoReloadType" value="SELECTIVE" />
|
||||
</component>
|
||||
<component name="ChangeListManager">
|
||||
<list default="true" id="84e65474-7da9-466d-baf3-cc88dde3ffdd" name="变更" comment="增加几个图标">
|
||||
<change afterPath="$PROJECT_DIR$/app/Ui/ICON.py" afterDir="false" />
|
||||
<change afterPath="$PROJECT_DIR$/app/Ui/MyComponents/Contact.py" afterDir="false" />
|
||||
<change afterPath="$PROJECT_DIR$/app/Ui/MyComponents/__init__.py" afterDir="false" />
|
||||
<change afterPath="$PROJECT_DIR$/app/config.py" afterDir="false" />
|
||||
<change afterPath="$PROJECT_DIR$/app/data/icons/default_avatar.svg" afterDir="false" />
|
||||
<change afterPath="$PROJECT_DIR$/app/utils/__init__.py" afterDir="false" />
|
||||
<list default="true" id="84e65474-7da9-466d-baf3-cc88dde3ffdd" name="变更" comment="修改部分UI">
|
||||
<change afterPath="$PROJECT_DIR$/app/util/__init__.py" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/app/DataBase/data.py" beforeDir="false" afterPath="$PROJECT_DIR$/app/DataBase/data.py" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/app/Ui/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/app/Ui/__init__.py" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/app/Ui/contact/contact.py" beforeDir="false" afterPath="$PROJECT_DIR$/app/Ui/contact/contact.py" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/app/Ui/decrypt/decrypt.py" beforeDir="false" afterPath="$PROJECT_DIR$/app/Ui/decrypt/decrypt.py" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/app/Ui/mainview.py" beforeDir="false" afterPath="$PROJECT_DIR$/app/Ui/mainview.py" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/main.py" beforeDir="false" afterPath="$PROJECT_DIR$/main.py" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/app/utils/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/app/person.py" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/readme.md" beforeDir="false" afterPath="$PROJECT_DIR$/readme.md" afterDir="false" />
|
||||
</list>
|
||||
<option name="SHOW_DIALOG" value="false" />
|
||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||
@ -439,7 +430,14 @@
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1698331665669</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="34" />
|
||||
<task id="LOCAL-00034" summary="修改部分UI">
|
||||
<created>1698592548209</created>
|
||||
<option name="number" value="00034" />
|
||||
<option name="presentableId" value="LOCAL-00034" />
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1698592548210</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="35" />
|
||||
<servers />
|
||||
</component>
|
||||
<component name="UnknownFeatures">
|
||||
@ -493,7 +491,8 @@
|
||||
<MESSAGE value="增加群二维码" />
|
||||
<MESSAGE value="支持导出csv格式聊天记录" />
|
||||
<MESSAGE value="增加几个图标" />
|
||||
<option name="LAST_COMMIT_MESSAGE" value="增加几个图标" />
|
||||
<MESSAGE value="修改部分UI" />
|
||||
<option name="LAST_COMMIT_MESSAGE" value="修改部分UI" />
|
||||
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="true" />
|
||||
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="true" />
|
||||
</component>
|
||||
|
8
app/person.py
Normal file
8
app/person.py
Normal file
@ -0,0 +1,8 @@
|
||||
import app.DataBase.data as data
|
||||
|
||||
|
||||
class Person:
|
||||
def __init__(self, wxid: str):
|
||||
self.wxid = wxid
|
||||
self.username = data.get_conRemark(wxid)
|
||||
self.avatar_path = data.get_avator(wxid)
|
@ -9,7 +9,7 @@
|
||||
<img src="https://img.shields.io/badge/文档-最新-brightgreen.svg" />
|
||||
</a>
|
||||
<a href="LICENSE">
|
||||
<img src="https://img.shields.io/badge/Apache-2.0-blue.svg" />
|
||||
<img src="https://img.shields.io/badge/GPL-3.0-blue.svg" />
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@ -51,6 +51,7 @@
|
||||
1. 根据[教程](https://blog.csdn.net/m0_59452630/article/details/124222235?spm=1001.2014.3001.5501)获得两个文件
|
||||
- auth_info_key_prefs.xml——解析数据库密码
|
||||
- EnMicroMsg.db——聊天数据库
|
||||
- **上面这两个文件就可以**
|
||||
2. 安装依赖库
|
||||
|
||||
python版本3.10
|
||||
|
Loading…
Reference in New Issue
Block a user