Django File Md5
项目描述
Django File Md5
安装
pip install django-file-md5
用法
from django_file_md5 import calculate_md5
def xxx(request):
photo = request.FILES.get('photo', '')
# if photo:
# md5 = calculate_md5(photo)
md5 = calculate_md5(photo)