--- id: python-openevse-http version: "1.5.0" license: Apache-2.0 license_treatment: permissive maintenance: active --- # python-openevse-http — Python wrapper for OpenEVSE HTTP API License: permissive · Maintenance: active · Downloads: 73.9K/mo ## What it is and what it does This package provides a Python wrapper around the OpenEVSE HTTP API, enabling asynchronous control and monitoring of electric vehicle chargers equipped with WiFi modules. It abstracts the low-level HTTP and WebSocket protocols into a high-level client interface, allowing developers to query charger status, manage charging claims and limits, toggle grid shaper features, and receive real-time updates without blocking I/O. The library is built on aiohttp for non-blocking communication and targets Python 3.13 or later. It supports a comprehensive set of API endpoints for status, configuration, overrides, schedules, and firmware updates, though some endpoints remain unimplemented. It handles both HTTP and HTTPS connections, including optional SSL verification bypass for self-signed certificates on trusted networks. Use it for: - Monitor and control home EV chargers from a Python automation or home-assistant integration. - Build a dashboard or mobile app backend that queries real-time charger status and sensor data. - Implement solar-divert or grid-shaping logic that adjusts charging claims and limits based on external conditions. - Automate charging schedules and limits across multiple chargers in a fleet or multi-unit setting. - Integrate OpenEVSE chargers into a smart-home or energy-management system via async Python APIs. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. A Python library for asynchronous communication with OpenEVSE chargers via HTTP API on ESP8266 and ESP32 WiFi modules, supporting status queries, charging control, and real-time WebSocket updates. Yes. The package is actively maintained, has no known vulnerabilities, installs with low friction, and provides a well-structured async interface to a real device ecosystem. It is suitable for production use in home automation, fleet management, and energy-management integrations. The Python 3.13 requirement is a minor constraint but aligns with current best practice. ## Install pip install python-openevse-http uv add python-openevse-http poetry add python-openevse-http ## Installing python-openevse-http Before you install: Low friction installation as a pure-Python wheel with a single runtime dependency on aiohttp. The package is actively maintained with recent commits and supports current Python versions. License in practice: Licensed under Apache-2.0 (permissive), allowing commercial and private use with minimal restrictions; attribution required but no copyleft obligations. Quickstart: pip install python_openevse_http import asyncio import aiohttp async def main(): async with aiohttp.ClientSession() as session: charger = python_openevse_http.OpenEVSE("192.168.1.30", session=session) await charger.update() print(f"Charger State: {charger.status}") asyncio.run(main()) Requires Python 3.13 or later; target OpenEVSE device must be reachable on the network and running compatible ESP8266 or ESP32 firmware. Verify before relying: - Whether WebSocket real-time updates work reliably across all supported firmware versions and network conditions. - Performance characteristics when controlling multiple chargers concurrently from a single client. - Compatibility with OpenEVSE devices behind proxies or NAT configurations. ## Package facts - License: Apache-2.0 (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 73.9K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags openevse http api client, ev charger control python, async evse communication, openevse wifi module library, electric vehicle charger api, evse status monitoring, aiohttp charger control, ev-charging, iot-device-control, async-http [View on SkillFed](https://skillfed.io/packages/python-openevse-http) · [View on PyPI](https://pypi.org/project/python-openevse-http/)