Notification

 28th November 2018 at 11:57pm

Pushbullet

Pushbullet 是一个跨平台的消息同步工具,也能同步其他手机 App 的 Push 消息。它还提供了易用的 API。

API

Pushbullet API Access Token 纪录在 Enpass 中。

Python Libraries

有人将它的 API 封装成 Python 版本,非常适合日常做消息通知使用。Python 库在 randomchars/pushbullet.py

代码例子:

from pushbullet import Pushbullet

api_key = 'See Enpass'
pb = Pushbullet(api_key)

title = 'Hello'
body = 'world'
push = pb.push_note(title, body)

同时还有人用 Python 写了 CLI 工具:GustavoKatel/pushbullet-cli

$ pip install pushbullet-cli
$ pb set-key
$ pb push "your content"
$ echo "something" | pb push

Server 酱

一个 在线服务。往 http://sc.ftqq.com/<token>.send 发一个 GET / POST 请求,参数 text, desp 表示标题、正文,微信上就能收到通知。

curl http://sc.ftqq.com/$TOKEN.send?text=Notification&desp=things_done

Token 纪录在 Enpass 中。