Top "Cython" questions

Cython is a superset of the Python language for quickly generating Python C extensions.

Check if a value exists in an array in Cython

I want to know how to check if a value or a object exists in an array, like in python: …

c arrays cython
Cython: "fatal error: numpy/arrayobject.h: No such file or directory"

I'm trying to speed up the answer here using Cython. I try to compile the code (after doing the cygwinccompiler.…

python windows-7 numpy cython
Cannot open include file: 'io.h': No such file or directory

I was trying to compile a simple .pyx file using Cython. print("hello") Here's my setup.py: from distutils.core …

python cython
Wrapping a C library in Python: C, Cython or ctypes?

I want to call a C library from a Python application. I don't want to wrap the whole API, only …

python c ctypes cython
Compile main Python program using Cython

I have a Python2.6 program that can load Python modules compiled to .so files using Cython. I used Cython to …

python cython
Compiling with cython and mingw produces gcc: error: unrecognized command line option '-mno-cygwin'

I'm trying to compile a python extension with cython in win 7 64-bit using mingw (64-bit). I'm working with Python 2.6 (Active …

python mingw distutils cython
Use Cython as Python to C Converter

I have huge Python modules(+8000 lines) .They basically have tons of functions for interacting with a hardware platform via serial …

python c cython
Running Cython in Windows x64 - fatal error C1083: Cannot open include file: 'basetsd.h': No such file or directory

I have been trying to install Cython for Python 2.7 on my Window 7 system. In particular, I prefer everything in 64 bits. (…

python windows python-2.7 cython python-extensions
How to tell distutils to use gcc?

I want to wrap a test project containing C++ and OpenMP code with Cython, and build it with distutils via …

python compiler-errors cython distutils
Calling C functions in Python

I have a bunch of functions that I've written in C and I'd like some code I've written in Python …

python c ctypes cython