Python-notifiers-库基本使用

notifiers 库 Github 地址
notifiers 库 文档

介绍

notifiers 可以基于程序运行的某个输出来触发 notification 操作. 比如发送一个邮件, 发送通知到 Telegram 等.

安装

1
pip install notifiers

基本使用

先查看 notifiers 支持哪些推送服务: 官方文档查看链接.

这里以 QQ 邮箱为示例.

查看可用 schema

1
2
3
4
from notifiers import get_notifier

email = get_notifier('email')
print(email.scema)

对于 QQ 邮箱而言, 发送方需要用 授权码(不是 qq 密码) 登录才行(如何获取授权码可网上搜下). 需要准备的信息有:

  • QQ SMTP 服务器地址: smtp.qq.com
  • QQ SMTP 服务器端口: 465
  • FROM, 即发送方 QQ 邮箱: xxxx@qq.com
  • TO, 即接收方 QQ 邮箱 (也可以是其他邮箱): xxxx@qq.com
  • SUBJECT, 即题目: hello notifiers
  • 具体发送内容: test notifiers by qq mail

因此, 可以这样配置:…..

Waitting for implement…. 这里暂时配置有问题, 看以后有没有解决方法.


Python-notifiers-库基本使用
http://example.com/2024/09/13/Python-notifiers-库基本使用/
作者
Jie
发布于
2024年9月13日
许可协议