Export files to users

Hello everyone,

I would like to create app in which a user uploads a photo and add some processes(like clipping, rotating, etc…) and then download the one.
Now, I’m alomost finished to coding, and the last part is to export the photo to the user.
Can I implement this function in Django?
If so, please tell me the way to do that.

Thanks

I think what you might be looking for is a FileResponse. (Create a view that returns the file in the FileResponse object.)

It seemed to be perfectly worked!!
Thanks