django_openS3
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.
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 details)
File details
Details for the file django_openS3-0.1.0.tar.gz.
File metadata
- Download URL: django_openS3-0.1.0.tar.gz
- Upload date:
- Size: 301.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27bd4fbc9f93d1fad931f8f2124dd8d659aaf80d1d1ecfbf4079ad085ee1cf55
|
|
| MD5 |
a92df8dde3d99b1b91554e08f372501b
|
|
| BLAKE2b-256 |
776c4bdcd49e31af960741bcabc81921081fbbfa40f206122a0e2fd9d5188fbb
|