☕ Buy a coffee: ko-fi.com/bugbytes ⭐Top resource to learn Python - datacamp.pxf.io/kOjKkV ⭐ 📚 Django REST Framework API playlist: kzbin.info/aero/PL-2EBeDYMIbTLulc9FSoAXhbmXpLq2l5t
@serychristianrenaud2 ай бұрын
Thanks
@bugbytes39232 ай бұрын
@@serychristianrenaud Thanks a lot!
@ak47-qin12 күн бұрын
For real brother, I truly appreciate your work. The explanation is rich because you explain everything behind each concept, allowing learners to understand what we do/code. Be blessed!!! 🙏
@bugbytes392311 күн бұрын
Awesome to hear that, thank you very much!
@seydinaoumarsamabaly18062 ай бұрын
The real magic begins ! Great content, thank for all !
@bugbytes39232 ай бұрын
Thank you man!
@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 !
@bugbytes3923Ай бұрын
Thanks a lot, that's an amazing comment to receive, thank you! I'll keep going.
@ayo-ju5sv7 күн бұрын
Thank you so much BugBytes 🙏
@bugbytes39237 күн бұрын
Thank you for commenting! 🙏
@Danish_Khan_2 ай бұрын
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
@bugbytes39232 ай бұрын
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.
@GabrielPistore-u9o2 ай бұрын
Thank you so much
@bugbytes39232 ай бұрын
Thanks for watching!
@aashayamballi2 ай бұрын
Thank you!
@bugbytes39232 ай бұрын
Thanks for watching!
@manuel-jo2 ай бұрын
🔥🔥🔥
@bugbytes39232 ай бұрын
Thank you!
@AhmedBashir-m1s2 ай бұрын
Pretty great content
@bugbytes39232 ай бұрын
Cheers!
@abderahimlamamri85912 ай бұрын
Good content, thanks a lot
@bugbytes39232 ай бұрын
Thank you!
@SierusGroupАй бұрын
Спасибо
@frameff90732 ай бұрын
good thank you
@bugbytes39232 ай бұрын
Thanks for watching!
@alexdin15652 ай бұрын
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
@bugbytes39232 ай бұрын
Thanks a lot!
@ab_was_here2 ай бұрын
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.
@bugbytes39232 ай бұрын
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!
@nedyalkokarabadzhakov54052 ай бұрын
Amazing as always. Can you consider stripe integration tutorial.
@bugbytes39232 ай бұрын
Thank you! Yes, great idea!
@vijaynayak48742 ай бұрын
👍
@bugbytes39232 ай бұрын
Thanks for watching!
@weilin48724 күн бұрын
good
@bugbytes39234 күн бұрын
@@weilin4872 thanks!
@daverobb20112 ай бұрын
Can you also use Q to perform complex filters with the generic views?
@Danish_Khan_2 ай бұрын
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
@bugbytes39232 ай бұрын
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.