serge-sans-paille / pythran

Ahead of Time compiler for numeric kernels
https://pythran.readthedocs.io
BSD 3-Clause "New" or "Revised" License
2.01k stars 193 forks source link

Awesome project! #1625

Closed fwsGonzo closed 4 years ago

fwsGonzo commented 4 years ago

I just want to give some praise where due: This project is amazing.

I am using it inside an emulated RISC-V emulator with a unique C++ environment. And now I can have Python syntax! The only thing I'm trying to figure out now is how to "import" C++ functions into Python.

Feel free to close this. : )

serge-sans-paille commented 4 years ago

I'll close this as WONT FIX as being awesome is probably something we want to keep :-)

Concerning using third-party C++ functions, the only way to do that is through ctypes and pycapsules, as described in this document:

https://pythran.readthedocs.io/en/latest/examples/Third%20Party%20Libraries.html