-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for all methods of all objects #6
Comments
@rreilink Can you give specific data types/methods that aren't supported? It's not very clear from the code/output. From my searching, the "unimplemented" data types are:
And the unimplemented functions are:
|
@rreilink I just pulled the changes you made over the weekend into master. So the list above is obviously outdated. Thanks for supporting this! |
Yes, currently arrays and similar and callbacks are the main (if not only) missing data types |
Can you point me to some resources that explain the process for developing python bindings like this? From the code I have bit of an understanding but I haven’t done this before so I’m not sure where to start. |
I am afraid the way how the code works in general is still to be documented (shame). I've created issue #8 , and I think it makes sense to work on that first (unless you are currently facing roadblocks for the GUI, just let me know in that case). Anyway, these are some points to get started: The basics of creating Python modules are given here: Python/C API and Extending and Embedding the Python Interpreter The code is generated from the template |
Currently, some methods of objects are not instantiated because the data type is not yet supported; full support for all methods is desired.
The text was updated successfully, but these errors were encountered: