0
How do i make a python script run daily? (For android)
I know that I can do it on a PC via Task Scheduler. I have a script that scraps data from Web and sends it to emails at intervals. And I would like to do this at the convenience of my mobile device, so can anyone recommend me a python module or third party application to do this?
3 Réponses
+ 1
Shubham Tiwary Don't know.
Might be useful:(EDITED)
https://www.reddit.com/r/learnpython/comments/9rppru/on_android_phone_is_there_a_way_to_schedule_a/
+ 1
running scripts at a set interval is better done on a web server via cron jobs to execute your python scripts than running it on your device. that means you need to keep your computer / smartphone ON every single time it wants to run the script.
try hosting your script on
www.pythonanywhere.com
0
Samsil Arefeen Thanks, but not the answer I was looking for.