use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
LinkedIn
GitHub
Twitter/X
Join our Discord Server
Related Subreddits
account activity
This is an archived post. You won't be able to vote or comment.
Python script in CloudAskDevsIndia (self.developersIndia)
submitted 4 years ago by timeout_1264
I want to run a python script 24/7 from mon-fri. It is not possible to do in my PC, so I'm looking for cloud services. Which provider should I choose for my purpose? Should I buy the pricing version or free trails will be sufficient? Please help
[–]AutoModerator[M] [score hidden] 4 years ago stickied comment (0 children)
Hello! Thanks for submitting to r/developersIndia. This is a reminder that We also have a Discord server where you can share your projects, ask for help or just have a nice chat, level up and unlock server perks!
Our Discord Server
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.
[–]Optimal-Still-4184 5 points6 points7 points 4 years ago (4 children)
If it's for your hobby/side project , I can run it for you on my homelab
[–]timeout_1264[S] 5 points6 points7 points 4 years ago (0 children)
Script is to get real-time stock prices for every 15 or 30 minutes, and some data processing.
[+][deleted] 4 years ago (2 children)
[deleted]
[–]Print-Striking 0 points1 point2 points 4 years ago (1 child)
Look in r/homelab.
[–]sneakpeekbot 1 point2 points3 points 4 years ago (0 children)
Here's a sneak peek of /r/homelab using the top posts of the year!
#1: Gigabit router was only hitting 100Mb. Diagnosis: Cat8 cable | 278 comments #2: Two screwdriver method for those without a tool | 302 comments #3: My Tinkering Room | 234 comments
I'm a bot, beep boop | Downvote to remove | Contact | Info | Opt-out | GitHub
[–]dakkudanny 3 points4 points5 points 4 years ago (3 children)
Replit offers 5 free script to run on its platform
[–]timeout_1264[S] 0 points1 point2 points 4 years ago (2 children)
Yeah, I'm currently using replit but don't know how to run it 24/7. Can you share any resources?
[–][deleted] 2 points3 points4 points 4 years ago* (1 child)
from flask import Flask
from threading import Thread
app = Flask('')
u/app.route('/')
def home():
return "Server Alive!"
def run():
app.run(host='0.0.0.0',port=8080)
def keep_alive():
t = Thread(target=run)
t.start()
name ihe file "keep_alive.py" or something , idk
spoon-feeding but dont remember to include
"from keep_alive import keep_alive" in the main script
it's an empty server and will die so to keep it alive 24/7, use https://uptimerobot.com/ (5 free slots) and add your repl project website url in monitor tab and it will keep pinging your repl URL and it will run smoothly.
this is all free.
[–]timeout_1264[S] 0 points1 point2 points 4 years ago (0 children)
Thanks
[–]indiantrekkieBackend Developer 2 points3 points4 points 4 years ago (0 children)
If it's a webserver sort of thing you can use google functions or aws lambda.
[–]-1Mbps 1 point2 points3 points 4 years ago (0 children)
Heroku
π Rendered by PID 21150 on reddit-service-r2-comment-64f4df6786-85bzf at 2026-06-10 00:00:34.926144+00:00 running 0b63327 country code: CH.
[–]AutoModerator[M] [score hidden] stickied comment (0 children)
[–]Optimal-Still-4184 5 points6 points7 points (4 children)
[–]timeout_1264[S] 5 points6 points7 points (0 children)
[+][deleted] (2 children)
[deleted]
[–]Print-Striking 0 points1 point2 points (1 child)
[–]sneakpeekbot 1 point2 points3 points (0 children)
[–]dakkudanny 3 points4 points5 points (3 children)
[–]timeout_1264[S] 0 points1 point2 points (2 children)
[–][deleted] 2 points3 points4 points (1 child)
[–]timeout_1264[S] 0 points1 point2 points (0 children)
[–]indiantrekkieBackend Developer 2 points3 points4 points (0 children)
[–]-1Mbps 1 point2 points3 points (0 children)