-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
68 lines (53 loc) · 1.1 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package main
import (
"fmt"
"github.com/sbinet/go-python"
)
func init() {
if err := python.Initialize(); err != nil {
panic(err)
}
m := python.PyImport_ImportModule("sys")
if m == nil {
panic("import error")
}
path := m.GetAttrString("path")
if path == nil {
panic("get path error")
}
currentDir := python.PyString_FromString("")
python.PyList_Insert(path, 0, currentDir)
}
var (
pyStr = python.PyString_FromString
goStr = python.PyString_AsString
pyInt=python.PyInt_FromLong
goInt=python.PyInt_AsLong
)
func list() {
m := python.PyImport_ImportModule("list")
if m == nil {
println("module not found")
return
}
persons := m.GetAttrString("list")
if persons == nil {
println("persons not found")
return
}
out := persons.CallFunction(pyInt(3))
if out == nil {
println("function not found")
return
}
size := python.PyList_Size(out)
for i := 0; i < size; i++ {
item := python.PyList_GET_ITEM(out, i)
name:=item.GetAttrString("name")
age:=item.GetAttrString("age")
fmt.Printf("golang: name's: %s, age: %d \n", goStr(name), goInt(age))
}
}
func main() {
list()
}