Stephen Lewis (Burrows)

Results 504 comments of Stephen Lewis (Burrows)

Looking into this a little more, DRF is using individual saves because it's accounting for things like setting M2M values. It's also worth noting that unless you're using postgres (and...

So if people want to do this right now, here's a ListSerializer that you can use for it: ``` from rest_framework_bulk import BulkListSerializer class BulkCreateListSerializer(BulkListSerializer): def create(self, validated_data): ModelClass =...

I'm using this with HyperlinkedModelSerializer and so far it seems to be working fine... is there something I'm missing?

Specifically the issue here is that you might be looping over one iterable but want to have multiple images rendered for each item in the iterable - say, different sizes...

Have you already looked at [daguerre-preadjust](https://django-daguerre.readthedocs.io/en/latest/guides/commands.html#manage-py-daguerre-preadjust-remove-nocreate)? Does it meet your needs? It sounds like you're looking for a solution that does the adjustment creation when the image is uploaded rather...

Eh, It's still a useful ticket. I'd be curious to know more about your use case if it's something you'd be willing to share?

When you say the AJAX URLs are cached, do you mean that your site is using django `{% cache %}` tags? Or do you mean cached in the browser? Or...

We would certainly welcome patches for additional ImageMagick support.

I've been reticent to add ImageMagick support because it's such a PITA to use. But [Wand](http://docs.wand-py.org/en/0.3.8/) looks like it makes things a lot easier. Maybe the time has come. @harrislapiroff...