Skip to content
SgtHotshot edited this page Jan 2, 2015 · 5 revisions

#Welcome to the PB4Py wiki!

PB4Py is an API for PushBullet written in Python. It exposes the REST API that PushBullet puts out to python. It only requires one package outside of the default Python packages and that's the Requests package. We are using Python 2.7.8 for this project.

#Installation

You can use pip or easy_install to install PB4Py. Alternatively you could check out the repo and then use it directly like that but that's only recommended if you are doing development on the project.

Using PB4Py in your Application

import pb4py

myPB4Py = pb4py.Client()

or

myPB4Py = pb4py.Client(config)

Clone this wiki locally