معرفی شرکت ها


cf_s3field-0.0.4


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

S3 fields to upload images to s3 instead of file system
ویژگی مقدار
سیستم عامل -
نام فایل cf_s3field-0.0.4
نام cf_s3field
نسخه کتابخانه 0.0.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Hitul Mistry
ایمیل نویسنده UNKNOWN
آدرس صفحه اصلی UNKNOWN
آدرس اینترنتی https://pypi.org/project/cf_s3field/
مجوز UNKNOWN
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``. ```python from cf_s3field.files import S3ImageField class 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``. ```python from cf_s3field.files import S3ImageField class 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 support 0.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 removed 0.0.1 - Sat Oct 24 ------------------ Initial release


نحوه نصب


نصب پکیج whl cf_s3field-0.0.4:

    pip install cf_s3field-0.0.4.whl


نصب پکیج tar.gz cf_s3field-0.0.4:

    pip install cf_s3field-0.0.4.tar.gz