I use the python pushbullet.py library to access my pushbullet pushes.
After some months of pushing messages back and forth, I now have over 5000 pushes being retrieved when I do pb.get_pushes(). This is taking quite a long time to retrieve since it ends up being more than 700KB. I have already deleted the pushes by doing something like this:
s,p=pb.get_pushes()
for i in p:
ident=i.get("iden")
try:
pb.dismiss_push(ident)
pb.delete_push(ident)
except:
pass
But even with this, I have over 5000 push records where active=False. How can I expunge the unwanted pushes so that they don't sit around?