python-fontconfig icon indicating copy to clipboard operation
python-fontconfig copied to clipboard

Suggest Using Python ctypes Instead

Open ldo opened this issue 6 years ago • 1 comments

Implementing a wrapper in C requires an awful lot of code. A pure-Python binding can cover more of the API using only a fraction of the code.

ldo avatar Sep 18 '19 01:09 ldo

It's true that implementing a wrapper in C requires an awful lot of code, and it's why this project is implemented in Cython.

I don't like ctypes because it still need a lot of code and I make mistakes easily with it. Instead I prefer the great cffi library.

lilydjwg avatar Sep 18 '19 04:09 lilydjwg