This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.
To capture the video (filesize: 19MB), using the free "QuickTime Player" application:
| from rest_framework import mixins | |
| from rest_framework.generics import SingleObjectAPIView | |
| from yourapp.mixins import PartialUpdateModelMixin | |
| class RetrievePartialUpdateDestroyAPIView(PartialUpdateModelMixin, | |
| mixins.RetrieveModelMixin, | |
| mixins.UpdateModelMixin, | |
| mixins.DestroyModelMixin, | |
| SingleObjectAPIView): |