goPy는 Go 언어로 작성된 CPython 확장을 구현하는 새로운 오픈 소스 프로젝트입니다.
샘플 코드:
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, nil } func init() { methods := []py.Method{ {"example", example, "example function"}, } _, err := py.InitModule("simple", methods) if err != nil { panic(err) } }
컴파일 방법:
gopy pymodule.go
사용 방법:
간단한 가져오기
simple.example("hello", {123: True})
출력 결과:
simple.example: [hello map[ 123:true]]
github 오픈소스 프로젝트 주소: https://github.com/qur/gopy