0

Looking for an alternate to django-imagekit.

django-imagekit with django-cumulus causes loads of timeout issues and makes apps very inconsistent.

Are there any alternatives that you can suggest that you have used in your previous projects?

Mariusz Jamro
  • 30,615
  • 24
  • 120
  • 162
ApPeL
  • 4,801
  • 9
  • 47
  • 84

2 Answers2

3

Well, sorl was pretty good, but looks dead now. Maybe there's some actively developed fork somewhere.

Also, checkout Django Packages, i'm sure you'll find useful code.

Dmitry Shevchenko
  • 31,814
  • 10
  • 56
  • 62
3

Easy-thumbnails seem to be the de-facto standard these days

http://github.com/SmileyChris/easy-thumbnails

George Karpenkov
  • 2,094
  • 1
  • 16
  • 36
  • just tried out easy_thumbnails maybe 2 hours ago, seems to be a teething issue at the moment with some of their migrations in MySQL. – ApPeL Oct 10 '10 at 11:40
  • 1) When do migrations come into play at all? Why do you even care whether it has or does not have migrations? – George Karpenkov Oct 10 '10 at 11:45
  • 2) How is it in MySQL? They use south for migrations – George Karpenkov Oct 10 '10 at 11:45
  • They use south for migrations yes, well it seems that someone has setup in a different environment and now the source seems to fail around migration #10 - http://github.com/SmileyChris/easy-thumbnails/issues#issue/45 – ApPeL Oct 11 '10 at 07:34