About 2,300,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. 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 …

  3. 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. …

  4. 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 …

  5. python - Cython does not build .so file - Stack Overflow

    Oct 22, 2021 · Cython does not build .so file Asked 4 years ago Modified 1 year, 9 months ago Viewed 2k times

  6. python - AttributeError: cython_sources - Stack Overflow

    Nov 15, 2023 · Cython rather than Cypthon? Cython is not a culprit in itself, it's the reluctancy of PyYAML to support Cython 3, which was announced years in advance, and which is now very …

  7. 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 …

  8. pyproject.toml and cython extension module - Stack Overflow

    Sep 21, 2022 · For me it is working doing how they suggest in the Cython documentation and in the setuptools documentation. Adding cython as dependency in the requires list, was the only …

  9. Can nuitka/cython programs be reversed technically

    May 8, 2025 · As is known to all, Nuitka and Cython compiles Python bytecodes to C/C++. Technically, can Python applications nuitka/cython programs be reversed?

  10. python - setup_requires with Cython? - Stack Overflow

    I'm creating a setup.py file for a project with some Cython extension modules. I've already gotten this to work: from setuptools import setup, Extension from Cython.Build import cythonize setup(...