How do i make a python script run daily? (For android) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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?

31st Jul 2020, 11:42 AM
Shubham Tiwary
Shubham Tiwary - avatar
3 Answers
31st Jul 2020, 11:46 AM
The future is now thanks to science
The future is now thanks to science - avatar
+ 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
31st Jul 2020, 1:06 PM
Shen Bapiro
Shen Bapiro - avatar
0
Samsil Arefeen Thanks, but not the answer I was looking for.
31st Jul 2020, 11:51 AM
Shubham Tiwary
Shubham Tiwary - avatar