Skip to main content

A simple Django app that allows for optimization of images.

Project description

Optimized-image is a simple Django library to allows optimization of images by using TinyPNG. Saving an image locally to an OptimizedImageField uses TinyPNG to optimize the image, then S3 to store it.

Detailed documentation is in the “docs” directory.

Quick start

  1. Add “optimized_image” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'optimized_image',
    ]
  2. Because optimized_image uses TinyPNG and S3, you will need to get API keys from each of them. Visit https://tinypng.com/developers and http://docs.aws.amazon.com/AmazonS3/latest/gsg/CreatingABucket.html for more details on getting a TinyPNG API key (easy) and setting up an S3 bucket (harder). Once you have done so, add the following settings to your settings file. Note: it is a good idea to keep most, if not all, of these secret:

    TINYPNG_KEY # Go to
    S3_KEY_ID
    S3_ACCESS_KEY
    S3_REGION
    S3_BUCKET
    S3_OPTIMIZED_IMAGES_FOLDER
  3. Migrate the optimized_image models:

    python manage.py migrate optimized_image
  4. You may use the OptimizedImageField by importing it:

    from optimized_image.fields import OptimizedImageField

    and saving images into it, the same way you would to a Django ImageField.

  5. You may get an optimized url by using the get_optimized_url function for an instance of an object. For a blogpost with an image field that has had an image uploaded you may run:

    from optimized_image.utils import get_optimized_url
    get_optimized_url(blogpost, ‘image’)
  6. If you want to change legacy models with Django’s Image fields and optimize the images in those fields, you may do so for legacy models by passing a list of legacy model classes (not their instances) to the following function:

    from optimized_image.utils import optimize_legacy_images_in_model_fields
    optimize_legacy_images_in_model_fields([LegacyModelClass1, LegacyModelClass2])

    Note: this function makes calls to TinyPNG and S3, so it can take a really long time, depending on how many images you have. You may pass in 1 for the verbosity parameter to get logs on the progress:

    optimize_legacy_images_in_model_fields([LegacyModelClass1, LegacyModelClass2], verbosity=1)

Note about TinyPNG API keys: If you obtain the free TinyPNG API token, you are limited to 500 image optimizations per month, so this function may fail if you have a lot of images. You may either obtain a paid API key, or wait until next month.

Project details


Download files

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

Source Distribution

optimized-image-0.0.1.tar.gz (7.5 kB view details)

Uploaded Source

File details

Details for the file optimized-image-0.0.1.tar.gz.

File metadata

File hashes

Hashes for optimized-image-0.0.1.tar.gz
Algorithm Hash digest
SHA256 ac7160fce4f05410cddf06fcb40dc409012f7c0b671839efe30006ff84ecca75
MD5 e45300fdf77ce994c7150807c848e2c4
BLAKE2b-256 ab7cf88d25a0c8ff7fed766d49927bd0bc873a0bf8d705b5f80159819de46266

See more details on using hashes here.

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