是否有使用Dropbox作为django媒体文件存储的简洁方法?就像您在此处描述的 s3boto 和 AmazonS3 一样:How to set-up a Django project with django-storages and Amazon S3
由于
答案 0 :(得分:2)
django-storages准备好了一个Dropbox实现,只是
pip install dropbox django-storages
并在您的设置文件中:
INSTALLED_APPS + =( '存储装置&#39 ;, )
DEFAULT_FILE_STORAGE =' storages.backends.dropbox.DropBoxStorage'
来自:http://django-storages.readthedocs.io/en/latest/backends/dropbox.html