### Compiling Single Pyx File with easycython Executable - Shell Source: https://github.com/cjrh/easycython/blob/master/README.rst Compiles a single Cython `.pyx` file using the `easycython` executable installed via pip. This is the standard way to use the tool after installation. It requires `easycython` to be in the system's PATH. The input is the name of the `.pyx` file. ```Shell easycython myext.pyx ``` -------------------------------- ### Displaying easycython Help - Shell Source: https://github.com/cjrh/easycython/blob/master/README.rst Displays the command-line interface help message for the `easycython` tool. This output details the available positional arguments (filenames) and optional flags like `--annotation` and `--numpy-includes`, along with their default values. Requires `easycython` to be installed and in the system's PATH. ```Shell easycython -h ``` -------------------------------- ### Compiling Single Pyx File with Python Script - Shell Source: https://github.com/cjrh/easycython/blob/master/README.rst Compiles a single Cython `.pyx` file by directly executing the `easycython.py` script using the Python interpreter. This method requires the `easycython.py` script to be accessible and Python to be installed. The input is the name of the `.pyx` file to be compiled. ```Shell python easycython.py myext.pyx ``` -------------------------------- ### Compiling Multiple Pyx Files with easycython - Shell Source: https://github.com/cjrh/easycython/blob/master/README.rst Compiles all Cython `.pyx` files located in the current directory using the `easycython` executable and a wildcard. This command simplifies compiling multiple source files at once. Requires `easycython` to be installed via pip and in the system's PATH. ```Shell easycython *.pyx ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.