在 Raspberry pi 上使用 Python 2.7,我创建了一个 Pushbullet 帐户并将其安装在我的 iPhone 7 (iOS 12.4) 上。在这种情况下,我使用来自https://github.com/rbrcsk/pushbullet.py的 github 库, 但我也注意到使用其他方法的这种滞后。
这是代码:
#!/usr/bin/env python
from pushbullet import Pushbullet
PB_API_KEY = 'o.00000000000000000000000000000000'
print("creating pb object with key:")
try:
pb = Pushbullet(PB_API_KEY)
except Exception as e:
print (str(e))
exit()
print("pushing note:")
try:
push = pb.push_note('important subject','this is a test')
except Exception as e:
print (str(e))
exit()
print ("done")
发生的情况是,当我运行此脚本时,它会打印“用键创建 pb 对象:”,然后它似乎挂起。30 分钟(左右)后,通知出现在我的手机上,我看到接下来的两个打印行已经出现并且脚本已经完成。
我急于开始使用 Pushbullet 从我的 PI-GPIO 家庭警报器中推送警报通知。它似乎有效,但为什么会有很大的滞后?