Skip to content

Latest commit

 

History

History
51 lines (31 loc) · 1.05 KB

File metadata and controls

51 lines (31 loc) · 1.05 KB

Introduction

This repository contains a Template Python project

SETUP



Windows: create, activate venv, and run

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.ps1
venv\Scripts\activate
  • Install dependencies (after activation):
pip install -r requirements.txt
  • Run the application:
python moes_tuya_thermostat_bridge.py

Build and Test

Instructions for building and testing go here.