Django REST Framework API playlist: kzbin.info/aero/PL-2EBeDYMIbTLulc9FSoAXhbmXpLq2l5t
@serychristianrenaudАй бұрын
Thanks
@bugbytes3923Ай бұрын
@@serychristianrenaud Thanks a lot!
@gogasaldadze1639Күн бұрын
Idk what to say, Just thank you and please keep doin what you do. You are extremely talanted and have a great approach to deliver knowledge. I mean, we all can read docummentation, however its not so always easy to understand easily and here in your videos, everything makes sense when you explain. Thank you !
@seydinaoumarsamabaly1806Ай бұрын
The real magic begins ! Great content, thank for all !
@bugbytes3923Ай бұрын
Thank you man!
@Danish_Khan_Ай бұрын
crisp andd to the point, having good grasp in django core, this series is quite perfect, just focusing on apis/backeend part and not so long explainations. Keep it like this. finished this in 2 days. what i would llike in this series is, deployment on AWS. There is no content on YT market on this topic. not ec2, but like lambda or dockerised ECS fragatte launch type. May be u can start new series after that about deployment. I know u getting lots of request on multiple topics, you should do poll regarding it. Would like any of this: 1) AWS deployment series 2) Django Ninja 3)extending this series to JWT and social auth Do a poll please
@bugbytes3923Ай бұрын
Thanks a lot for the suggestions - a Deployment series has been on my list for a long time. I'll definitely include JWT auth in the REST Framework series, too.
@SierusGroup12 күн бұрын
Спасибо
@GabrielPistore-u9oАй бұрын
Thank you so much
@bugbytes3923Ай бұрын
Thanks for watching!
@manuel-joАй бұрын
🔥🔥🔥
@bugbytes3923Ай бұрын
Thank you!
@alexdin1565Ай бұрын
amazing as always you should name your channel Django Home please add image upload directly and from URL to this series and if you can make in same Model ability to add image from upload or from Url its will be very helpful
@bugbytes3923Ай бұрын
Thanks a lot!
@abderahimlamamri8591Ай бұрын
Good content, thanks a lot
@bugbytes3923Ай бұрын
Thank you!
@AhmedBashir-m1sАй бұрын
Pretty great content
@bugbytes3923Ай бұрын
Cheers!
@aashayamballiАй бұрын
Thank you!
@bugbytes3923Ай бұрын
Thanks for watching!
@frameff9073Ай бұрын
good thank you
@bugbytes3923Ай бұрын
Thanks for watching!
@nedyalkokarabadzhakov5405Ай бұрын
Amazing as always. Can you consider stripe integration tutorial.
@bugbytes3923Ай бұрын
Thank you! Yes, great idea!
@ab_was_hereАй бұрын
Really enjoying the sessions. Currently I’ve been wanting to use the api versioning features. One issue I have is that it does not appear possible to use a class inheritance approach with QueryParameterVersioning because we don’t access query strings in the url patterns. For the others, the URLs can reference a distinct view and that allows my API view on v2 to subclass all of the stuff from v1. If you have any thoughts on making a video, it’d be super interesting.
@bugbytes3923Ай бұрын
Thanks for the suggestion! I've not factored in versioning to the series yet, but that's an excellent idea. Will definitely add it to the list for future videos - thanks again!
@vijaynayak4874Ай бұрын
👍
@bugbytes3923Ай бұрын
Thanks for watching!
@daverobb2011Ай бұрын
Can you also use Q to perform complex filters with the generic views?
@Danish_Khan_Ай бұрын
It's independent of views, You can do all things related to queries as in django core, same way in rest framework, because it's provided by django ORM, used by both. No difference
@bugbytes3923Ай бұрын
You can construct complex filters with Q objects as part of the queryset parameter on a Generic View, yes! If the Q objects rely on dynamic data, you can also override get_queryset() - will show an example of overriding that method in the next video in this series.