初学python,看到一个小脚本程序,就自己实现做个笔记
环境准备:
微信号(扫码登陆网页版)
pip install wxpy
pip install requests
#!/usr/bin/python
# coding=utf-8
from __future__ import unicode_literals
from threading import Timer
from wxpy import *
impor
使用Python实现微信每日晚安问候
这篇博客记录了初学者用Python编写脚本的过程,通过微信网页版接口,实现每天自动发送晚安消息给女朋友。首先确保安装了wxpy和requests库,然后配置好微信登录,即可设置自动化发送晚安问候。
初学python,看到一个小脚本程序,就自己实现做个笔记
环境准备:
微信号(扫码登陆网页版)
pip install wxpy
pip install requests
#!/usr/bin/python
# coding=utf-8
from __future__ import unicode_literals
from threading import Timer
from wxpy import *
impor
3851