Reputation: 26558
Django rest framework is a great tool to expose data in restful protocol, but does it have a built in client that does the heavy lifting at the back to enable easy implementation in SOA architecture between different django projects?
So far I haven't found much from the django rest framework documentation, hopefully someone can shed some light on this one.
Upvotes: 8
Views: 3498
Reputation: 26558
I recently created a package that mimics the django queryset over DRF.
django-rest-framework-queryset
Upvotes: 0
Reputation: 4192
There is no "official" client for DRF, since REST-APIs mostly don't have much "heavy-lifting" as you perhaps know it from SOAP or similar techniques.
For most REST-APIs slumber is the easiest way to connect to these. It handles url-building, authentication and json-dump/load.
Upvotes: 4