25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

utils.py 430 B

12345678910111213141516
  1. import hashlib
  2. import os
  3. def upload_path(instance, filename, **kwargs):
  4. hasher = hashlib.md5()
  5. for chunk in instance.image.chunks():
  6. hasher.update(chunk)
  7. hash = hasher.hexdigest()
  8. base, ext = os.path.splitext(filename)
  9. return '%(first)s/%(second)s/%(hash)s/%(base)s%(ext)s' % {
  10. 'first': hash[0],
  11. 'second': hash[1],
  12. 'hash': hash,
  13. 'base': base,
  14. 'ext': ext,
  15. }