LOL - yes, I had it installed and running in no time using this python module:
https://pypi.python.org/pypi/pushbullet.py
This is Sooooo easy!
1) Log into the pushbullet website using your gmail or facebook account.
2) Have a quick 5 min. look around the website
3) Generate an API key
4) Download mobile phone App and login to your new account
5) Download python module: pip install pushbullet.py
6) using info from the above module website, create a simple test script:
from pushbullet import Pushbullet
pb = Pushbullet(‘enter-pushbullet-api-key-here’)
print(pb.devices) # lists out my registered devices
push = pb.push_note("This is the title", "This is the body")
push = pb.push_link("Cool site", "
https://github.com")
to_buy = ["milk", "bread", "cider"]
push = pb.push_list("Shopping list", to_buy)
Thanks once again for the tip off
