Tagged Questions

1
vote
1answer
760 views

Django / Python / PIL / sorl-thumbnail generation in bulk - memory error

I'm trying to bulk generate 4 thumnails for each of around 40k images with sorl-thumbnail for my django app. I iterate through all django objects with an ImageWithThumbnailsFieldFile, and then call ...
0
votes
1answer
37 views

Django - sorl-thumbnail - accessing thumbnail image from view functions

I am currently using sorl-thumbnail and have a model. class Entry(models.Model): image = ImageWithThumbnailsField(upload_to='uploads/', null=False, blank=True, thumbnail={ ...