usepyo3::prelude::*;/// Formats the sum of two numbers as string.
#[pyfunction]fnhello_from_konfy()->PyResult<String>{Ok(String::from("Hello from Konfy"))}/// A Python module implemented in Rust.
#[pymodule]fnkonfy(m:&Bound<'_, PyModule>)->PyResult<()>{
m.add_function(wrap_pyfunction!(hello_from_konfy, m)?)?;Ok(())}