![]() |
where to host my python script - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: where to host my python script (/thread-36334.html) |
where to host my python script - tomtom - Feb-08-2022 please which hosting is best for hosting python file? RE: where to host my python script - ndc85430 - Feb-09-2022 To be clear, what do you mean by "hosting" here? Do you mean some place that provides infrastructure to run your program? If so, what kind of program is it - what does it do? If not that, do you mean somewhere to keep your code, so others can get it, perhaps work on it or even if you're working by yourself, somewhere to keep the code for backup and version history? The latter is what version control is for, so you can look at Git and creating a repository on GitHub, say. If neither of these is what you mean by "hosting", please clarify. |