A simple Django storage backend for aliyun oss2.
Project description
Django aliyun OSS2
Django storage for aliyun OSS
Features
- Django file storage for aliyun OSS
- Django static file storage for aliyun OSS
- Works in Python 3+
Install
$ pip install django-aliyun-oss2
Configurations
put the following config in your settings.py file:
ACCESS_KEY_ID = "<your access key id>"
ACCESS_KEY_SECRET = "<your access key secret>"
# The URL of AliCloud OSS endpoint
# Refer https://www.alibabacloud.com/help/zh/doc-detail/31837.htm for OSS Region & Endpoint
END_POINT = "<your access endpoint>"
BUCKET_NAME = "<your bucket name>" # if not exist in aliyun oss platform, it will created automatically
ALIYUN_OSS_CNAME = "" # custom domain. optional
BUCKET_ACL_TYPE = "private" # bucket access type. available value: private, public-read, public-read-write
ALIYUN_OSS_HTTPS = False # optional config. determine use https or not. if not declare, this value will be False by default.
# storage media file
DEFAULT_FILE_STORAGE = 'django_aliyun_oss2.backends.AliyunMediaStorage'
# storage static file
STATICFILES_STORAGE = 'django_aliyun_oss2.backends.AliyunStaticStorage'
Usage
All of the static file storage settings are available for the staticfiles storage.
# The default location for your static files
STATIC_URL = '/static/'
Run following command to collect all sub-folder static of each app and upload to STATIC_URL:
$ python manage.py collectstatic
License
MIT LICENSE
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-aliyun-oss2-0.2.tar.gz.
File metadata
- Download URL: django-aliyun-oss2-0.2.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/3.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15645b734e44cc367f1a1bf14437b0eb8255c03e5843a83afe37d4623345e3a6
|
|
| MD5 |
a5f256f8ff5e1b3b9c8497cee87fd7de
|
|
| BLAKE2b-256 |
82b6440b918626c6551cddb1ad0a53187e6ef58fee96be1253bb9defe28fcb2e
|