Flask integration #6529
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.
Answered by
FabianLars
Mar 22, 2023
Replies: 1 comment 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.
4 replies
Answer selected by
Moosems
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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/