Pusher is a python library for Pushbullet .
Push note
from pusher import api
api = api.API()
api.push("My Body", "My Title")
Push file
from pusher import api
api = api.API()
api.push_file("path/to/file", "My Body")
See the examples and the official docs for more details.