WSView Plus support
Project description
Wittiot
Python library for accessing Wittiot / WSView Plus weather station data via local LAN API.
Installation
pip install wittiot
Usage
import asyncio
import logging
from aiohttp import ClientSession
from wittiot import API
async def main():
# Replace with your device IP
HOST = "192.168.1.110"
async with ClientSession() as session:
api = API(HOST, session=session)
try:
# Get all sensor data
data = await api._request_loc_allinfo()
print(f"Data from {HOST}:")
print(data)
except Exception as e:
print(f"Error: {e}")
if __name__ == "__main__":
logging.basicConfig(level=logging.INFO)
asyncio.run(main())
Supported Devices
- GW1100
- GW2000
- WN1900
- And other Ecowitt/Wittiot devices supporting local API
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
wittiot-1.0.39.tar.gz
(23.9 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
wittiot-1.0.39-py3-none-any.whl
(24.3 kB
view details)
File details
Details for the file wittiot-1.0.39.tar.gz.
File metadata
- Download URL: wittiot-1.0.39.tar.gz
- Upload date:
- Size: 23.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7cea1dffdb98fc4b1081ba4faaa8374dc6ab6b20b9bb0b318461d8c83f457f36
|
|
| MD5 |
3f150194a970c9414327464eb5570359
|
|
| BLAKE2b-256 |
782bac0cdf7413fcddd8d072aa3b758ebebaba3479645f8da3862578b360bfe0
|
File details
Details for the file wittiot-1.0.39-py3-none-any.whl.
File metadata
- Download URL: wittiot-1.0.39-py3-none-any.whl
- Upload date:
- Size: 24.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e0f9485e81b0eeef0e9d814e543eb37c99e2c6c4488ecf4f3b6907f59db22f1
|
|
| MD5 |
7febbf0fd1a2d05ccdbd8d7c25b9f366
|
|
| BLAKE2b-256 |
84c9bcb6e77c235397d972b9aeb95bd1e113c029edf63df790ffea30b7152867
|