An app that provides django integration create uptoken for suuze upload service
Project 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 upload file to suuze file store easily.
.. code-block:: python
from django.views import View
from django_suuze_upload import fetch_uptoken
from django_suuze_upload import is_uptoken_expire
from django_suuze_upload import upload_file
class Dome(View):
def post(self, request):
...
uptoken = fetch_uptoken()['uptoken']
....
# some logic to process upload file .etc
# check uptoken is expire or not
# is_uptoken_expire(uptoken)
file_object = request.FILES['filw']
rv = upload_file(uptoken, file_object)
....
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 upload file to suuze file store easily.
.. code-block:: python
from django.views import View
from django_suuze_upload import fetch_uptoken
from django_suuze_upload import is_uptoken_expire
from django_suuze_upload import upload_file
class Dome(View):
def post(self, request):
...
uptoken = fetch_uptoken()['uptoken']
....
# some logic to process upload file .etc
# check uptoken is expire or not
# is_uptoken_expire(uptoken)
file_object = request.FILES['filw']
rv = upload_file(uptoken, file_object)
....
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-suuze-upload-0.1.1.tar.gz
.
File metadata
- Download URL: django-suuze-upload-0.1.1.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c05684724fc0176ae9d69f29770ae29560a1ce4a8c96a7475a25d384b22aab6c
|
|
MD5 |
021fc537bc3b7714a7f10703f0d941ca
|
|
BLAKE2b-256 |
96de01ffa42e12c3c60c0ec868a7c186f47be7f2a9021c187e56d752f27df90f
|