david / django-storages

Support for many storages (S3, MogileFS, etc) in Django.

Clone this repository (size: 192.4 KB): HTTPS / SSH
$ hg clone http://code.welldev.org/django-storages

Requirements

Mosso's Cloud Files python module http://www.mosso.com/cloudfiles.jsp

Usage

Add the following to your project's settings.py file:

1
2
3
4
CLOUDFILES_USERNAME = 'YourUsername'
CLOUDFILES_API_KEY = 'YourAPIKey'
CLOUDFILES_CONTAINER = 'ContainerName'
DEFAULT_FILE_STORAGE = 'backends.mosso.CloudFilesStorage'

Optionally, you can implement the following custom upload_to in your models.py file. This will upload the file using the file name only to Cloud Files (e.g. 'myfile.jpg'). If you supply a string (e.g. upload_to='some/path'), your file name will include the path (e.g. 'some/path/myfile.jpg').

1
2
3
4
from backends.mosso import cloudfiles_upload_to

class SomeKlass(models.Model):
    some_field = models.ImageField(upload_to=cloudfiles_upload_to)

Alternatively, if you don't want to set the DEFAULT_FILE_STORAGE, you can do the following in your models:

1
2
3
4
5
6
7
from backends.mosso import CloudFilesStorage, cloudfiles_upload_to

cloudfiles_storage = CloudFilesStorage()

class SomeKlass(models.Model):
    some_field = models.ImageField(storage=cloudfiles_storage,
                                   upload_to=cloudfiles_upload_to)

This revision is from 2010-06-20 07:47