[Solved] Python performance [closed]
I made a great experience with Cython (Another thing than CPython…). You can make plain C code out of your program, compile it to an extension and just run it from another Python file. See this question from me for more information on building an extension including numpy: How to create a .pyd file?. Sample: … Read more