Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sensetecnic/wotkit-py
Python client for the wotkit
https://github.com/sensetecnic/wotkit-py
Last synced: 13 days ago
JSON representation
Python client for the wotkit
- Host: GitHub
- URL: https://github.com/sensetecnic/wotkit-py
- Owner: SenseTecnic
- Created: 2013-08-19T19:14:16.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-03T18:54:43.000Z (about 11 years ago)
- Last Synced: 2024-03-26T17:19:28.724Z (10 months ago)
- Language: Python
- Size: 227 KB
- Stars: 0
- Watchers: 11
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
wotkit-py
=========Python client for the wotkit. This client uses the requests library to connect to the WoTKiT using HTTP.
Installation
==========
The client can easily be installed to a Python (virtual) environment:```
pip install wotkitpy
```Example Usage
===========```
from wotkitpy import WotkitProxy
wotkit_config = {"api_url": "api_url_here",
"username": "username_here",
"password": "password_here"
}
wotkit_proxy = WotkitProxy(**wotkit_config)sensor_data = wotkit_proxy.get_sensor_by_id(SENSOR_ID)
```