44This HACS custom integration allows you to write Python functions and
55scripts that can implement a wide range of automation, logic and
66triggers. State variables are bound to Python variables and services are
7- callable as Python functions, so it’ s easy and concise to implement
7+ callable as Python functions, so it' s easy and concise to implement
88logic.
99
1010Functions you write can be configured to be called as a service or run
@@ -16,7 +16,7 @@ as small programs that run in parallel, independently of each other, and
1616they could be active for extended periods of time.
1717
1818State, event and time triggers are specified by Python function
19- decorators (the “@” lines immediately before each function definition).
19+ decorators (the "@" lines immediately before each function definition).
2020A state trigger can be any Python expression using state variables - the
2121trigger is evaluated only when a state variable it references changes,
2222and the trigger occurs when the expression is true or non-zero. A time
@@ -30,7 +30,7 @@ Python trigger test based on the event data that runs the Python
3030function if true.
3131
3232Pyscript implements a Python interpreter using the ast parser output, in
33- a fully async manner. That allows several of the “ magic” features to be
33+ a fully async manner. That allows several of the " magic" features to be
3434implemented in a seamless Pythonic manner, such as binding of variables
3535to states and functions to services. Pyscript supports imports, although
3636by default the valid import list is restricted for security reasons
0 commit comments