how to use cython generated .so file in go

Viewed 37

I want to use some python libraries and some python logic independent from python (say for distribution), this could be run in golang(preferably). So far I have created .c and .so file from a python file, using cython and gcc compiler.

Next how do I use this .so file in golang and will I be able to use those python libraries imported in the python file?

0 Answers
Related