A Python library for generating thumbor image processing URLs. Version 2.0.2. Provides cryptographic URL signing and parameter building for secure image transformations. Compatible with Python 3.6+.
pip install libthumborNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Create a CryptoURL instance with your thumbor security key and generate signed URLs for secure image transformation.
Use crypto.generate(image_path='/some/image.jpg') instead of image_url.
Ensure key is a str, not bytes: CryptoURL(key='my-key').
Use the 'hash_algorithm' parameter: CryptoURL(key='...', hash_algorithm='sha1').
Update to the latest version: pip install --upgrade libthumbor. Then use: from libthumbor import CryptoURL.
Use keyword argument: CryptoURL(key='your-key').
Convert bytes to str: CryptoURL(key=b'key'.decode()).
No dependency data recorded yet.
No resource links recorded.