I am learning Django Rest Framework. I came up across method JSONRenderer.render() which takes python objects and converts them to JSON string.
But why do not we use json.dumps() method for this. Why to create another method which does the same work?