11 lines
248 B
Python
11 lines
248 B
Python
|
|
"""
|
||
|
|
微信群发功能
|
||
|
|
建议使用企业微信
|
||
|
|
但需要管理员提供企业id以及secret信息
|
||
|
|
通过wechatpy库实现
|
||
|
|
"""
|
||
|
|
import wechatpy
|
||
|
|
import logging
|
||
|
|
|
||
|
|
logging.basicConfig(level=logging.INFO, format='%(asctime)s %(levelname)s: %(message)s')
|