About 2,310,000 results
Open links in new tab
  1. python - Making an executable in Cython - Stack Overflow

    Been playing with cython. Normally program in Python, but used C in a previous life. I can't figure out how to make a free-standing executable. I've downloaded cython, and I can make a .pyx …

  2. Compile main Python program using Cython - Stack Overflow

    Feb 24, 2011 · I have a Python2.6 program that can load Python modules compiled to .so files using Cython. I used Cython to compile the .py modules to .so files and everything works fine. …

  3. Wrapping a C library in Python: C, Cython or ctypes?

    Dec 22, 2009 · With Cython, OTOH, you're completely free to make the wrapping and calling code as thin or thick as you want. You can start with simple calls into your C code from regular …

  4. decompile cython extension back to python - Stack Overflow

    Feb 25, 2022 · However I have doubts if some python developer can crack that cython module to hack the code. Question is, can someone decompile them back to python or other readable …

  5. python - Cython: (Why / When) Is it preferable to use Py_ssize_t …

    Jan 8, 2014 · Py_ssize_t is a typedef used internally in the implementation of CPython (the C implementation of Python - I'm not talking about Cython there, I'm talking about CPython). It's …

  6. Python vs. CPython - Stack Overflow

    Jun 16, 2013 · Cython is a compiled language as it generates C code and gets compiled by C compiler. We can write similar code in Cython as in default python or CPython, the differences …

  7. Numba code much faster than cython alternative - Stack Overflow

    Jun 30, 2022 · When Cython is slower, it's probably due to type conversions, and possibly exacerbated by a lack of type annotations. Also, if you use C data structures in Cython, that'll …

  8. cython issue: 'bool' is not a type identifier - Stack Overflow

    Jul 15, 2014 · cython issue: 'bool' is not a type identifier Asked 11 years, 3 months ago Modified 3 years, 4 months ago Viewed 47k times

  9. python - Cython: "fatal error: numpy/arrayobject.h: No such file or ...

    Apr 14, 2015 · I'm trying to speed up the answer here using Cython. I try to compile the code (after doing the cygwinccompiler.py hack explained here), but get a fatal error: …

  10. ImportError: No module named Cython.Distutils - Stack Overflow

    Jun 20, 2012 · I'm having a strange problem while trying to install the Python library zenlib, using its setup.py file. When I run the setup.py file, I get an import error, saying ImportError: No …