Yes, this is something people do all the time . You can use something like Tastypie or Django REST Framework to create a REST API for your server side application, and access this via HTTPS calls from your mobile app.
Read moreCan mobile apps be built with Python?
Python doesn’t have built-in mobile development capabilities , but there are packages you can use to create mobile applications, like Kivy, PyQt, or even Beeware’s Toga library. These libraries are all major players in the Python mobile space.
Read moreCan I use Django with react native?
How can React Native and Django be used together? React Native is primarily a frontend framework, and Django helps run the backend server-side code. Both have advantages over other frontend and backend frameworks, respectively. Both can be used for any type of development (Web, Android or iOS, and Hybrid).
Read moreCan we build mobile apps using Django?
Yes . Use the standard Android app tools and use Django to serve and process data through API requests.
Read moreCan Django be used as backend for mobile apps?
The only missing piece in the puzzle is a REST based communication architecture between the frontend and backend, that can facilitate complete decoupling. Django REST Framework does just that. Evidently, this setup will work for any Mobile/Frontend framework.
Read more