i have this command which runs on the prompt:
echo "python setHeater.py" | at 16:30
how can i execute that from a Python program?
In my program i create a date, and concat that to a string, something like this
newtime = createnewtime()
commandToExecute = 'echo "python setHeater.py" | at ' + newtime
#and then here the code to actually run the command in the command environment