8 ms·
Can somebody eli5 how this works, or point me to some description? Let's say I'm pip installing it. How does the rust code turn into something that python can c
by buzzdenver 3y ago
Can somebody eli5 how this works, or point me to some description? Let's say I'm pip installing it. How does the rust code turn into something that python can call?
- steveklabnik 3y agoIt’s the same thing as when Python calls out to a module written in C. In this case they’re using https://crates.io/crates/pyo3 https://crates.io/crates/pyo3 to make the process easier.