Skip to main content

Custom django form field for downloading images from a URL on a URLInput.

Project description

=====
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'])

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-remote-image-0.1.tar.gz (3.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page