├── .gitignore ├── .python-version ├── README.md ├── frontend ├── .gitignore ├── app.vue ├── assets │ └── css │ │ └── tailwind.css ├── components │ └── ApiStatus.vue ├── composables │ └── useApi.js ├── nuxt.config.ts ├── package-lock.json ├── package.json ├── pages │ ├── decrypt-result.vue │ ├── decrypt.vue │ ├── detection-result.vue │ └── index.vue ├── plugins │ └── api-check.client.js ├── public │ ├── favicon.ico │ └── logo.png ├── stores │ └── app.js ├── tailwind.config.js └── tsconfig.json ├── main.py ├── pyproject.toml ├── src ├── __init__.py └── wechat_decrypt_tool │ ├── __init__.py │ ├── api.py │ ├── logging_config.py │ ├── wechat_decrypt.py │ └── wechat_detection.py ├── uv.lock ├── 检测.jpg └── 解密.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/README.md -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/app.vue -------------------------------------------------------------------------------- /frontend/assets/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/assets/css/tailwind.css -------------------------------------------------------------------------------- /frontend/components/ApiStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/components/ApiStatus.vue -------------------------------------------------------------------------------- /frontend/composables/useApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/composables/useApi.js -------------------------------------------------------------------------------- /frontend/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/nuxt.config.ts -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/pages/decrypt-result.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/pages/decrypt-result.vue -------------------------------------------------------------------------------- /frontend/pages/decrypt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/pages/decrypt.vue -------------------------------------------------------------------------------- /frontend/pages/detection-result.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/pages/detection-result.vue -------------------------------------------------------------------------------- /frontend/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/pages/index.vue -------------------------------------------------------------------------------- /frontend/plugins/api-check.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/plugins/api-check.client.js -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/public/logo.png -------------------------------------------------------------------------------- /frontend/stores/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/stores/app.js -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/wechat_decrypt_tool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/src/wechat_decrypt_tool/__init__.py -------------------------------------------------------------------------------- /src/wechat_decrypt_tool/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/src/wechat_decrypt_tool/api.py -------------------------------------------------------------------------------- /src/wechat_decrypt_tool/logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/src/wechat_decrypt_tool/logging_config.py -------------------------------------------------------------------------------- /src/wechat_decrypt_tool/wechat_decrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/src/wechat_decrypt_tool/wechat_decrypt.py -------------------------------------------------------------------------------- /src/wechat_decrypt_tool/wechat_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/src/wechat_decrypt_tool/wechat_detection.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/uv.lock -------------------------------------------------------------------------------- /检测.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/检测.jpg -------------------------------------------------------------------------------- /解密.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LifeArchiveProject/WeChatDataAnalysis/HEAD/解密.jpg --------------------------------------------------------------------------------