Hi Arno, I just wanted to take a moment to express my gratitude. Your Udemy course was an absolute gem! As someone who transitioned from Flask to Django (which are somehow the same but still quite different), I found your teaching style incredibly effective. You manage to discuss complex backend concepts without making us feel like complete duck. Kudos for kickstarting my Django journey-I’m excited to explore more! Looking forward to future content, especially anything related to crontab operations in Django (like pushing data to the database from an API on a specified schedule) and/or weather/gis apps. Keep up the great work-you’re definitely the GOAT!
@CloudWithDjango4 ай бұрын
Hi Alan, Thank you so much for your support and kind words. I really appreciate you saying that and for enrolling in my Udemy course as well! I also appreciate the suggestions. Thank you again. I wish you all the best!
@huxleynyaoga52214 ай бұрын
Thank you for this tutorial.
@CloudWithDjango4 ай бұрын
My pleasure!
@uzairzarry86914 ай бұрын
Informative ❤
@CloudWithDjango4 ай бұрын
Thank you!!
@chrisogle0014 ай бұрын
I found one of your Django videos on KZbin last week, I learned a ton about Django from you as I worked through the video, i found one of your Django courses on Udemy and I’m working through that one now. You are such a good teacher. I’m always looking forward to getting back to the lessons. Maybe you can make an intermediate-advanced Python video. Thank you so much for sharing your knowledge and experience and I’m looking forward to this one too!
@rishabhsingh33154 ай бұрын
The goat
@CloudWithDjango4 ай бұрын
Thank you so much for your kind words, support and for enrolling in my courses as well. It is much appreciated! I'm glad that you are finding the content useful and that you are learning a lot. I try to make intermediate-advanced python content through my Udemy content, but If I have the time and I'm able too, I will look into this as well for KZbin. Thank you for the suggestion though. And no problem, glad to share what I know. Thank you again! @chrisogle001
@serychristianrenaud4 ай бұрын
Thanks 🎉
@CloudWithDjango4 ай бұрын
My pleasure!!
@KrishnaManohar80214 ай бұрын
Can you make tutorials regarding forms and forms query sets also?
@CloudWithDjango4 ай бұрын
Thank you for your suggestion!
@georgekamakia75914 ай бұрын
Can the blobField be used to upload image files, eg .jpg
@CloudWithDjango4 ай бұрын
Hi, It should be able to handle image file, although I'd suggest referring to the docs and giving it a try
@georgekamakia75914 ай бұрын
@@CloudWithDjango Thanks, I will try it out
@CloudWithDjango4 ай бұрын
No problem. Good luck!
@averrousazharrafiqi25972 ай бұрын
How if we cant to upload multiple files to one object sir? The one that you show in the video is one object related with one file, how about multiple files? is that similar approach or there are a best practice for that requirement?
@CloudWithDjango2 ай бұрын
Hi, For this to work, you'd need to make some changes to your code. To handle multiple files for one object in Django, you can use a ManyToManyField with a separate model for files, where each file is related to the object. This way, you can associate multiple files with a single object, and it follows a clean and scalable approach. You can also use Django forms with forms.FileField(widget=forms.ClearableFileInput(attrs={'multiple': True})) to allow users to upload multiple files at once.
@ravihansda1274 ай бұрын
Can you create a telegram bot using django
@YannAriell4 ай бұрын
I think it's pretty easy to implement. What will be interesting is to do it with WhatsApp