|
|
|
Ask HN: Real world examples of interaction between Python and Go?
|
|
6 points
by wareotie
3127 days ago
|
|
My manager allows me to use some of my time on personal projects so I started a library for an internal tool. More as a learning project that anything else, but now, it seems is useful for other people. The thing is, the library is completely written in Go and I would like to use it as a Python library. I found a few blog posts but I cannot find real world examples of libraries written in Go but been use from Python and I feel a little lost. Anyone knows public repos like this? |
|
Go objects needed to be managed C style: internally Go thing had a map between integer identifier and object, and Python just got the integer identifier and had to manually tell Go code to deallocate.