You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
job_name would be the name of the C function, and possibly also its file. converters would be a list of functions to convert the given Python object to a cffi object or similar.
This would probably be easiest with cython, but I don't, as of yet, know how.
If this does work, a similar API should be provided for other languages that can interact with Python or be called from C. I know you can do go, and I'm fairly sure rust would work if C does
The text was updated successfully, but these errors were encountered:
I think I have something similar to this working in the cython branch. It's not quite the same, and it would have problems if you needed to include any .c files, but it's at least partial support.
Full support would need to build an actual C extension, either using Cython or the standard C API. This is a good first step, though. If I can find a way to compile at runtime with a .c file, then that would be the way to go.
Potential API could be:
job_name
would be the name of the C function, and possibly also its file.converters
would be a list of functions to convert the given Python object to a cffi object or similar.This would probably be easiest with cython, but I don't, as of yet, know how.
If this does work, a similar API should be provided for other languages that can interact with Python or be called from C. I know you can do go, and I'm fairly sure rust would work if C does
The text was updated successfully, but these errors were encountered: