Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a simple flask app where i am uploading single file but with file size of less than 5MB
for that i have defined
if request.content_length < 5.250e+6: ## setting upload limit to 5MB test case in my flask-app; but this is verifying the file size after uploading it; or may be i am wrong.
so is there any way to get the file size before uploading it???

Here is python solution on python+GAE, but i am new to python web framework; i know very little in flask
and this solution is based on webapp2 which is very complicated for me and also its on GAE; that is another story. so can anyone generate its flask equivalent or any other possible way to do it in flask???

share|improve this question

1 Answer

Flask is able to limit file size while upload is in progress, see the documentation. All you need is to set MAX_CONTENT_LENGTH when configuring your app.

share|improve this answer
this too is verifying file size after file upload.. .i want that should be before upload. In my question i have mentioned a solution(github.com/blueimp/jQuery-File-Upload/tree/master/server/…) but that is using webapp2 which i don't know; and flask is new for me; so can that be converted into flask?? – namit Dec 22 '12 at 14:51
1  
No, it does abort the request with 413 REQUEST ENTITY TOO LARGE immediately after it sees Content-Length value which is larger than MAX_CONTENT_LENGTH you've set. I just tested it with curl, and it works as expected. Note that for file uploads your form must be encoded as multipart/form-data. If it's missing, perhaps that's why it doesn't work for you? – Audrius Kažukauskas Dec 22 '12 at 16:02
can i handle it with error handler (flask.pocoo.org/docs/api/#flask.Flask.errorhandler). – namit Dec 22 '12 at 17:57
i mean that 413 error; where i will show the error msg as 'file upload limit is 5MB' – namit Dec 22 '12 at 18:04
Sure, just provide that error code: @app.errorhandler(413) ... – Audrius Kažukauskas Dec 22 '12 at 18:30
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.