how to run python script 24/7 and best site?

Oracle is known to be a douche to terminate free accounts with no rhyme or reason so there is that.
That's always expected with such free accounts that's why I mentioned:
Remember to backup your site because you never know when the freebie might end, although it's advertised as lifetime.

Still it's worth giving a try since I have been using it for 8 months now and OP wants to run for 2 months.
 
Oracle is known to be a douche to terminate free accounts with no rhyme or reason so there is that.
I need to run multiple python scripts. They are not at all complex. Just simple posting stuff 24/7. I have a vps, currently running them in vscode, but i fear they may get shut down. Do you have a better alternative?
How about replit? Heard its a cloud server to run scripts, but i couldn't figure out how many scripts i can run with the hacker package.
 
Spin a $5 Digital Ocean droplet and run scripts 24/7.

Thats what I do for all my scripts. (PHP,Python and Node)
 
I need to run multiple python scripts. They are not at all complex. Just simple posting stuff 24/7. I have a vps, currently running them in vscode, but i fear they may get shut down. Do you have a better alternative?
How about replit? Heard its a cloud server to run scripts, but i couldn't figure out how many scripts i can run with the hacker package.
Like I said, look into containerising the scripts with docker. They will work wonderfully. If you don’t know how to do it yourself, perhaps hire a devop to do it for you. Should be an easy job for them.
 
scripts are very simple. just posting on some insta profiles 24/7.

which vps you recommend? or a cloud service is good like replit and all
i would bitlaunch. pay per minute with crypto, massive selection, if you dont like your chosen setup/os just destroy it and spin up a new one. aggregates multiple providers like vultr, linode, etc

highly recommend (im not affiliated with them i just was overly impressed)
 
I run python scripts via the dos prompt in windows server vps via rdp. Hoping to migrate to linux when I get a bit more clued up, but for the moment, a windows machine for running them works just as well as anything I could hope for really.
 
I run python scripts via the dos prompt in windows server vps via rdp. Hoping to migrate to linux when I get a bit more clued up, but for the moment, a windows machine for running them works just as well as anything I could hope for really.
Can u run multiple scripts with it? is yes, how?
 
Python has quickly become one of the world’s most popular programming languages
 
Use a VPS. Almost all of these services give you free credit when you first sign up. AWS, Microsoft and DigitalOcean all give you $200 to play with.
 
I need to run multiple python scripts. They are not at all complex. Just simple posting stuff 24/7. I have a vps, currently running them in vscode, but i fear they may get shut down. Do you have a better alternative?

Just get any linux VPS, install python and the packages you need, then run "nohup python script_name.py &", this will run the in the background, even if you close the ssh connection. You can use the command "ps xw" to see running tasks. If you want to close a program just do "kill task_id"
 
Back
Top