Home > database >  Python Flask mobile apps
Python Flask mobile apps

Time:11-06

I was wondering if it's possible to turn a flask app into a mobile app in python3? And what the best frameworks for deploying such app to an app store.

CodePudding user response:

flask can only be use to build web applications. You can use Kivy

CodePudding user response:

As was mentioned already, you can use Kivy, which is a tool to make cross-platform apps using Python.

Though, there are some options to turn your existing website made on Flask into an Android app. Such platforms as appypie (https://appypie.com) provide such an opportunity

Have a good luck :)

  • Related