Skip to main content

Django storage with Qingstor

Project description

Django Qingstor Storage

A Django storage backend with Qingstor.

Requirements

  • Python3
  • Django >= 2.0
  • qingstor-sdk >= 2.2.6

Installation

Using venv is highly recommended.

Install by PyPI:

pip install django-qingstor-storage

Install by source code, just clone the code, and run following commands to install:

cd django_qingstor_storage
python setup.py install

Settings

Edit your settings.py and set default(or other name) storage backend:

# set storage backend
DEFAULT_FILE_STORAGE = 'django_qingstor_storage.backends.QinstorStorage'

And add Qingstor config in the settings.py:

# Qingstor setting starts here
QINGSTOR_ACCESS_KEY_ID = 'YOUR_ACCESS_KEY_ID'
QINGSTOR_SECRET_ACCESS_KEY = 'YOUR_SECRET_ACCESS_KEY'
QINGSTOR_ZONE = 'YOUR_QINGSTOR_ZONE'
QINGSTOR_BUCKET = 'YOUR_QINGSTOR_BUCKET'

Also, you can set the Qingstor config by setting system environment variables with the following commands:

export QINGSTOR_ACCESS_KEY_ID=YOUR_ACCESS_KEY_ID
export QINGSTOR_SECRET_ACCESS_KEY=YOUR_SECRET_ACCESS_KEY
export QINGSTOR_ZONE=YOUR_QINGSTOR_ZONE
export QINGSTOR_BUCKET=YOUR_QINGSTOR_BUCKET

Demo site

We also provide a demo site with Django admin. Just clone the code, edit settings.py in demo_site directory. And use the following commands to make it running:

python manage.py migrate
python manage.py createsuperuser
python manage.py runserver

Open your browser to visit http://localhost:8000 .

See Also

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_qingstor_storage-0.1.1.tar.gz (3.7 kB view hashes)

Uploaded Source

Built Distribution

django_qingstor_storage-0.1.1-py3-none-any.whl (4.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page