Metadata-Version: 1.1
Name: django-suuze-upload
Version: 0.1.0
Summary: An app that provides django integration create uptoken for suuze upload service
Home-page: UNKNOWN
Author: wongxinjie
Author-email: wongxinjie@grid-safe.com
License: MIT
Description: =========
        django-suuze-upload
        =========
        
        |Build Status|
        
        django-suuze-upload is a simple app that allows you to get suuze private file upload services
        uptoken. Using this uptoken you can easily upload file with js-sdk in your project.
        
        ============
        Requirements
        ============
        
        * `Django <https://www.djangoproject.com/>`_ (1.9+)
        * `requests <http://docs.python-requests.org/en/master/>`_ (2.11.1+)
        
        ============
        Installation
        ============
        
        * Install ``django-suuze-upload`` (or `download from PyPI <>`_):
        
        .. code-block:: python
        
            pip install django-suuze-upload -i http://p.int.cdnzz.net:19883/simple/
        
        * Add ``django_suuze_upload`` to ``INSTALLED_APPS`` in ``settings.py``:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                # other apps
                "django_suuze_upload",
            )
        
        * Configure your queues in django's ``settings.py``
        
        .. code-block:: python
        
            SUUZE_UPLOAD_CONFIG = {
                # domain provide upload file service
                'domain': 'http://upload-file.cdnzz.com',
                # web app namn
                'app': 'upload-file-demo',
                # direction where holds uploaded file
                'path': 'app/upload',
                # access_key to generate uptoken
                'access_key': 'xxxxxxxx',
                # optional, in second, default is 1800
                # 'expire': 1800,
            }
        
        
        =====
        Usage
        =====
        
        Fetch uptoken in your project
        -------------------------
        
        `django-suuze-upload` allows you to easily fetch uptoken and using uptoken with upload-js-sdk.
        
        .. code-block:: python
        
            from django_suuze_upload import fetch_uptoken
            uptoken = fetch_uptoken()
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
