Reputation: 41
I have a Django project hosted in a server and it wants to interact with another django application hosted in another server. How do I go about doing this?
Upvotes: 0
Views: 1221
Reputation: 1751
It really depends on what exactly you want to communicate. But irrespective of specific technology, RESTful API is one of the best practices when it comes to communication between applications.
There are numerous apps developed to help RESTful implementation in Django. You can try RestifyDjango or Django REST framework
Upvotes: 2