Django request

Is there any way with which we can retrieve data from websites using django only?(without using modules like request,urllib,scrapy etc )

trying with django.http.response, but not sure if this can be used

The documentation for HttpResponse answers your second question.

No, Django is designed and written to respond to http requests, not make them. Using request, etc, are the proper libraries to use for retrieving data from other sites.