将PyObjectRef强制转换为PyString

时间:2018-12-27 20:15:37

标签: rust pyo3

我有一个接受Python列表的函数。我希望列表由字符串组成。我如何提取它们?。

Arch Linux,Python 3.7,Night Night锈病1.33.0,pyo3 0.5.2。

fn f(list: &PyList) -> PyResult<SomeClass> {
    for obj in list.iter() {
        let rust_string = PyString::from_object(obj, "ASCII", "strict")?.to_string()?;
        // fails with `TypeError: decoding str is not supported`

        if PyString::is_exact_instance(obj) {
            let py_str: PyString = unsafe {std::mem::transmute(str)};
            let rust_str = py_str.to_string()?;
            // panics with failed assertion in PyString.as_bytes()
        }
    }
    ...
}

// Python call site
f(["string1", "string2"])

1 个答案:

答案 0 :(得分:0)

fn f(list: &PyList) -> PyResult<SomeClass> {
    for i in list.iter() {
        let mut str_2 = match i.extract() {
            Ok(val) =>{
                val
            },
            Err(why) => {
                panic!("{:}", why);
                String::new()
            }
        };
        
        println!("{}", str_2);
    }
    // ...
}

我猜这是导致解包不起作用的答案,并且python列表中可能包含数字,字符串甚至dict之类的任何对象。对于这种情况,故障保护将检查pyo3包含的每种数据类型。