Vitor, I coded for years, read thousands of blogs, and have just one thing to say. You truly are a god among men, your ability to communicate advanced topics in such a simple manner is unmatched and you have very much owned the title of your blog/website. Fellow mortals, worship your overlord by liking this comment.
Hey Victor, just discovered you today to find out how to upload file. Great tutorial, very helpful. What I like about your teaching style is the upfront theory. It helps build a mental model of how the steps piece together. Thank you and keep up the good work!
I was reading your blog from time to time while i was learning Django, Im happy that you have chanel also, your contribution to django comunity and students is awesome! Ty.
Thank you for detailed explanation. It helped a lot in understanding the basics of Django File Upload. The special mention of Media URL from the settings.py really stands out. Keep the same kind of special mentions in the future videos as well. They will help someone out there.
This is my first tutorial in Django. Thanks for making things a little bit easier. I am just new to web development and copied your code for front end.
you just don't know, that How much your video helped me😍 firstly.. thankyou sir for this video... this video helped me so much❤❤ ThankYou so much sir..
if request.method == 'POST' and request.FILES['myfile']: This line should be: if request.method == 'POST' and request.FILES.get('myfile', False): Otherwise one might encounter the MultiValueDictKeyError later. Found it on Vitor's blog. Props to Riverman!
This is my error - 'bool' object has no attribute 'name' My code is below - def upload(request): if request.method == 'POST': uploaded_file = request.FILES.get('document',False) fs = FileSystemStorage() fs.save(uploaded_file.name,uploaded_file) return render(request,'merge_ops/merge_ops.html')
I'll start by saying I'm very thankful for Your videos. This toturial series has helped me through my college project concerning dynamic web design and development. It's very efficient and extremely helpful and easy to understand even for a begginer like me. I had tons of fun learning this framework. Well done sir and thanks :)
Victor just one thing can you make django videos targeting intermediate level. Example when to use AbstractUser vs abstractsBaseUser. And how to use database fixture and how to load too because django documents only teaches how to implement (coding stuff) but it don't say anything about when should you use it( when to use it in real life situations).
Thank you so much. I was missing the enctype="multipart/form-data from my form, and that was all. It is an absolutely necessary piece, apparently. I had read through the documentation but somehow I kept overlooking that detail.
Would be good to see a tutorial for setting up a payment method for a site, using a credit card. Basically, how to send requests to some service/bank and how to accept a service reply for succesfull payment.
Please make some videos on the authentication and authorization for django. It's so confusing and the proxy models for the user login. Your docs are great on that topics. Hoping for the video for the same. Thank you
Great Vitor! I've been following your blog for a long time! I want to tell you that your posts are objective, that is, straightforward. I want to suggest two things: 1 - inlineformset_factory outside admin. 2 - Generate reports in pdf. 3 - Import and export in excel. I have more suggestions but I think it would be abuse heheheh. Hug.
After 3 days of grinding the internet for an answer to my problem, you just gave it to me in a few minutes. Thank you very much, I subscribe!
Vitor, I coded for years, read thousands of blogs, and have just one thing to say.
You truly are a god among men, your ability to communicate advanced topics in such a simple manner is unmatched and you have very much owned the title of your blog/website.
Fellow mortals, worship your overlord by liking this comment.
You are my Life Saver , Respect from Pakistan
Hey Victor, just discovered you today to find out how to upload file. Great tutorial, very helpful. What I like about your teaching style is the upfront theory. It helps build a mental model of how the steps piece together. Thank you and keep up the good work!
you are a teacher of the 21st century, cool and calm way of teaching. Nice job
.
I was reading your blog from time to time while i was learning Django, Im happy that you have chanel also, your contribution to django comunity and students is awesome! Ty.
Thanks, This basic tutorial solve one of my major problems during web-based application development.
Thank you Vitor, your tutorials have helped me to grow in Django more so your way of teaching is amazing Thank you
Sooooooo thank you! Exactly what I needed and exactly as detailed as i needed.
I read your articles Vitor. You are amazing!
Your way of teaching is amazing, continue the same way
Fan of your Website. Glad to reach you here
Explanation with diagram was very good
I've been following your videos recently and the site's tutorials have helped me a lot in some projects... Very high quality content.
Thank you for detailed explanation. It helped a lot in understanding the basics of Django File Upload. The special mention of Media URL from the settings.py really stands out. Keep the same kind of special mentions in the future videos as well. They will help someone out there.
Excellent. I have learned so much Django from you! From your videos and website.
Great Video - Simplicity is the ultimate sophistication
Best tutorial on file upload for Django, Thanks!
thank you so much now i can finish my project
you explain too good , I am just a beginner and your lectures is helping me to elevate my interest in learning django
Parabéns Vitor! ótimo vídeo
Great video helped me a lot with my project
Great Vitor, Your Django blog helped me lot. Thank you.
The Best Django tutorial ! Thank you for the videos!
This is my first tutorial in Django. Thanks for making things a little bit easier. I am just new to web development and copied your code for front end.
Very good, very clear!
My django teacher is big fan of yours
Thank you for this tutorial!
you just don't know, that How much your video helped me😍
firstly.. thankyou sir for this video... this video helped me so much❤❤
ThankYou so much sir..
The way you explain stuff is so simple to get. Hope you carry on with more vids.
your teaching is very professional.tqq so much for sharing your knowledge.
Your videos are superb. Theu are really helpful. Please do continue with Django
Wow !
Great quality video, Your explain are awesome, congratulations.
super super easy and smooth explaining, and super like for you. then thanks to much
the best tutorial !
Very good tutorial. Thanks Vitor
Thank you Vitor. It's really good to understand how django file works! I really appreciate it!
Great Thank to you sir. I was looking for this solution from long time and finally I got this. love from 2021 new year.....
nice explanation. Impressed
Simple and easy to understand. Great tutorial.
Thanks U from south america, hugs
if request.method == 'POST' and request.FILES['myfile']:
This line should be:
if request.method == 'POST' and request.FILES.get('myfile', False):
Otherwise one might encounter the MultiValueDictKeyError later. Found it on Vitor's blog. Props to Riverman!
Thank you Sir, (y)
I actually encountered the error. I updated the code to request.FILES.get('myfiles,False). However now I am getting another error.
This is my error - 'bool' object has no attribute 'name'
My code is below -
def upload(request):
if request.method == 'POST':
uploaded_file = request.FILES.get('document',False)
fs = FileSystemStorage()
fs.save(uploaded_file.name,uploaded_file)
return render(request,'merge_ops/merge_ops.html')
This tutorial clear my concept. Very deeply explained. Please upload more tutorial like this.
Great video, thanks!
😍 finally some one here to explain django with flow chart really sir thank you so much ..
Awesome as always. Please continue tutorials on django with advanced concepts.
thank you so much sir thank you so much for making these videos and writing blog posts
You are really, really good!, thanks!!!!, you save me!
Money Heist Professor teaches coding too!
I'll start by saying I'm very thankful for Your videos. This toturial series has helped me through my college project concerning dynamic web design and development. It's very efficient and extremely helpful and easy to understand even for a begginer like me. I had tons of fun learning this framework. Well done sir and thanks :)
Thank you Vitor,
That's very good
Aula excelente! Parabéns!
Thank you a lot, Vitor!
That was a nice tutorial on difficult subject.
You're realy good at explaining stuff.
Hi.. your videos are really valuable. Good work.
Than you man, it was very helpful
Victor just one thing can you make django videos targeting intermediate level. Example when to use AbstractUser vs abstractsBaseUser. And how to use database fixture and how to load too because django documents only teaches how to implement (coding stuff) but it don't say anything about when should you use it( when to use it in real life situations).
thanks for the great suggestion! I'll work on it for the future videos :-)
Amazing Tutorial. Thanks a lot Victor..
it was realy helpful. thank you.
Vitor you rock!
First simple is better than complex and now this amazing series on file upload. Thank you :)
hey man, do you have any idea why the base.html on github does not match the one in the video
Awesome thorough explanation of concepts and implementation. Good job.
This was very helpful. Thank you.
This helped me a lot. Thank you
Goddamit, this guide is so good and detailed, thank you so much
thank you, good explainations
Thank You very much. I found my primary solution here.
Thank you Vitor, your tutorials are fantastic.
Thank you very much sir! Very nice explaining manner. Helped a lot.
nice to meet you Victor
Thank you so much. I was missing the enctype="multipart/form-data from my form, and that was all. It is an absolutely necessary piece, apparently. I had read through the documentation but somehow I kept overlooking that detail.
Thanks Vitor!
This rocks. Really well done. Thank you!
Would be good to see a tutorial for setting up a payment method for a site, using a credit card. Basically, how to send requests to some service/bank and how to accept a service reply for succesfull payment.
excellent work
thank you very much vitor
Great job Vitor.
Thanks, Emanuel!
Thank you Vitor! Your videos also help me a lot!
great lecture
vlw mano! sempre acompanho seu site e tem me ajudado muito.
Hey, Vitor thank you so much for this tutorial! It was really helpful! And the way you teach is very easy to follow!
it is really awesome thanks a lot
Obrigado pelo seu vídeo, me ajudou bastante
Nice work man...keep going...
Very helpful stuff. Thank You!
Thank you very much. It helped me.
Thaks o lot for the lesson!
great video!!!
So many Thanks For. Very helpful tutorial.
excellent boss..
very easy to learn! Thank you :)
Your videos are awesome, I came from your website and I like how to make exactly the tutorials I want. :)
Helped me a lot. Thank you
Thank you very much sir, This helped me alot. may god bless you all the way.
Please make some videos on the authentication and authorization for django. It's so confusing and the proxy models for the user login. Your docs are great on that topics. Hoping for the video for the same. Thank you
Check this playlist on Django authentication I published last week: th-cam.com/video/60GTvKCuam8/w-d-xo.html
Very very helpful, helped me lot. Thank you.
Great Vitor!
I've been following your blog for a long time!
I want to tell you that your posts are objective, that is, straightforward.
I want to suggest two things:
1 - inlineformset_factory outside admin.
2 - Generate reports in pdf.
3 - Import and export in excel.
I have more suggestions but I think it would be abuse heheheh.
Hug.
Great video thanks.
Thank you friend
awesome, make more videos.
keep it up !