Concept Flow - File size limits
Start Flask app
User uploads file
Check file size <= limit?
No→Reject upload with error
Yes
Process and save file
Send success response
The app starts, user uploads a file, the app checks if the file size is within the limit, rejects if too big, otherwise processes it.