Python Forum

Full Version: from golang to python
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i got a bunch of code in the Go language. i don't really want to learn (much) Go. this code makes heavy use of SOAP/XML. i am wondering if there are tools around that could translate much of it to Python (version 3, since version 2 passed away, recently, after a prolonged illness)
Hmmm I don’t know of any tools... but you really need to get a good understanding of what exactly the programs do before trying to translate them. Go makes it easy to write code that does stuff in parallel involving inter process communication and if the developer has made use of those capabilities it can be anything but a straightforward effort to move it to another language.