|
|
||
|---|---|---|
| .circleci | ||
| .github | ||
| examples | ||
| script | ||
| tests | ||
| .gitignore | ||
| CONTRIBUTING.md | ||
| Gopkg.lock | ||
| Gopkg.toml | ||
| LICENSE | ||
| LICENSE-3rdparty.csv | ||
| README.md | ||
| boolean.go | ||
| boolean_test.go | ||
| byte_array.go | ||
| byte_array_test.go | ||
| bytes.go | ||
| bytes_test.go | ||
| complex.go | ||
| complex_test.go | ||
| dict.go | ||
| dict_test.go | ||
| errors.go | ||
| errors_test.go | ||
| exceptions.go | ||
| exceptions_test.go | ||
| float.go | ||
| float_test.go | ||
| helper.go | ||
| high_level_layer.go | ||
| high_level_layer_test.go | ||
| import.go | ||
| import_test.go | ||
| integer.go | ||
| integer_test.go | ||
| lifecycle.go | ||
| lifecycle_test.go | ||
| list.go | ||
| list_test.go | ||
| macro.c | ||
| macro.h | ||
| module.go | ||
| module_test.go | ||
| object.go | ||
| object_test.go | ||
| recursion.go | ||
| recursion_test.go | ||
| reflection.go | ||
| reflection_test.go | ||
| sys.go | ||
| sys_test.go | ||
| thread.go | ||
| thread_test.go | ||
| tuple.go | ||
| tuple_test.go | ||
| type.c | ||
| type.go | ||
| type.h | ||
| type_test.go | ||
| unicode.go | ||
| unicode_test.go | ||
| variadic.c | ||
| variadic.h | ||
| warning.go | ||
| warning_test.go | ||
README.md
go-python3
Golang bindings for the C-API of CPython-3.
This package provides a go package named "python" under which most of the
PyXYZ functions and macros of the public C-API of CPython have been
exposed. Theoretically, you should be able use https://docs.python.org/3/c-api
and know what to type in your go program.
Currently supports python-3.7+
Install
Simply go get github.com/DataDog/go-python3
Build
We will need pkg-config and a working python3 environment to build these bindings. By default pkg-config will look at the python3 library so if you want to choose a specific version just symlink python-X.Y.pc to python3.pc or use the PKG_CONFIG_PATH environment variable.
API
Some functions mix go code and call to Python function. Those functions will
return and int and error type. The int represent the Python result code
and the error represent any issue from the Go layer.
Example:
func PyRun_AnyFile(filename string) open filename and then call CPython API
function int PyRun_AnyFile(FILE *fp, const char *filename).
Therefore its signature is func PyRun_AnyFile(filename string) (int, error),
the int represent the error code from the CPython PyRun_AnyFile function
and error will be set if we failed to open filename.
If an error is raise before calling th CPython function int default to -1.