photo = FinePhoto()
photo.image.name = 'здесь должен быть путь к файлу относительно MEDIA_ROOT'
photo.save()from django.core.files import File
photo = FinePhoto()
photo.image.save('some_image.jpg', File(file_handler))from django.core.files.base import ContentFile
photo = FinePhoto()
photo.image.save('some_image.jpg', ContentFile(file_data))
Неправильно поняли.