A Python package for compressing images using TinyPNG API
Project description
TinyComp
TinyComp is a Python package that helps you compress images using the TinyPNG API. It provides both a command-line interface and a Python API for easy integration into your projects.
Features
- Automatic API key management and rotation
- Automatic API key acquisition when needed
- Batch image compression
- Support for multiple image formats (PNG, JPG, JPEG, SVG, GIF)
- Progress bar for tracking compression status
- Multi-threaded compression for better performance
- Automatic handling of API usage limits
- Automatic API key update through web automation
Installation
pip install tinycomp-amadeus
Usage
Command Line Interface
Compressing Images
# Basic compression
tinycomp compress --source ./images --target ./compressed
# With custom API key
tinycomp compress --source ./images --target ./compressed --api-key YOUR_API_KEY
# Set number of threads
tinycomp compress --source ./images --target ./compressed --threads 4
# Enable automatic API key updates when needed
tinycomp compress --source ./images --target ./compressed --auto-update-key
Managing API Keys
# Update API key (checks current key first)
tinycomp update-key
# Force update API key even if current one is valid
tinycomp update-key --force
Python API
from tinycomp import TinyCompressor
# Initialize compressor
compressor = TinyCompressor(api_key="YOUR_API_KEY") # API key is optional
# Enable automatic API key updates
compressor = TinyCompressor(auto_update_key=True)
# Compress a single image
compressor.compress_image("input.png", "output.png")
# Compress multiple images
compressor.compress_directory("./images", "./compressed")
# Update API key programmatically
from tinycomp.api_manager import APIKeyManager
api_manager = APIKeyManager()
new_key = api_manager.get_new_api_key()
Configuration
You can configure TinyComp using environment variables:
TINYCOMP_API_KEY: Your TinyPNG API keyTINYCOMP_MAX_THREADS: Maximum number of compression threads (default: 4)
Requirements
- Python 3.6 or higher
- Chrome/Chromium browser (for automatic API key updates)
- ChromeDriver matching your Chrome version
API Key Management
TinyComp includes an automatic API key management system that:
- Automatically rotates between multiple API keys
- Monitors remaining API usage
- Can automatically obtain new API keys when needed
- Saves API keys for future use
The package offers two modes for handling API key depletion:
- Default mode: Stops compression and notifies when the API key runs out
- Auto-update mode: Automatically obtains new API keys when needed (use
--auto-update-keyflag)
The automatic key update feature requires:
- Chrome/Chromium browser installed
- ChromeDriver in your system PATH or in the working directory
- Internet connection for accessing TinyPNG website
License
This project is licensed under the MIT License - see the LICENSE file for details.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tinycomp_amadeus-0.1.8.tar.gz.
File metadata
- Download URL: tinycomp_amadeus-0.1.8.tar.gz
- Upload date:
- Size: 21.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f59d334d034361ccb4337b0654198b78bacd1dc5293ec0aa8b4f78685511132c
|
|
| MD5 |
df84f10d37fd8f58aceac7b488823954
|
|
| BLAKE2b-256 |
a2735a0bdb684ebbbdcaabefadc54811f67697b7b7c9ff77182b20e02f47d3e9
|
File details
Details for the file tinycomp_amadeus-0.1.8-py3-none-any.whl.
File metadata
- Download URL: tinycomp_amadeus-0.1.8-py3-none-any.whl
- Upload date:
- Size: 23.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f711918d5d976367494c40fcf35dcf1ac88d63b0939f83996f08600e366af838
|
|
| MD5 |
f1bf85ee232a1197e7827425ba66064b
|
|
| BLAKE2b-256 |
26c093b475d2444702f46bcdd58089f454591e000ab8271fc6f9d243c83e04b5
|