go-python
go-python copied to clipboard
naive go bindings to the CPython2 C-API
I was having issues building on OSX. Python is provided as a framework by Xcode, and has to be included as `#include "Python/Python.h"` as opposed to the expected in `#include...
Hi, I am trying to run the kw-args code in the tests folder. I ran `go build` which created the `kw-args` file. When I run `./kw-args` I get the error...
Hi, I faced the issue of too many open files while using go-python, the stack trace is as in: http://paste.fedoraproject.org/368271/63639845/ Please provide your valuable suggestions. Thanks, Anmol
Sorry! I do not understand it the same or not? https://github.com/limetext/gopy/tree/master/lib
As per the title; Is this possible here? I haven't really looked too deeply into this (yet) but if it's possible I think I'd like to have a go at...
Great library! Do you happen to have documentation/suggestions for the optimal way to deploy a library using go-python to users? Thanks!
The `CPython` API is using varargs a lot. _e.g.:_ https://docs.python.org/2/c-api/arg.html ``` c int PyArg_ParseTuple(PyObject *args, const char *format, ...); int PyArg_ParseTupleAndKeywords(PyObject *args, PyObject *kw, const char *format, char *keywords[], ...);...
$ go get github.com/sbinet/go-python # github.com/sbinet/go-python could not determine kind of name for C._gopy_PyDict_CheckExact could not determine kind of name for C.PyDict_GetItem could not determine kind of name for C.PyDict_GetItemString...
I did a "go get" of the project but this failed to compile for all the reasons that are documented in the README.md. So having got the Git clone, I...