django-storage-swift
django-storage-swift copied to clipboard
OpenStack Swift storage backend for Django
Add cache for files meta data. When key enabled, swift client fetch all meta data, last modified date in a single request. This speed-up a lot loading process, and collect...
I have `SWIFT_AUTO_BASE_URL=False` and `SWIFT_BASE_URL` in my config, yet it looks like publicURL is retrieved from keystone. The first traceback is not complete, any idea why? Is the last traceback...
In Class SwfitStorage, function _open()
When a field has a name with non ascii characters, i think the `url` method is buggy when temporary urls are activated: For instance, with a `FileField` with name equals...
``` >>> from django.core.files.storage import default_storage >>> default_storage.http_conn Traceback (most recent call last): File "", line 1, in File "C:\Python37\lib\site-packages\django\utils\functional.py", line 214, in inner return func(self._wrapped, *args) AttributeError: 'SwiftStorage' object...
I understand the caching implemented on `get_headers` (https://github.com/dennisv/django-storage-swift/blob/master/swift/storage.py#L303) is useful for the reasons described in the code, however it causes a little bit of a pain the following scenario: When...
``` DEFAULT_FILE_STORAGE = 'swift.storage.SwiftStorage' SWIFT_AUTH_URL = 'https://auth.selcdn.ru/v1' SWIFT_USERNAME = 'dn' SWIFT_PASSWORD = 'dd' SWIFT_CONTAINER_NAME = 'media' SWIFT_STATIC_BASE_URL = None ``` model `photo = models.ImageField(upload_to='')` and form `photo = forms.ImageField()` and...
Hi, I am currently using your app to upload a large static folder. The upload takes ~ 15 minutes. The app always uploads all of the static files and I...
This pull request adds both `CachedStaticSwiftStorage` and `ManifestStaticSwiftStorage`, based on `django.contrib.staticfiles` equivalents : [CachedStaticFilesStorage](https://docs.djangoproject.com/fr/1.11/ref/contrib/staticfiles/#cachedstaticfilesstorage) and [ManifestStaticFilesStorage](https://docs.djangoproject.com/fr/1.11/ref/contrib/staticfiles/#manifeststaticfilesstorage). There's not much code added, it mainly relies on staticfiles' mixins, but there's 2...
Dear Dev, I am looking for a library that would allow me to upload files to Swift using this authorization backend, so that the password is not seen by the...