Tauri binding for Python through Pyo3
11–20 of 61 posts
Re: Tauri binding for Python through Pyo3
#12I don't understand why people like Tauri - the fact it uses the system web browser completely destroys the main advantage of Electron: that you can test it locally and be absolutely sure that it will render like that on any other system since the browser is shipped with it.
Re: Tauri binding for Python through Pyo3
#13Re: Tauri binding for Python through Pyo3
#14Interesting how much cross-pollination is happening in the Python ecosystem with Rust. I think the NiceGUI example is good but quite advanced, might be beneficial to contact the teams from Reflex or FastHTML, because if you could use PyTauri to create potential local apps with those popular frameworks, it could be a big win for them and that can help with marketing around the project.
Re: Tauri binding for Python through Pyo3
#15Since Tauri is just a thin wrapper over the system webview, what's the point of having a wrapper over a wrapper? I don't think the Python ecosystem was lacking in browser wrappers up till now.
That is very complicated if you take into account also Linux, Windows, iOS, MacOS, Android support, and related utilities like tray icon, etc. There are other efforts, too, but they are also wrappers. Like this C/C++ implementation https://github.com/webview/webview that targets only desktop operating systems.
Re: Tauri binding for Python through Pyo3
#16Since Tauri is just a thin wrapper over the system webview, what's the point of having a wrapper over a wrapper? I don't think the Python ecosystem was lacking in browser wrappers up till now.
Re: Tauri binding for Python through Pyo3
#17So why can't Python call system WebView directly? Is passing through layers of Rust really needed here?
Re: Tauri binding for Python through Pyo3
#18I don't understand why people like Tauri - the fact it uses the system web browser completely destroys the main advantage of Electron: that you can test it locally and be absolutely sure that it will render like that on any other system since the browser is shipped with it.
Re: Tauri binding for Python through Pyo3
#19Re: Tauri binding for Python through Pyo3
#20What is Tauri?