Metadata-Version: 2.1
Name: django-file
Version: 1.0.6
Summary: Django File Relative
Home-page: https://github.com/django-xxx/django-file
Author: Hackathon
Author-email: kimi.huang@brightcells.com
Keywords: Django File
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
Description-Content-Type: text/markdown

# django-file
Django File Relative

## Installation
```shell
pip install django-file
```

## Usage
```python
from django_file import calculate_md5

def xxx(request):
    photo = request.FILES.get('photo', '')
    # if photo:
    #     md5 = calculate_md5(photo)
    md5 = calculate_md5(photo)
```
