Skip to main content

Abraia Python SDK

Project description

PyPI Build Status Coverage Status

Abraia API client for Python

Python client for the Abraia API, used to smartly transform and optimize (compress) images on-line. Read more at https://abraia.me/docs.

Optimize images for Web with no quality damage based on perception-driven technology.

  • Optimal image compression with our perceptual adjustment to preserve the quality and maximize the compression.
  • Smart crop and resize images with our saliency and aesthetic based model which balances between content and aesthetics.
abraia optimize --width 800 --height 400 https://images.pexels.com/photos/700948/pexels-photo-700948.jpeg images/skater.jpg

Optimized and smart cropped skater

The example takes a 10.1MB image by Willian Was from Pexels with a size of 4865x3321 pixels and automatically generates a 94.4kB header of 800x400 pixels, cropping, resizing, and optimizing the image to directly be used on Web.

Installation

The Abraia python client works in Windows, Mac, and Linux with Python 2 and 3 (python>=2.6.5).

Install the API client and the CLI with a simple command:

pip install -U abraia

Verify that the abraia CLI is correctly installed:

abraia --version

If you get a message of command not found try to uninstall the package and install it again globally:

pip uninstall abraia
sudo pip install abraia

Finally, configure your free API Key using the command bellow:

abraia configure

Command line interface

With the CLI tool you can optimize and resize images by batches.

You can easily compress a folder of images with a simple command:

abraia optimize images

Batch output

To resize an image you just need to specify the width or the height of the image:

abraia optimize --width 500 images/lion.jpg images/lion_500.jpg

Resized lion

To automatically crop and resize specify both the width and height size parameters:

abraia optimize --width 333 --height 333 images/lion.jpg images/lion_333x333.jpg

Smart cropped lion

To filter and image specify some of the available filters:

abraia optimize --width 333 --height 333 --filter desaturate images/lion.jpg images/filtered.jpg

Filtered lion

Moreover, images can be converted from one format to another changing the filename extension for the destination file.

abraia optimize images/jaguar.png images/jaguar.jpg

Fluent API

Abraia fluent API is the easiest way to compress and transform images with python. You just need to define the source of the image, the transformation operation, and the sink for the resultant image.

import abraia

abraia.from_file('images/bird.jpeg').resize(
    width=375, height=375).to_file('images/bird_375x375.jpg')

abraia.from_url('https://api.abraia.me/files/demo/birds.jpg').resize(
    width=750).to_file('images/birds_750.jpg')

abraia.from_store('birds.jpg').resize(
    width=375, height=375).to_file('images/birds_375x375.jpg')

Smart croppend bird Smart cropped birds

Smart cropped image examples

All the operation parameters are automatically chosen to provide the best results balancing quality and file size for a perfectly responsive website.

PNG and WebP images can significantly optimized also.

abraia.from_file('images/jaguar.png').to_file('jaguar_o.jpg')
abraia.from_file('images/jaguar.png').to_file('jaguar.jpg')

PNG Jaguar original PNG Jaguar optimized JPEG Jaguar optimized

Original PNG (45KB) vs optimized PNG (15.8KB) vs optimized JPEG (14.1KB)

License

This software is licensed under the MIT License. View the license.

Project details


Release history Release notifications | RSS feed

This version

0.4.3

Download files

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

Source Distribution

abraia-0.4.3.tar.gz (7.0 kB view details)

Uploaded Source

Built Distribution

abraia-0.4.3-py2.py3-none-any.whl (8.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file abraia-0.4.3.tar.gz.

File metadata

  • Download URL: abraia-0.4.3.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.6.3

File hashes

Hashes for abraia-0.4.3.tar.gz
Algorithm Hash digest
SHA256 5fd82c0a22c07a0b192d1cd063e5af3ab6bbae06f865d8f7237179c5e232f5fa
MD5 9595b16a6797fa9a94636bbc06c47be4
BLAKE2b-256 e0b99b95e336b151ba33c58f9d9df97fa5eeede8167b34d767568f2757f0914b

See more details on using hashes here.

File details

Details for the file abraia-0.4.3-py2.py3-none-any.whl.

File metadata

  • Download URL: abraia-0.4.3-py2.py3-none-any.whl
  • Upload date:
  • Size: 8.7 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.6.3

File hashes

Hashes for abraia-0.4.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 3b9c9b8bd44f13efbb210d057bb6d6113070ae3f4126ca59d1f3dd699fe84fa0
MD5 e46171f64c763baed65ca88e0b09bc16
BLAKE2b-256 6424709ddc1bda8218b0ece2797c9dc0664a1f44dc3b9588b039500a5c4beed5

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