# py-runner
Simple tool that allows you to execute Python code from Rust.
```rs
let sum = project1.action(|_, module| module.call_method1("add", (1, 2))?.extract::<i64>()).unwrap();
let module1 = PythonModule::new_module(Path::new("./my-module")).unwrap();