added ha-python scripts

This commit is contained in:
Bruno J. 2025-07-03 15:55:04 +00:00
parent a92815bd2e
commit 5a5db043a9

23
Template-YT.py Normal file
View File

@ -0,0 +1,23 @@
import requests
# Home Assistant Einstellungen
HASS_URL = "http://IP_ADRESSE:8123/api/services/switch/toggle" # oder auch /light/toggle, usw
TOKEN = "API Token von Home Assistant"
# Service-Daten (zum Beispiel, um eine Licht zu schalten)
data = {
"entity_id": "switch.template" # oder auch light.licht
}
# HTTP-Anfrage an Home Assistant senden
headers = {
"Authorization": f"Bearer {TOKEN}",
"Content-Type": "application/json",
}
response = requests.post(HASS_URL, headers=headers, json=data)
if response.status_code == 200:
print("Erfolgreich ausgeführt!")
else:
print(f"Fehler: {response.status_code}")