Issue
I’m kind of new to programming so sorry if this sounds like a dumb question. I would like to know whether or not I can run a script 24/7 in the thonny ide. The script basically just collects data from a website and prints it.
Solution
Thonny is just an IDE, you dont need it for "production" runs. You should make it executable then run it with nohup. Check out this post for more details! https://askubuntu.com/questions/396654/how-to-run-a-python-program-in-the-background-even-after-closing-the-terminal (Check the top answer)
Answered By - Reza Bagheri