Last updated:
0 purchases
cf s3field 0.0.4
Django has ImageField and FileField which can be used for file and image operations. Django fields has problem that they store image and files on disk. They also don't delete older files when new files are uploaded. To solve this issue new field developed. cf_s3field.S3ImageField-----------------------``s3ImageField`` is django model field which is replacement for django ``ImageField``. ```pythonfrom cf_s3field.files import S3ImageFieldclass User(models.Model): first_name = models.CharField(max_length=100) profile_pic = S3ImageField(bucket='<your bucket>', key='profile_user_{first_name}') user = User.objects.get(id=1)user.first_name = "Hitul"user.save()```In above example key ``first_name`` will be replaced by ``Hitul``. ImageField will also accept default django ImageField parameters. key is file name format. In s3 you will store multiple files. To seperate all images from each other key is introduced. Key values will be repalced by values specified in as extra attributes.cf_s3field.S3FileField-----------------------``s3FileField`` is django model field which is replacement for django ``FileField``. ```pythonfrom cf_s3field.files import S3ImageFieldclass User(models.Model): first_name = models.CharField(max_length=100) resume = S3FileField(bucket='<your bucket>', key='profile_user_{first_name}') user = User.objects.get(id=1)user.first_name = "Hitul"user.save()```0.0.4 - Fri Oct 30------------------- Django 1.7 support0.0.3 - Wed Oct 28------------------- No need to specifify migrate as argument- Lazy connection implemented. When someone uploads at that time connection to boto will be created. 0.0.2 - Mon Oct 26------------------- README.md file changed to README.rst- Debug statements removed0.0.1 - Sat Oct 24 ------------------Initial release
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.