我使用 python pushbullet.py库来访问我的 pushbullet 推送。
经过几个月来回推送消息后,当我执行 pb.get_pushes() 时,我现在已检索到超过 5000 个推送。这需要很长时间才能检索,因为它最终超过 700KB。我已经通过执行以下操作删除了推送:
s,p=pb.get_pushes()
for i in p:
ident=i.get("iden")
try:
pb.dismiss_push(ident)
pb.delete_push(ident)
except:
pass
但即便如此,我仍然有超过 5000 条 active=False 的推送记录。我怎样才能消除不必要的推动,使他们不会坐视不理?