PyWxDump/pywxdump/__init__.py

32 lines
1.3 KiB
Python
Raw Normal View History

2023-08-22 00:40:09 +08:00
# -*- coding: utf-8 -*-#
# -------------------------------------------------------------------------------
# Name: __init__.py.py
# Description:
# Author: xaoyaoo
# Date: 2023/10/14
2023-08-22 00:40:09 +08:00
# -------------------------------------------------------------------------------
# from .analyzer.db_parsing import read_img_dat, read_emoji, decompress_CompressContent, read_audio_buf, read_audio, \
# parse_xml_string, read_BytesExtra
# from .ui import app_show_chat, get_user_list, export
2024-03-22 14:17:05 +08:00
from .wx_info import BiasAddr, read_info, get_wechat_db, batch_decrypt, decrypt, get_core_db
2024-05-06 18:46:34 +08:00
from .wx_info import merge_copy_db, merge_msg_db, merge_media_msg_db, merge_db, decrypt_merge, merge_real_time_db, \
all_merge_real_time_db
from .analyzer import DBPool
2024-04-19 16:16:32 +08:00
from .dbpreprocess import get_user_list, get_recent_user_list, wxid2userinfo, ParsingMSG, ParsingMicroMsg, \
2024-07-03 13:21:05 +08:00
ParsingMediaMSG, ParsingOpenIMContact, ParsingFavorite,ParsingPublicMsg
2024-01-20 18:36:38 +08:00
from .server import start_falsk
2023-12-18 22:36:11 +08:00
import os, json
2023-10-14 23:53:06 +08:00
2023-12-28 19:55:21 +08:00
try:
VERSION_LIST_PATH = os.path.join(os.path.dirname(__file__), "version_list.json")
with open(VERSION_LIST_PATH, "r", encoding="utf-8") as f:
VERSION_LIST = json.load(f)
except:
VERSION_LIST = {}
VERSION_LIST_PATH = None
2023-12-18 22:36:11 +08:00
# PYWXDUMP_ROOT_PATH = os.path.dirname(__file__)
# db_init = DBPool("DBPOOL_INIT")
2024-02-26 00:55:36 +08:00
2024-07-23 10:15:06 +08:00
__version__ = "3.0.42"