Flask integration #6529
-
For my front end I just use html and css and use the Flask Python package for backend, the QuickStart has an html, css, and JavaScript tutorial, is there any way I could implement Flask for Tauri? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Only in an indirect way. You could bundle your flask app using something like pyinstaller or pyoxidizer and then use tauri's sidecar feature to include it in your app https://tauri.app/v1/guides/building/sidecar/ |
Beta Was this translation helpful? Give feedback.
-
I came across this discussion while searching through Tauri's issues (I know this discussion is from a year ago, but I couldn't resist answering). |
Beta Was this translation helpful? Give feedback.
Only in an indirect way. You could bundle your flask app using something like pyinstaller or pyoxidizer and then use tauri's sidecar feature to include it in your app https://tauri.app/v1/guides/building/sidecar/