Python发送新春祝福给指定好友

Posted jason89

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python发送新春祝福给指定好友相关的知识,希望对你有一定的参考价值。

 

为了解放我们的双手,不再一个一个去发送祝福内容,这次,我们决定使用 Python 来发送新春祝福给指定好友。

这里,我们主要是用 itchat 来发送消息。 首先,安装 itchat,如下:

  1. pip install itchat

如果是想给所有的微信好友发送祝福语,相对来说代码要简单一些。

但有时候,我们不想给所有好友都发信息,只想给一部分好友发送信息。 尤其是有些领导或老板或其他特殊人员,发送消息可能效果适得其反。

所以,本次的代码设计思路分为两个部分。

  1. 获取你的所有微信好友

  2. 针对你想发送信息的好友发送祝福语

步骤一:获取所有微信好友

对于我的微信好友,我有一个习惯,会将好友的备注填上,这样的话,即使好友修改昵称,在我的手机上显示的名称也不会发生改变,有利于自己对好友进行识别。

所以,这里我是获取所有微信好友的备注名称,即 RemarkName(当然,如果你的好友大部分是没有进行备注的,你可以试试 DisplayName 或者 NickName

获取所有好友的代码如下,运行代码后,会跳出二维码,用你的微信扫描登录即可:

  1. #coding=utf8

  2. import itchat, time

  3. import pandas as pd

  4.  

  5. itchat.auto_login(True)

  6.  

  7. friendList = itchat.get_friends(update=True)[1:]

  8.  

  9. # --------------------------start------------------------------

  10. # step 1: 获取所有的微信好友列表,在获取完毕后,需要注释掉这段代码

  11. # 从获得的好友列表里筛选你想发送消息的好友,同时可以将好友按照不同的分组进行设置

  12. # 获取所有微信好友列表,这里我获取的是好友的备注名称

  13. count_02 = 0

  14. friends_remark = []

  15. for friend in friendList:

  16.    friends_remark.append(friend[‘RemarkName‘])

  17.    count_02 = count_02 + 1

  18.  

  19. # df_friends = pd.Series(friends_remark)

  20. # df_friends.to_csv(‘friends.csv‘, encoding=‘utf_8_sig‘) # utf-8

  21. print(friends_remark)

  22. print("Total {} friends".format(count_02))

  23. # -------------------------end---------------------------------

在上面的代码中, print(friends_remark) 会输出你的所有好友,你可以从里面挑选你想发送消息的好友,同时可以分为几个不同的组。 后续可以考虑针对不同分组的好友发送不同的祝福内容。

步骤二: 将好友分组,并发送消息

在获取了所有好友之后,首先请先把上面的 step 1 的代码进行注释,然后需要从你的所有好友里挑选想发送消息的好友的名称,可以分别填入到下面代码中的 friend_msg_list_01 或 friend_msg_list_02 。

其次,需要设置发送的祝福语的内容。

把以上内容设置好之后,则可以参考下面的代码进行设置,以及运行代码。

以下的代码,默认将好友分为两组,当然,你也可以设置更多的分组,在后面添加 elif 条件语句进行发送设置即可。

  1. # --------------------------start------------------------------

  2. # step 2: 给指定好友按不同分组发送不同的消息

  3. # 在运行 step 1 的代码时,这里的代码需要注释

  4.  

  5. # 定义要发送的好友的范围,防止自动乱发消息

  6. # 好友列表里,我用的是 备注名称

  7. friend_msg_list_01 = ["lemon-zs", "lemon-zs-01"]  # 根据自己的实际情况设置好友分组

  8. friend_msg_list_02 = ["lemon-zs-02", "lemon-zs-02" ] # 根据自己的实际情况设置好友分组

  9.  

  10.  

  11. #设置不同好友分组需要发送的内容

  12. SINCERE_WISH = u‘test, 祝%s新年快乐!‘  # 根据自己的实际情况设置祝福内容

  13. msg_01 = ‘test01, 祝新年快乐!!!‘     # 根据自己的实际情况设置祝福内容

  14. msg_02 = ‘test02, 祝新年快乐!!!‘     # 根据自己的实际情况设置祝福内容

  15.  

  16.  

  17. count = 0

  18. for friend in friendList:

  19.    # 通过 if 条件设置,可以只针对 指定的好友发送消息

  20.    # 也可以设置为几个分组,不同分组发送不同的消息

  21.    # 由于我的好友一般都设置了备注名称, 即 "RemarkName",所以我是用 备注名称来作为条件判断

  22.    # 主要是为了防止别错发给一些不能随便发送信息的老板或领导或其他人士

  23.    if friend[‘RemarkName‘] in friend_msg_list_01:

  24.        # itchat.send( SINCERE_WISH % (friend[‘DisplayName‘] or friend[‘NickName‘]), friend[‘UserName‘])

  25.        itchat.send( SINCERE_WISH % (friend[‘DisplayName‘] or friend[‘NickName‘]), friend[‘UserName‘])

  26.        time.sleep(5)

  27.        count = count + 1

  28.    elif friend[‘RemarkName‘] in friend_msg_list_02:

  29.        itchat.send( msg_01, friend[‘UserName‘])

  30.        time.sleep(5)

  31.        count = count + 1

  32.  

  33.  

  34. print("Total {} messages have been sent.".format(count))

  35. print("----end----")

  36. # -------------------------end---------------------------------

友情提醒下: 

itchat 在使用过程中,如果频繁调取与发送消息,可能会导致微信被封,请谨慎使用。当发送消息的人员很多时,请适当设置每发送一个之后的休息时间间隔,即 time.sleep(5)

完整源码如下:
#coding=utf8
import itchat, time
import pandas as pd
 
itchat.auto_login(True)
 
friendList = itchat.get_friends(update=True)[1:]

# --------------------------start------------------------------
# step 1: 获取所有的微信好友列表,在获取完毕后,需要注释掉这段代码
# 从获得的好友列表里筛选你想发送消息的好友,同时可以将好友按照不同的分组进行设置
# 获取所有微信好友列表,这里我获取的是好友的备注名称
count_02 = 0
friends_remark = []
for friend in friendList:
    friends_remark.append(friend[RemarkName])
    count_02 = count_02 + 1

# df_friends = pd.Series(friends_remark)
# df_friends.to_csv(‘friends.csv‘, encoding=‘utf_8_sig‘) # utf-8
print(friends_remark)
print("Total {} friends".format(count_02))
# -------------------------end---------------------------------



# --------------------------start------------------------------
# step 2: 给指定好友按不同分组发送不同的消息
# 在运行 step 1 的代码时,这里的代码需要注释

# 定义要发送的好友的范围,防止自动乱发消息
# 好友列表里,我用的是 备注名称
friend_msg_list_01 = ["lemon-zs", "lemon-zs-01"]  # 根据自己的实际情况设置好友分组
friend_msg_list_02 = ["lemon-zs-02", "lemon-zs-02" ] # 根据自己的实际情况设置好友分组


#设置不同好友分组需要发送的内容
SINCERE_WISH = utest, 祝%s新年快乐!  # 根据自己的实际情况设置祝福内容
msg_01 = test01, 祝新年快乐!!!     # 根据自己的实际情况设置祝福内容
msg_02 = test02, 祝新年快乐!!!     # 根据自己的实际情况设置祝福内容


count = 0
for friend in friendList:
    # 通过 if 条件设置,可以只针对 指定的好友发送消息
    # 也可以设置为几个分组,不同分组发送不同的消息
    # 由于我的好友一般都设置了备注名称, 即 "RemarkName",所以我是用 备注名称来作为条件判断的
    # 主要是为了防止别错发给一些不能随便发送信息的老板或领导或其他人士
    if friend[RemarkName] in friend_msg_list_01:
        # itchat.send( SINCERE_WISH % (friend[‘DisplayName‘] or friend[‘NickName‘]), friend[‘UserName‘])
        itchat.send( SINCERE_WISH % (friend[DisplayName] or friend[NickName]), friend[UserName])
        time.sleep(5)
        count = count + 1
    elif friend[RemarkName] in friend_msg_list_02:
        itchat.send( msg_01, friend[UserName])
        time.sleep(5)
        count = count + 1


print("Total {} messages have been sent.".format(count))
print("----end----")
# -------------------------end---------------------------------

 

以上是关于Python发送新春祝福给指定好友的主要内容,如果未能解决你的问题,请参考以下文章

Python-定时爬取指定城市天气-发送给关心的微信好友

如何实现微信自动发节日祝福

Python-定时爬取指定城市天气-邮件提醒

2023新春祝福html代码,包你学会

Python|每日定时对指定好友发送随机消息~

python给qq好友发送消息