Is there a free VPS for this job?

graham25s

Power Member
Joined
May 8, 2010
Messages
755
Reaction score
186
Hey Guys,

Is there such a thing as a free windows VPS deal going about? (I'm not tight with money in case that is what you are thinking lol)

The reason is I have a python script I need to keep running 24/7, it actions very rarely when it does it opens a selenium browser to perform an action, currently paying $17 per month for a VPS which seems overkill for what I need it for.

cheers guys

Graham
 
tbh that is a pretty good deal

Most of their VPS' are cheap, so good for scripts that always need to run, but don't need any actual real stats behind whatever they're running.
 
Hey Guys,

Is there such a thing as a free windows VPS deal going about? (I'm not tight with money in case that is what you are thinking lol)

The reason is I have a python script I need to keep running 24/7, it actions very rarely when it does it opens a selenium browser to perform an action, currently paying $17 per month for a VPS which seems overkill for what I need it for.

cheers guys

Graham
Here's a better alternative than running a vps for tasks. Use a serverless function.

Instead of paying for a vps 24/7 just for a script sitting around and occasionally running it. You can deploy it on a serverless function like AWS Lambda.

You will instead be billed by the number of executions and cpu time/memory/epheremal storage per cpu second.

If you can give an estimate of how long will the script run for when running an action (1s to 10s) and how much memory it will likely consume. I can give you a better estimate.

I have seen people fitting chromedrivers and their source code into Lambda functions for scraping tasks, if yours can fit. It might as well be a very viable option.

Also, AWS has a free tier for Lambda which is very generous.

Also you don't need a windows vps just to run a python selenium script. Windows vps are expensive af. You can get a Linux machine from Hetzner for like 5$ a month.

AWS also has a vps in their free tier for like 6 months. That too is a Linux only t3 micro instance.
 
Back
Top