Use this tag for questions about the compilation of python extension modules based on cython using "cythonize". Use the more generic [cython] tag if the question isn't about the actual compilation process.
The cythonize function can be imported from Cython.Build and is used to compile cython extensions for python. It is responsible for compiling the .pyx (cython files) to .c files.
The cython "Compilation" documentation contains several examples how to include cythonize in the build process for python modules.