Skip to content

redacted/pyPushBullet

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

pyPushBullet

Python library to interface with PushBullet

My friend showed me PushBullet, I liked it. I like Python, combine the two to achieve greatness.

This is currently very new, quickly written, and may or may not actually be functional. If it breaks feel free to file a bug report (bonus points for patches)

You need python3 and beautifulsoup4 (you can get it with pip)

How to use:

from pushbullet import PushBullet

p = PushBullet()
p.signIn("user@gmail.com", "secret")
devices = p.getDevices()
data = {'type' : 'note',
        'device_id' : devices[0]["id"],
        'title' : "Hello World!",
        'body' : "It's wonderful to be here!"}
p.pushNotification(data)

About

Python library to interface with PushBullet

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published