修复部分bug
This commit is contained in:
parent
a8071ff412
commit
bfbf488fff
@ -9,13 +9,14 @@
|
|||||||
|
|
||||||
[](https://pypi.org/project/pywxdump/)
|
[](https://pypi.org/project/pywxdump/)
|
||||||
[](https://pypi.org/project/pywxdump/)
|
[](https://pypi.org/project/pywxdump/)
|
||||||
[](https://pypi.org/project/pywxdump/)
|
[](https://pypistats.org/packages/pywxdump)
|
||||||
[](https://github.com/xaoyaoo/PyWxDump/blob/master/LICENSE)
|
[](https://github.com/xaoyaoo/PyWxDump/blob/master/LICENSE)
|
||||||
[](https://github.com/xaoyaoo/PyWxDump/actions/workflows/publish.yml)
|
[](https://github.com/xaoyaoo/PyWxDump/actions/workflows/publish.yml)
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary><strong>更新日志(点击展开):</strong></summary>
|
<summary><strong>更新日志(点击展开):</strong></summary>
|
||||||
|
|
||||||
|
* 2023.11.14 修复部分bug
|
||||||
* 2023.11.11 添加聊天记录解析,查看工具,修复部分bug
|
* 2023.11.11 添加聊天记录解析,查看工具,修复部分bug
|
||||||
* 2023.11.10 修复wxdump wx_db命令行参数错误 [#19](https://github.com/xaoyaoo/PyWxDump/issues/19)
|
* 2023.11.10 修复wxdump wx_db命令行参数错误 [#19](https://github.com/xaoyaoo/PyWxDump/issues/19)
|
||||||
* 2023.11.08 增加3.9.8.15版本支持
|
* 2023.11.08 增加3.9.8.15版本支持
|
||||||
|
@ -231,7 +231,7 @@ def merge_media_msg_db(db_path: list, save_path: str):
|
|||||||
merged_cursor.execute(s)
|
merged_cursor.execute(s)
|
||||||
r0 = merged_cursor.fetchall()
|
r0 = merged_cursor.fetchall()
|
||||||
|
|
||||||
ex_sql = f"select * from {tblname} where Reserved0 not in ({','.join([str(r[0]) for r in r0])})"
|
ex_sql = f"select `Key`,Reserved0,Buf,Reserved1,Reserved2 from {tblname} where Reserved0 not in ({','.join([str(r[0]) for r in r0])})"
|
||||||
cursor.execute(ex_sql)
|
cursor.execute(ex_sql)
|
||||||
data = cursor.fetchall()
|
data = cursor.fetchall()
|
||||||
|
|
||||||
|
2
setup.py
2
setup.py
@ -3,7 +3,7 @@ from setuptools import setup, find_packages
|
|||||||
with open("README.md", "r", encoding="utf-8") as fh:
|
with open("README.md", "r", encoding="utf-8") as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
version = "2.2.1"
|
version = "2.2.2"
|
||||||
setup(
|
setup(
|
||||||
name="pywxdump",
|
name="pywxdump",
|
||||||
author="xaoyaoo",
|
author="xaoyaoo",
|
||||||
|
Loading…
Reference in New Issue
Block a user