pyoe2-craftpath 0.5.1

A tool for Path of Exile 2 to find the best craftpaths based on the categories: *most likely, most efficient and cheapest*, between a starting item and a target item.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
fn main() {
    #[cfg(feature = "python")]
    {
        let stub = match pyoe2_craftpath::py::stub_info() {
            Ok(s) => s,
            Err(e) => {
                eprintln!("Failed to obtain stub info: {:#?}", e);
                return;
            }
        };

        match stub.generate() {
            Ok(_) => println!("Stub generated successfully"),
            Err(e) => println!("{:#?}", e),
        }
    }
}