Django REST framework: Concepts behind View, APIView, GenericAPIView, ViewSets and ModelMixins

  Рет қаралды 13,370

Jitendra Kasaudhan

Jitendra Kasaudhan

4 жыл бұрын

Source Code:
github.com/jkasaudhan/apis_us...
Django restframework: www.cdrf.co/
Viewsets documentations
www.django-rest-framework.org...
www.django-rest-framework.org...
Create apis using pure django features
• Django api: How to cre...

Пікірлер: 49
@veereshshenoy579
@veereshshenoy579 3 жыл бұрын
after searching for 100's of videos, I would say this is the perfect one. Thanks Jithendra :)
@jitendrakasaudhan
@jitendrakasaudhan 3 жыл бұрын
Thank you @veeresh im happy that it was helpful to you 🙂🙂
@Anton-ir4zc
@Anton-ir4zc Жыл бұрын
Thank you very much !! You did one hour session on topics others couldn't explain in hours
@jitendrakasaudhan
@jitendrakasaudhan Жыл бұрын
Thank you 😊😊I am glad it did help you 😊😊
@jsairam8954
@jsairam8954 2 жыл бұрын
Hmm... Finally got the right platform to learn the drf.....after searching to many channels.. Thank you sir....thank u so much.
@jitendrakasaudhan
@jitendrakasaudhan 2 жыл бұрын
Thank you @sairam
@callmeproteus392
@callmeproteus392 3 жыл бұрын
Finally, someone understands how too many ways to do same thing is confusing, Many Thanks
@jitendrakasaudhan
@jitendrakasaudhan 3 жыл бұрын
Thank you @CallMeProteus , im glad that it helped you 👍👍👍
@chipekowasa6571
@chipekowasa6571 3 жыл бұрын
Thank you very much this is the best breakdown of all the methods I've seen.
@jitendrakasaudhan
@jitendrakasaudhan 3 жыл бұрын
Thank you
@ultimStars
@ultimStars 2 жыл бұрын
one of the most useful vids ive seen, thx alot
@florinbujoreanu1020
@florinbujoreanu1020 Жыл бұрын
EXCELLENT WORK DEAR SIR! I will make up to your effort as soon as I can.
@maniraj9331
@maniraj9331 3 жыл бұрын
Thank you so much, Bro. You have cleared all my confusion. This is simple and clear.
@jitendrakasaudhan
@jitendrakasaudhan 3 жыл бұрын
welcome bro...😀😀I m happy that it was useful to you 👍👍
@muthukrishnan7117
@muthukrishnan7117 2 жыл бұрын
awesome tutorial bro...many day's confusion was cleared....thankyou soo much
@MukulGhezta
@MukulGhezta 3 жыл бұрын
Good job man!!! This has been helpful. Really appreciate this.
@jitendrakasaudhan
@jitendrakasaudhan 3 жыл бұрын
Thank you @Mukul Ghezta :) :) and I am happy that it was useful to you :) :) :)
@MukulGhezta
@MukulGhezta 3 жыл бұрын
@@jitendrakasaudhan No seriously man, there are lots of TUTORIAL SERIES out there but no one explains problems like these. And concepts like these only matter. Once the basic concepts are clear then its quite easy. I am checking out your other tutorials too. Keep up the good work.
@jitendrakasaudhan
@jitendrakasaudhan 3 жыл бұрын
@@MukulGhezta Thank you man!! I appreciate it :) :) I had similar issues understanding several things at conceptual level and how are things connected internally..therefore I have started this youtube channel so that I can research, learn and share concepts behind the technologies, we are using :) :)
@MukulGhezta
@MukulGhezta 3 жыл бұрын
@@jitendrakasaudhan Awesome!!!
@amirehsani1044
@amirehsani1044 Жыл бұрын
Thanks a lot for clarifying this concept.
@adityakotikalapudi329
@adityakotikalapudi329 3 жыл бұрын
Nice bro👍 more to come😀😀
@chandrashekharneupane2464
@chandrashekharneupane2464 3 жыл бұрын
thanks man , simple and clear
@jitendrakasaudhan
@jitendrakasaudhan 3 жыл бұрын
Thank you 👍👍
@profglac
@profglac Ай бұрын
Thanks!!! Nice job!!!
@itzmeraj6253
@itzmeraj6253 3 жыл бұрын
Woooow awesome 👏... I subscribed you as soon as I watched this video
@jitendrakasaudhan
@jitendrakasaudhan 3 жыл бұрын
Thank you @newbie21 for subsribing to my channel :) :)
@orlandog1979
@orlandog1979 3 жыл бұрын
You are a great master
@jitendrakasaudhan
@jitendrakasaudhan 3 жыл бұрын
😀😀Thankyou @Orlando
@dheenabhathu2977
@dheenabhathu2977 Жыл бұрын
Kudos to you.
@Allin-dd8gj
@Allin-dd8gj 11 ай бұрын
Great sir keep make that like videos !
@mehboobshaikh8396
@mehboobshaikh8396 3 жыл бұрын
can you make a video on how to integrate Django rest framework with Keycloak?
@NachoMx0
@NachoMx0 3 жыл бұрын
Thank you.
@zergovrock5277
@zergovrock5277 2 жыл бұрын
best of the best
@sarojpaudel7479
@sarojpaudel7479 3 жыл бұрын
Hey man , what about mixins. When do we use it?? I dont think you cover it in you video.
@jitendrakasaudhan
@jitendrakasaudhan 3 жыл бұрын
Hi @saroj thank you concern :) I have not covered mixins in details but I find this av.tib.eu/media/20072 quiet useful to understand about mixins :) I hope it helps :)
@deepanshuaggarwal7042
@deepanshuaggarwal7042 3 жыл бұрын
Hi bro , your videos are very good. But, I have 1 problem while practicing. Whenever, I request POST, django automatically calls GET method after completing POST request... why is it so??
@jitendrakasaudhan
@jitendrakasaudhan 3 жыл бұрын
Hi @Deepanshu in general, django should not call GET automatically after POST request..I guess there is something wrong with the return values of POST method in HttpResponse(if you are using pure django) or Response(if you are using REST framework).. :) :) There is a pattern called POST/REDIRECT/GET to solve different problem and I suppose your problem is related to this pattern :) :) en.wikipedia.org/wiki/Post/Redirect/Get
@isaachatilima
@isaachatilima 2 жыл бұрын
I think you swapped at 2:05. django only has Get and Post and DRF had All the HTTP request.
@jitendrakasaudhan
@jitendrakasaudhan Жыл бұрын
Hi @Isaac Hatilima, sorry for replying so late :). I just want to clarify if we misunderstood something. Do you mean pure django without DRF only supports GET and POST ? at 2:05, I have just used @api_view(['GET', 'POST']) under DRF as an example. Both django and DRF does support all the http verbs (GET,POST, PUT, DELETE) :)
@isaachatilima
@isaachatilima Жыл бұрын
@@jitendrakasaudhan I mean pure Django and not DRF. Maybe I didn’t try hard enough to see how it works but so far with pure django I only use POST and GET.
@NSKTheRipper
@NSKTheRipper 3 жыл бұрын
Can you do a video on routers
@jitendrakasaudhan
@jitendrakasaudhan 3 жыл бұрын
Sampath Kumar Kaniappan yes sure.. I will create next video about routers and let you know 🙂🙂
@jitendrakasaudhan
@jitendrakasaudhan 3 жыл бұрын
Hi @sampath, finally I have created a video on routers :) :) just in case if you want to watch :) :) kzbin.info/www/bejne/d6iUiZmHZpmYmJY&ab_channel=JitendraKasaudhan
@atulsharma3993
@atulsharma3993 3 жыл бұрын
pls make one video on django interview questions pls
@jitendrakasaudhan
@jitendrakasaudhan 3 жыл бұрын
Good idea :) @Atul :) :) I have to collect questions from my friends as well and dive a bit more on advanced stuff probably :)
@atulsharma3993
@atulsharma3993 3 жыл бұрын
@@jitendrakasaudhan thnaks u so much bhai
Самый Молодой Актёр Без Оскара 😂
00:13
Глеб Рандалайнен
Рет қаралды 4 МЛН
- А что в креме? - Это кАкАооо! #КондитерДети
00:24
Телеканал ПЯТНИЦА
Рет қаралды 7 МЛН
ЧУТЬ НЕ УТОНУЛ #shorts
00:27
Паша Осадчий
Рет қаралды 6 МЛН
Django REST framework: Concept behind different types of serializers?
55:40
Understanding Django Generic Views
16:29
Chuck Severance
Рет қаралды 12 М.
ViewSets in Django Rest Framework and Types #10
13:26
IamPython
Рет қаралды 10 М.
Complete Authentication API with JWT in Django REST Framework (Hindi)
3:03:41
Django REST Framework Generic Views
34:22
Bryan Brkic
Рет қаралды 1,7 М.
Build a Rest API with Django Rest Framework
1:17:57
Laith Academy
Рет қаралды 49 М.
Async Django - presented by Ivaylo Donchev
30:47
EuroPython Conference
Рет қаралды 6 М.
Зачем ЭТО электрику? #секрет #прибор #энерголикбез
0:56
Александр Мальков
Рет қаралды 621 М.
ГОСЗАКУПОЧНЫЙ ПК за 10 тысяч рублей
36:28
Ремонтяш
Рет қаралды 478 М.
تجربة أغرب توصيلة شحن ضد القطع تماما
0:56
صدام العزي
Рет қаралды 57 МЛН