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.
Release files for django_openS3 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django_openS3-0.1.0.tar.gz | 301.3 kB | Details |
Release files / django_openS3-0.1.0.tar.gz
| Download URL | django_openS3-0.1.0.tar.gz |
|---|---|
| Size | 301.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
27bd4fbc9f93d1fad931f8f2124dd8d659aaf80d1d1ecfbf4079ad085ee1cf55
|
|
BLAKE2b-256 checksum How to use checksums |
776c4bdcd49e31af960741bcabc81921081fbbfa40f206122a0e2fd9d5188fbb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |