I tried below code to run my subprocess after 1 minute
process = Popen(['python3','helloworld.py','|','at -m now +1 minute'], stdout=PIPE, stderr=PIPE)
I run above line from terminal..it is executing immediately but not after 1 minute. How to set a particular time to RUN..
how to run subprocess at a given time python.
Please help me.