
cpyquickhelper: python + C++ in different waysΒΆ


Links: github, documentation, cpyquickhelper: python + C++ in different ways, blog
This library explores various technics to use C or C++ functions in Python. The code shows examples on how to link with pybind11 or cython, how to call BLAS or LAPACK function from cython code available through scipy. It also implement an event profiler based on the direct Python API (see EventProfiler).
The following links mixing C and Python may be useful: Extending Python with C or C++, Building C and C++ Extensions with distutils.
Interesting features:
edit_distance_string
,
PyCContainer
,
get_simd_available_option
,
check_speed
,
measure_time
,
EventProfiler
.