Skip to main content

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.

Release files for optimized-image 0.0.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for optimized-image 0.0.1
File Size Uploaded
optimized-image-0.0.1.tar.gz 7.5 kB Details

Release files / optimized-image-0.0.1.tar.gz

Download URL optimized-image-0.0.1.tar.gz
Size 7.5 kB
Tags Source
SHA-256 checksum
How to use checksums
ac7160fce4f05410cddf06fcb40dc409012f7c0b671839efe30006ff84ecca75
BLAKE2b-256 checksum
How to use checksums
ab7cf88d25a0c8ff7fed766d49927bd0bc873a0bf8d705b5f80159819de46266
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.0.1 This release

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page