Those are my blogs

and also my life

Python | Using ctypes to access C code from Python.

2020-04-10 Pyhon C ctypes

This blog introduce how to use ctypes to access C code from Python. 1 C code Here, we use the same C code as my previous blog: #include <math.h> ... Read More

Python | Make a Python C Extension Module Using Python/C API.

2020-04-05 Pyhon C Python/C API Package

This blog introduce how to make a Python C extension module by using Python/C API. The demo package used here can be found on my Github repository. 1 ... Read More