Metadata-Version: 2.1
Name: django-file
Version: 1.0.3
Summary: Django File Relative
Home-page: https://github.com/django-xxx/django-file
Author: Hackathon
Author-email: kimi.huang@brightcells.com
License: UNKNOWN
Keywords: Django File
Platform: UNKNOWN
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
Requires-Dist: django-file-download (>=1.0.1)
Requires-Dist: django-file-md5 (>=1.0.2)
Requires-Dist: django-file-upload

===========
django-file
===========

Django File Relative

Installation
============

::

    pip install django-file


Usage
=====

::

    from django_file import calculate_md5

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



