Top "Cython" questions

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

Writing a Python extension in Go (Golang)

I currently use Cython to link C and Python, and get speedup in slow bits of python code. However, I'd …

python c go cython
Make distutils look for numpy header files in the correct place

In my installation, numpy's arrayobject.h is located at …/site-packages/numpy/core/include/numpy/arrayobject.h. I wrote a trivial …

python numpy distutils cython
Using Cython To Link Python To A Shared Library

I am trying to integrate a third party library written in C with my python application using Cython. I have …

python c linker cython distutils
Cython compiled C extension: ImportError: dynamic module does not define init function

I have just compiled part of my C library as an extension using Cython, as a "proof of concept". I …

python cython python-extensions
Idiomatic way to do list/dict in Cython?

My problem: I've found that processing large data sets with raw C++ using the STL map and vector can often …

c++ python c cython
How to compile .c code from Cython with gcc

Now that I've successfully installed Cython on Windows 7, I try to compile some Cython code using Cython, but gcc makes …

python c gcc compilation cython
Cython Numpy warning about NPY_NO_DEPRECATED_API when using MemoryView

I am converting a Cython memoryview to a numpy array (to be able to use it in pure Python code): …

python numpy cython memoryview
Eclipse pydev warning - "Debugger speedups using cython not found."

I get this warning while running a python program (some basic web automation using selenium): warning: Debugger speedups using cython …

eclipse python-3.x cython pydev
Using a dictionary in Cython , especially inside nogil

I am having a dictionary, my_dict = {'a':[1,2,3], 'b':[4,5] , 'c':[7,1,2]) I want to use this dictionary inside a Cython nogil …

python cython gil
Wrap C++ lib with Cython

I'm new to Cython and I'm trying to use Cython to wrap a C/C++ static library. I made a …

python cython