The H51 Python library provides a pythonic interface to the H51 API.
Project description
H51 Python Library
The H51 Python library provides a pythonic interface to the H51 API. It includes an API client class, a set of resource classes and classes for configuring core analyzers and transforms.
Installation
pip install h51
Requirements
- Python 3.7+
Usage
import h51
client = h51.Client('your_api_key...')
# Create an asset
with open('image.bmp') as f:
asset = h51.resources.Asset.create(client, f)
# Analyze the image asset to find its dominant colours and focal point
asset.analyze([
h51.analyzers.images.DominantColors(),
h51.analyzers.images.FocalPoint()
])
# Create web optimized variations of the image
h51.resources.Variation.create(
asset,
{
'x1': [
h51.transforms.images.AutoOrient(),
h51.transforms.images.FocalPointCrop(aspect_ratio=0.5),
h51.transforms.images.Fit(640, 640),
h51.transforms.images.Output('WebP')
],
'x2': [
h51.transforms.images.AutoOrient(),
h51.transforms.images.FocalPointCrop(aspect_ratio=0.5),
h51.transforms.images.Fit(1280, 1280),
h51.transforms.images.Output('WebP')
]
}
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
H51-0.0.10.tar.gz
(10.4 kB
view details)
File details
Details for the file H51-0.0.10.tar.gz
.
File metadata
- Download URL: H51-0.0.10.tar.gz
- Upload date:
- Size: 10.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 249c9f6daf3999d84c4ed4a3100443c2d03b80bf7b47bd99d1dded7cb593c33c |
|
MD5 | 2453e5cf694ca2e71d49ca6bf53fc522 |
|
BLAKE2b-256 | 5a0d279e353a1f1da698978b555f7e180500cc4e318d9cb8d411b825a52c0ca8 |