Versions goPy: 0.8.0 gccgo: 4.7.3 CPython: 2.7 Related links Go Python A simple example This is very simple example that just shows calling a function implemented in Go from Python. Let's say the we have the following code in pymodule.go: package simple import ( "fmt" "gopy" ) func example(args *py.Tuple) (py.Object, error) { fmt.Printf("simple.example: %v\n", args) py.None.Incref() return py.None