I've found out how to load images from the file system into Django, but how do you get them out?
I've figured out how to get stuff from the database in my management command and can do a query like:
for m in my_models.objects.filter(get=some):
image = m.image
# How do I copy this to another non-django location?