معرفی شرکت ها


django-remote-image-0.1


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Custom django form field for downloading images from a URL on a URLInput.
ویژگی مقدار
سیستم عامل -
نام فایل django-remote-image-0.1
نام django-remote-image
نسخه کتابخانه 0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Lucas Nascimento
ایمیل نویسنده lucascampostn@gmail.com
آدرس صفحه اصلی https://github.com/LucasCTN/django-remote-image
آدرس اینترنتی https://pypi.org/project/django-remote-image/
مجوز MIT License
===== Django-remote-image ===== Django-remote-image is a Django app that adds a new form field for images. The default widget is a text input, that accepts a URL of a image. The image is downloaded and can be passed to a ``ImageField`` in a model. Pillow needs to be installed. It is possible to whitelist and blacklist file extensions. Examples are shown below. Quick start ----------- $ pip install django-remote-image Using ----------- Using the field in a form: .. code:: python import remote_image import RemoteImageField class ExampleForm(forms.Form): image = RemoteImageField() Whitelisting file extensions (only the ones in the list will be permitted): .. code:: python import remote_image import RemoteImageField class ExampleForm(forms.Form): image = RemoteImageField(ext_whitelist=['png', 'jpg']) Blacklisting file extensions (the ones in the list will be blocked): .. code:: python import remote_image import RemoteImageField class ExampleForm(forms.Form): image = RemoteImageField(ext_blacklist=['png', 'jpg'])


نحوه نصب


نصب پکیج whl django-remote-image-0.1:

    pip install django-remote-image-0.1.whl


نصب پکیج tar.gz django-remote-image-0.1:

    pip install django-remote-image-0.1.tar.gz