Ask HN: Real world examples of interaction between Python and Go?
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?
4 comments
[ 3.1 ms ] story [ 144 ms ] threadGo 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.
Well, I guess is time to learn Python