user1690465
user1690465

Reputation: 41

Communication between Django applications hosted in different servers

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

Answers (1)

Husain Basrawala
Husain Basrawala

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

Related Questions