A very simple Python client for the PushingBox Notification service API.
Project description
# pushingbox A very simple Python client for the [PushingBox](https://www.pushingbox.com/index.php) Notification service API.
## Installation Simply install using pip as follows:
pip install PushingBox
or clone this repo and run the following:
python setup.py install
You will need to install the [requests](http://python-requests.org) module (pip install -r requirements.txt).
## Usage This is extremely simple. First create a ‘Scenario’ via the [PushingBox dashboard](https://www.pushingbox.com/scenarios.php). This will generate a DeviceID for your scenario, for example: v0123456789ABCDE. To use this scenario with this python library is as easy as the following:
` >>> from PushingBox import PushingBox >>> pbox=PushingBox() >>> pbox.push('v0123456789ABCDE') `
If your Scenario contains variables, as per the following example from the [PushingBox API page](https://www.pushingbox.com/api.php):
The $room$ temperature is $temperature$ degrees
then you can pass these variables as keyword arguments to the push() method as follows:
>>> pbox.push(‘v0123456789ABCDE’, room=’kitchen’, temperature=’23’)
Its as simple as that.
## Compatability So far, this module has been tested with Python 3.5 on macOS Sierra (10.12.1). As this is an extemely simple pure python module, I see no reason why it won’t work anywhere and everywhere, but if doesn’t: let me know (preferably with a stack trace!).
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file PushingBox-0.1.3-py2.py3-none-any.whl
.
File metadata
- Download URL: PushingBox-0.1.3-py2.py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4948d96bc960da44527be06b18e4c3010d838fa4284846b3bcb903b587be7d16 |
|
MD5 | ab1d9cf3c392285c45793aa238c28932 |
|
BLAKE2b-256 | 5a53fb97d67228b8c754ecdb184edc9553ee0fba0a37a1bd68b3300a91f38910 |