A python wrapper for Global Sensor Networks API
Project description
===============================
Python wrapper for the Global Sensor Networks API
===============================
.. contents:: **Table of Contents**
-------------------------
Installation
-------------------------
> pip install gsn
-------------------------
Usage
-------------------------
The wrapper uses the `sanction`_ Oauth2 library to authenticate against GSN services.
Before starting you must create a "client" on GSN services and get the client_id, client_secret and redirect_uri.
As we will be using client_credentials, the client must be linked to the user from which it will inherit the access rights.
The value of redirect uri is not used, but must nevertheless match.
Then in your python code, you can use it this way::
> import gsn
> a = gsn.API(service_url="http://localhost:9000/ws", client_id="client", client_secret="secret", redirect_uri="http://localhost")
> s = a.get_latest_values("push")
> s.values = [[1469959498000, 18]]
> r = a.push_values(s)
.. _sanction: https://github.com/demianbrecht/sanction
Sensor object
===============================
This object abstract the json representation used by GSN for the stream elements. It has the following fields:
* fields: list of triples representing the name, type and units
* name: name of the sensor
* values: list of lists. The inner lists must have the same size as the fields list and represent the data of a stream element.
* location: (optional) a triple representing the location of the sensor as latitude, longitude, altitude.
=======
CHANGES
=======
v0.2.0
-------
* adding refresh token support
* automatically tracking the expiration of access token and refreshing if necessary
v0.1.0
-------
* initial release
* supports querying the latest values and pushing data
* compatible with GSN v2.0.0
Python wrapper for the Global Sensor Networks API
===============================
.. contents:: **Table of Contents**
-------------------------
Installation
-------------------------
> pip install gsn
-------------------------
Usage
-------------------------
The wrapper uses the `sanction`_ Oauth2 library to authenticate against GSN services.
Before starting you must create a "client" on GSN services and get the client_id, client_secret and redirect_uri.
As we will be using client_credentials, the client must be linked to the user from which it will inherit the access rights.
The value of redirect uri is not used, but must nevertheless match.
Then in your python code, you can use it this way::
> import gsn
> a = gsn.API(service_url="http://localhost:9000/ws", client_id="client", client_secret="secret", redirect_uri="http://localhost")
> s = a.get_latest_values("push")
> s.values = [[1469959498000, 18]]
> r = a.push_values(s)
.. _sanction: https://github.com/demianbrecht/sanction
Sensor object
===============================
This object abstract the json representation used by GSN for the stream elements. It has the following fields:
* fields: list of triples representing the name, type and units
* name: name of the sensor
* values: list of lists. The inner lists must have the same size as the fields list and represent the data of a stream element.
* location: (optional) a triple representing the location of the sensor as latitude, longitude, altitude.
=======
CHANGES
=======
v0.2.0
-------
* adding refresh token support
* automatically tracking the expiration of access token and refreshing if necessary
v0.1.0
-------
* initial release
* supports querying the latest values and pushing data
* compatible with GSN v2.0.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gsn-0.2.0.tar.gz
(4.7 kB
view details)
Built Distribution
File details
Details for the file gsn-0.2.0.tar.gz
.
File metadata
- Download URL: gsn-0.2.0.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50920cd918e0f69a3880eabbc1cabec55025c360ed91aa574fde01e990fa1a52 |
|
MD5 | ffdcde7de7878a5fff24787394b62dc8 |
|
BLAKE2b-256 | 56a6d756a03c02b87401bd441e1fb60e273413a4698e427907325f1f8c0861dd |
File details
Details for the file gsn-0.2.0-py2.py3-none-any.whl
.
File metadata
- Download URL: gsn-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a790d9f11faa14c355f5417215be7f78ef9248035c1457982821ecba82899a0 |
|
MD5 | caadf83731dee5801218634d1c633f2b |
|
BLAKE2b-256 | 3de9c42b997c22bd9cd14225f8e3a8f315e9f2489318869c7510d3162262996f |