WeChatAssistant
v0.1 微信助手(win)
WeChat Assistant has GUI graphical interface, scan code login, keyword monitoring, automatic reply, keyword and reply content display, added deletion, group messaging, multi-group sending and other functions
Development python version python 3.7.0
Software download address
Interface four, you can select multiple friends and send messages
If you want to compile and package it yourself, you can follow the steps below
The spec file of pyinstaller can refer to the following:
Binaries contains the storage address of source code attachment files. The following is my storage address. You can change it to yours.
console=False means that after packaging, the console window will not appear.
# -*- mode: python -*-
block_cipher = None
a = Analysis(['WeChatAssistant.py'],
pathex=['D:\Codes\WeChatProgramCodes'],
binaries=[('D:\CodesWeChatProgramCodesgroupdata.json','.'),('D:\CodesWeChatProgramCodeskeyword.json','.'),('D:\CodesWeChatProgramCodesweixin.ico','.')],
datas=[],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='WeChatAssistant',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
runtime_tmpdir=None,
console=False )