-
I know this may seem like a silly question, but as I know Python well, while Golang probably isn't in my near future, why was the Python version deprecated? Does @gekigek99 just prefer Go? Also, where can I find said deprecated Python version? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It was a problem for quality of code, velocity of developement and efficiency during execution:
i would not say that... python is great to develop extremely complex things with 2 lines of code and there is a ton of documentation on how to do anything... but golang being compiled it's faster and it helps a lot in the development (if the grammar checking in vscode passes, you are sure that your variables are set up correctly.... in python you might find yourself comparing an int and a string without noticing (silly example but it's kinda true)) one thing that I miss in golang are stucts and relative methods which are a pain to implement but it's not that of a problem since msh only manages 1 server at a time... ah and sometimes python has some more complex configs more easily accessible (think about the tcp package))
you can check the deprecated python version here (beware that in since then a lot of things have been improved ;) ) |
Beta Was this translation helpful? Give feedback.
It was a problem for quality of code, velocity of developement and efficiency during execution:
i would not say that... python is great to develop extremely complex things with 2 lines of code and there is a ton of …