On Fri, Mar 05, 2021 at 04:09:27AM -0800, Sheldon Le Cooper wrote: > I have requirement of Django Api's. > > Brief about the requirement: > > I have 2 projects (A and B), I did develop the API'S for Project A. The > Project A has been deployed in CentOs with NGNIX server. Now I wanna use > the Project A Api's in Project B. > > Kindly suggest me how to achieve this requirement. > Kindly suggest me any blogs or videos. > > Note: Just I wanna give Project A API"S Urls to project B.
This might be another case of "Django is just Python". You probably want to use a Python package like requests[1] to access the API from project A in the views.py from project B. [1] https://requests.readthedocs.io/en/master/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/20210307190621.GF15054%40fattuba.com.

