1. 程式人生 > >Python3 模擬微信群發功能

Python3 模擬微信群發功能

#coding=utf-8  
from wxpy import *


if __name__=='__main__':
    bot = Bot()
    friend = bot.friends()
    lfri = []
    for fri in friend:
        lfri.append(fri.name)
    for fri in lfri[:2]:
        my_friend = bot.friends().search(fri)[0]
        #my_friend.send('提前恭祝國慶節快樂!')
        my_friend.send_image(r'E:\nice.PNG')