Skip to main content

No project description provided

Project description

django_openS3

Documentation Status tests

An openS3 wrapper for use with Django.

Installation

$ pip install django_openS3

To install the latest development version:

$ git clone git@github.com:logston/django_openS3.git
$ cd django_openS3
$ python setup.py install

Usage

# Add django_openS3 to your project's list of installed apps.
INSTALLED_APPS = [
    ...
    'django_openS3',
    ...
]

# Set your desired bucket and authentication/authorization info.
AWS_STORAGE_BUCKET_NAME = os.environ['AWS_S3_BUCKET']
AWS_ACCESS_KEY_ID = os.environ['AWS_S3_ACCESS_KEY']
AWS_SECRET_ACCESS_KEY = os.environ['AWS_S3_SECRET_KEY']

# Tell django to use django_openS3 for storing static files and media.
DEFAULT_FILE_STORAGE = 'django_openS3.storage.S3MediaStorage'
STATICFILES_STORAGE = 'django_openS3.storage.S3StaticStorage'

# Optionally set the directories in which static and media
# files will be saved to. Defaults are listed below.
S3_STATIC_DIR = '/static/'
S3_MEDIA_DIR = '/media/'

Bug Tracker

Please report bugs!! Report bugs at django_openS3’s GitHub repo.

Further Documentation

Further documentation can be found on Read the Docs.

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_openS3-0.1.0.tar.gz (301.3 kB view hashes)

Uploaded Source

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