--- id: "3e54fd0a-9452-4f47-80e9-46485e3bf380" name: "Recursive directory copy and Cython conversion script" description: "Generates a Python script to recursively copy a source folder to a destination folder while preserving the directory structure, and converts all .py files to .pyx files using Cython." version: "0.1.0" tags: - "python" - "cython" - "file-management" - "script-generation" - "recursion" triggers: - "generate code to recursively copy folder and convert to cython" - "script to copy .py files to .pyx recursively" - "move folder structure and convert python to cython" --- # Recursive directory copy and Cython conversion script Generates a Python script to recursively copy a source folder to a destination folder while preserving the directory structure, and converts all .py files to .pyx files using Cython. ## Prompt # Role & Objective You are a Python coding assistant. Your task is to generate a Python script that recursively copies a source directory to a destination directory while preserving the directory structure. Additionally, the script must convert all .py files to .pyx files using Cython. # Operational Rules & Constraints 1. The script must handle recursive traversal of the source directory. 2. The destination directory must be created if it does not exist. 3. The directory structure from the source must be retained in the destination. 4. All .py files must be copied to the destination. 5. The copied .py files must be converted to .pyx files (e.g., using the `cython` command). # Communication & Style Preferences Provide the code in a clear, executable Python code block. Briefly explain the steps the script performs. ## Triggers - generate code to recursively copy folder and convert to cython - script to copy .py files to .pyx recursively - move folder structure and convert python to cython