This repository contains a Template Python project
Follow these exact commands in a Windows terminal.
- Create a virtual environment (run from repository root):
py -3 -m venv venv- Activate the virtual environment:
# If PowerShell blocks script execution, allow it for this session:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process
# Activate (dot + space ensures it runs in the current shell):
. .\venv\Scripts\Activate.ps1venv\Scripts\activate- Install dependencies (after activation):
pip install -r requirements.txt- Run the application:
python moes_tuya_thermostat_bridge.pyInstructions for building and testing go here.