Add a tool to compute how much storage shared images have saved us.

This commit is contained in:
jakedt 2014-03-07 15:37:56 -05:00
parent 536a91cbb8
commit 75d0b34f4b

View file

@ -0,0 +1,14 @@
from data.database import Image, ImageStorage
query = ImageStorage.select().annotate(Image)
saved_bytes = 0
total_bytes = 0
for storage in query:
if storage.image_size is not None:
saved_bytes += (storage.count - 1) * storage.image_size
total_bytes += storage.count * storage.image_size
print "Saved: %s" % saved_bytes
print "Total: %s" % total_bytes