Add a sorl-thumbnail
support for a Django Tastypie.
Install package via pip
pip install django-tastypie-sorl-thumbnail
http://tomi77.github.io/tastypie-sorl-thumbnail/html/
from tastypie.authentication import Authentication from tastypie.authorization import Authorization from tastypie.resources import ModelResource from tastypie_sorl_thumbnail.fields import ThumbnailField from .models import Photo class PhotoResource(ModelResource): thumbnail = ThumbnailField('photo', '120', quality=80) class Meta(object): queryset = Photo.objects.all() resource_name = 'photo' authentication = Authentication() authorization = Authorization()
Configure tastypie-sorl-thumbnail
logger.
$ python setup.py test
or
$ python manage.py test tastypie_sorl_thumbnail