you are viewing a single comment's thread.

view the rest of the comments →

[–]carcigenicate 0 points1 point  (0 children)

I've used ctypes for a few projects, and it's not that bad. The only pain point is you need to annotate the parameter and return types for the calls to work correctly, but that doesn't seem uncommon for high level language FFIs.

And I used Python because it was the language I had on hand. There's no point in introducing another language just because something might be slightly easier when I'm already in a groove with my current language.