Is it possible to make a mobile app in Django?

14,185

Yes. There are a couple ways you could do it

  1. Use the Django Rest Framework to serve as the backend for something like React Native.

  2. Build a traditional website for mobile and then run it through a tool like PhoneGap.

  3. Use the standard Android app tools and use Django to serve and process data through API requests.

Share:
14,185
Admin
Author by

Admin

Updated on June 25, 2022

Comments

  • Admin
    Admin almost 2 years

    I was wondering if it is possible for me to use Django code I have for my website and somehow use that in a mobile app, in a framework such as, for example, Flutter.

    So is it possible to use the Django backend I have right now and use it in a mobile app?

    So like the models, views etc...