From 3fb4e8149dccb4dcad3e23e9e6bb2d906f1ff8b7 Mon Sep 17 00:00:00 2001
From: shuaikangzhou <863909694@qq.com>
Date: Mon, 30 Oct 2023 23:55:26 +0800
Subject: [PATCH] update readme
---
.idea/workspace.xml | 29 ++++++++++++++---------------
app/person.py | 8 ++++++++
app/{utils => util}/__init__.py | 0
readme.md | 3 ++-
4 files changed, 24 insertions(+), 16 deletions(-)
create mode 100644 app/person.py
rename app/{utils => util}/__init__.py (100%)
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index e26c495..724975b 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,20 +4,11 @@
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
+
+
@@ -439,7 +430,14 @@
1698331665669
-
+
+ 1698592548209
+
+
+
+ 1698592548210
+
+
@@ -493,7 +491,8 @@
-
+
+
diff --git a/app/person.py b/app/person.py
new file mode 100644
index 0000000..d5d1fdf
--- /dev/null
+++ b/app/person.py
@@ -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)
diff --git a/app/utils/__init__.py b/app/util/__init__.py
similarity index 100%
rename from app/utils/__init__.py
rename to app/util/__init__.py
diff --git a/readme.md b/readme.md
index 2a7f574..2e6fd31 100644
--- a/readme.md
+++ b/readme.md
@@ -9,7 +9,7 @@
-
+
@@ -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