--- id: lacrosse-view version: "1.1.2" license: unclear license_treatment: permissive maintenance: active --- # lacrosse-view — Client for retrieving data from the La Crosse View cloud License: permissive · Maintenance: active · Downloads: 74.0K/mo ## What it is and what it does lacrosse_view is an async Python client for querying the La Crosse View cloud service, which aggregates data from La Crosse View-connected environmental sensors (temperature, humidity, and similar readings). It handles authentication, location and sensor discovery, and time-windowed data retrieval with timezone support. The library wraps the cloud API and returns sensor readings as structured objects with values and Unix timestamps. It is designed for integration with Home Assistant and similar home automation platforms, or for standalone scripts that need to pull sensor readings programmatically. The package uses aiohttp for async HTTP requests and pydantic for data validation, making it suitable for event-driven or concurrent applications. Use it for: - Integrate La Crosse View sensors into Home Assistant for centralized home automation monitoring. - Build a script to log sensor readings to a database or time-series store on a schedule. - Query historical sensor data within a time window for analysis or reporting. - Retrieve current readings from multiple sensors across different locations in a single account. - Automate alerts or actions based on sensor thresholds (temperature, humidity) via a custom application. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Retrieves sensor data from La Crosse View-connected weather and environmental sensors via their cloud API. Yes, if you own La Crosse View-connected sensors and need programmatic access to their data. The library is stable and has low install friction, but be aware that the maintainer has stepped back from active development and will only apply fixes required by Home Assistant. If the cloud API changes or you encounter issues specific to your device setup, support will be limited. ## Install pip install lacrosse-view uv add lacrosse-view poetry add lacrosse-view ## Installing lacrosse-view Before you install: Low friction install with three runtime dependencies (aiohttp, pydantic, aiozoneinfo). Maintenance is active but the maintainer has explicitly stated the project is no longer being updated beyond general Home Assistant compatibility fixes, and they no longer own a device for testing. License in practice: Licensed under MIT (permissive), so you can use, modify, and distribute the package freely with minimal restrictions. Quickstart: pip install lacrosse_view from lacrosse_view import LaCrosse import asyncio async def get_data(): api = LaCrosse() await api.login('username', 'password') locations = await api.get_locations() sensors = await api.get_sensors(locations[0], tz="America/Vancouver") await api.logout() asyncio.run(get_data()) Requires a valid La Crosse View account with connected sensors; Python 3.6 or later. Verify before relying: - Whether the La Crosse View cloud API remains stable and accessible for authentication and sensor queries. - Current compatibility status with La Crosse View's backend after the maintainer's shift away from active development. - Whether all sensor types and data fields are reliably returned across different device configurations. ## Package facts - License: not declared (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 74.0K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags la crosse view api client, weather sensor data retrieval, lacrosse cloud integration, environmental sensor api, lacrosse view python library, sensor data cloud client, lacrosse connected devices, home-automation, sensor-integration, async-api [View on SkillFed](https://skillfed.io/packages/lacrosse-view) · [View on PyPI](https://pypi.org/project/lacrosse-view/)