A cross-platform tool that converts Python code to Rust. You see type information, ownership choices, and unsupported syntax as you review the output.
Visit the releases page to get the latest version.
Code Convert Helper CLI is a command-line tool that takes a subset of Python and turns it into Rust code. It does not just translate. It shows you the type information, ownership choices, and any syntax it cannot convert. This gives you control over the final Rust code.
If you have Python scripts you want to move to Rust, this tool helps you see what the Rust version would look like. You can check the output and make changes before you use the code.
i32) and ownership (like fn add(a: i32, b: i32) -> i32). It also tells you if something (like Python's print) is not supported.
Follow these steps to get the tool on your Windows computer. You do not need to install anything else.