Python Forum
Free server environment to test python capabilities on networking etc - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: News and Discussions (https://python-forum.io/forum-31.html)
+--- Thread: Free server environment to test python capabilities on networking etc (/thread-27398.html)



Free server environment to test python capabilities on networking etc - Emekadavid - Jun-05-2020

Good morning. Please, the computer I am using is not a server and learning python, I see that it has a lot of capabilities that requires a server. Please, can someone recommend me a free online server, possibly, a cloud server, that I can use to be practicing my networking and other skills that I am learning from python. I will much appreciate it.
As a noob, I am ready to learn new things to up my skills.
Thanks.


RE: Free server environment to test python capabilities on networking etc - Larz60+ - Jun-05-2020

It would be helpful if you could explain a bit more what you are trying to do.
It is possible for you to set up various servers on your own computer so that you can keep your work local.
Not saying that this is an option in your case, but likely.


RE: Free server environment to test python capabilities on networking etc - Emekadavid - Jun-05-2020

My system is old. I don't think installing a server op sys is a good option. I want something I can do over the net. That way I will really be simulating a live working environment.


RE: Free server environment to test python capabilities on networking etc - DeaD_EyE - Jun-05-2020

You can run Python locally on your Computer.

The term server is not well-defined. It could mean hardware or software.
Related to hardware: expensive, 24/7 usage, fail safe
Related to software: some kind of software, which offers a kind of service

Even on your old system Python will run.
Python3 runs on my Raspberry Pi Zero W which has 512 MB RAM and a 1GHz ARMv6 CPU.
It's enough memory to run dnsmasq, nginx, fastapi (Python3), wifi-control via GPIO-Switch, tty data logger
with a sqlite3 database and some other services. It's even possible to create in memory a Graph and display it on a website.

I guess your system is not the problem.