How to use Cython to create Python wrappers for C libraries

preview_player
Показать описание
Cython makes it easy to create C extensions for Python, using the Python syntax you already know. It also lets you create convenient Python wrappers for C libraries using their header files. Learn in this video how to create Python function bindings to a C library, by writing a Cython module and using its external function binding syntax.

------------------------------­----
Рекомендации по теме
Комментарии
Автор

I'm wondering, what causes the overhead in ctypes?

undeadpresident
Автор

In this example what does the Dll1.h look like?

DCode