Skip to main content

Client for retrieving data from the La Crosse View cloud

Project description

La Crosse View

A library for retrieving data from La Crosse View-connected sensors.

Disclaimer

This library is NOT for the Jeelink LaCrosse sensors. You can find that library here. There is also a Home Assistant integration for the Jeelink LaCrosse sensors.

Installation

Run this in your terminal:

pip install lacrosse_view

Usage

This example shows how to get the latest data from every sensor connected to the first location on your account.

from lacrosse_view import LaCrosse
import asyncio

async def get_data():
    api = LaCrosse()
    # Log in to your LaCrosse View account
    await api.login('paulus@home-assistant.io', 'password')
    # Get the sensors from the first location on the account
    locations = await api.get_locations()
    sensors = await api.get_sensors(locations[0], tz="America/New_York", start=datetime.now() - timedelta(minutes=1), end=datetime.now())
 
    for sensor in sensors:
        for field in sensor.sensor_field_names:
            # Each value is a dictionary with keys "s" and "u". "s" is the value and "u" is the Unix timestamp for it.
            print(
                f"{sensor.name} {field}: {sensor.data[field]["values"][-1]["s"]}"
            )
    
    await api.logout()

asyncio.run(get_data())

Questions?

If you have any questions, please, don't hesitate to open an issue.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lacrosse_view-0.0.7.tar.gz (5.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lacrosse_view-0.0.7-py3-none-any.whl (5.5 kB view details)

Uploaded Python 3

File details

Details for the file lacrosse_view-0.0.7.tar.gz.

File metadata

  • Download URL: lacrosse_view-0.0.7.tar.gz
  • Upload date:
  • Size: 5.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for lacrosse_view-0.0.7.tar.gz
Algorithm Hash digest
SHA256 3b54da7624f9b7950147aeed3a72369455c584d1cc4c128b28a6e0f353b56ba8
MD5 d00277e9ed0f2373db22ac15f018d08d
BLAKE2b-256 65830ceb52f9c4249fa95136336d26b9e64ffd6fe8ef9f8acff84d51b1746f6f

See more details on using hashes here.

File details

Details for the file lacrosse_view-0.0.7-py3-none-any.whl.

File metadata

  • Download URL: lacrosse_view-0.0.7-py3-none-any.whl
  • Upload date:
  • Size: 5.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for lacrosse_view-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 3dec7ccfb5128ef6f1e6f4fd5432c5589ffb3340b4ed1888485b847a39f8af52
MD5 3e5ea5409787e4660cdd4d3209672723
BLAKE2b-256 22a489ee8e1d7153c5bd62c1d5594b72c3174e9a932ec98f0ba7e26436010405

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page