Pretty cool, especially the potential for using python as a scripting language embedded in rust programs. That said, python makes me wince.
RustPython
11–20 of 244 posts
Re: RustPython
#12Re: RustPython
#13I think it's really cool that Python has a healthy third-party interpreter community. PyPy, IronPython, Jython, and now RustPython expand Python's accessibility. It's very cool to see how many people are working on this, and I wonder what kind of problems with CPython this has exposed also.
I wonder if anyone actually uses those third-party interpreters for anything serious. I've never come across anyone that did.
Re: RustPython
#14Pretty cool, especially the potential for using python as a scripting language embedded in rust programs. That said, python makes me wince.
Re: RustPython
#15Pretty cool, especially the potential for using python as a scripting language embedded in rust programs. That said, python makes me wince.
I was recently looking for some ways to make a rust project dynamically configurable. Yaml/toml/etc are too static or are terrible to describe logic in (yet we do it all the time for CI, infra etc, ugh). WASM would be an option, but overengineered for my case. Ruby (through Artichoke), or Python (through RustPython); but they come with the downside of introducing Ruby or Python. I haven't decided yet, but would prefe…
Re: RustPython
#16Re: RustPython
#17There are so many cases where you'd rather not give extension scripts unlimited access to the OS and file system, you'd think this option would be more common...
Re: RustPython
#18I think it's really cool that Python has a healthy third-party interpreter community. PyPy, IronPython, Jython, and now RustPython expand Python's accessibility. It's very cool to see how many people are working on this, and I wonder what kind of problems with CPython this has exposed also.
I wonder if anyone actually uses those third-party interpreters for anything serious. I've never come across anyone that did.
Re: RustPython
#19Pretty cool, especially the potential for using python as a scripting language embedded in rust programs. That said, python makes me wince.
O lord of the compiler, lend us thine wisdom.
Re: RustPython
#20Pretty cool, especially the potential for using python as a scripting language embedded in rust programs. That said, python makes me wince.
I was recently looking for some ways to make a rust project dynamically configurable. Yaml/toml/etc are too static or are terrible to describe logic in (yet we do it all the time for CI, infra etc, ugh). WASM would be an option, but overengineered for my case. Ruby (through Artichoke), or Python (through RustPython); but they come with the downside of introducing Ruby or Python. I haven't decided yet, but would prefe…
https://crates.io/crates/duckscript
You can use the above links to browse crate "dependents", that is other crates using these dependencies if you are looking for example usage.