Run a HA script from AppDaemon

Hello,

Is it possible to execute a Home Assistant script from AppDaemon?
I currently have already a script in HA which I’d rather not rewrite in AppDaemon as it is also used within HA.
Thanks in advance!

Yes, you can. Just call a service to run the script something like this:

self.turn_on("script.name_of_script")

1 Like