Akbarak Python SDK (PyPI)
The official Python wrapper for the Akbarak processing engine. Perfect for automation scripts, Flask/Django backends, and data pipelines.
Installation
pip install filecast-sdkExample: Cloud Conversion
from filecast import Akbarak
fc = Akbarak(api_key="your_api_key")
# Upload and convert to WebP
result = fc.upload(
"dataset/photo_001.jpg",
format="webp",
quality=80
)
print(f"File processed: {result.url}")API Reference
| Method | Description |
|---|---|
| upload() | Uploads a local file to the secure Akbarak cloud storage. |
| get_metadata() | Retrieve resolution, size, and EXIF summary of a specific file ID. |
| batch_process() | Parallel processing for large-scale image transformations. |