ESC (@ggken) 在 基于微信赞赏码的个人收款方案 中发帖
二开V免签(支持赞赏码)
微信Hook
赞赏码监控代码
import hashlib
import requests
import time
import threading
import re
import logging
import json
from wxhook import Bot
from wxhook import events
from wxhook.model import Event
# 配置日志
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s')
logger = logging.getLogger(__name__)
# 加载配置
try:
with open('config.json', 'r') as f:
...