Python/C API Introduction

Опубликовано: 17 Апрель 2026
на канале: SolidusCode
19,776
171

This video explain introductory concepts used in mixing python with C/C++. Using Python and C/C++ is beneficial because you can use the performance of C/C++ with the convenience and speed of development of Python

You can extend Python by writing sets of wrapper functions that can be made available to Python using modules extender. Also, you can embed python in a C/C++ application.

I discuss Python/C API naming conventions, Object typing and reference counting, and also how python handles exceptions in C/C++.