Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thumbor/libthumbor
Python's extensions to thumbor. These are used to generate safe urls among others.
https://github.com/thumbor/libthumbor
Last synced: 2 months ago
JSON representation
Python's extensions to thumbor. These are used to generate safe urls among others.
- Host: GitHub
- URL: https://github.com/thumbor/libthumbor
- Owner: thumbor
- License: mit
- Created: 2011-03-30T17:31:59.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2023-05-13T12:32:19.000Z (over 1 year ago)
- Last Synced: 2024-08-05T04:06:05.748Z (5 months ago)
- Language: Python
- Homepage: https://github.com/thumbor/libthumbor
- Size: 186 KB
- Stars: 63
- Watchers: 24
- Forks: 37
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING
- License: LICENSE
Awesome Lists containing this project
- starred-awesome - libthumbor - Python's extensions to thumbor. These are used to generate safe urls among others. (Python)
README
[![Build Status](https://secure.travis-ci.org/thumbor/libthumbor.png)](http://travis-ci.org/thumbor/libthumbor) [![Coverage Status](https://coveralls.io/repos/github/thumbor/libthumbor/badge.svg?branch=master)](https://coveralls.io/github/thumbor/libthumbor?branch=master)
libthumbor allows easy usage of
[thumbor](http://github.com/thumbor/thumbor) in Python. Check the docs for django integration.This version is compliant with the new URL generation schema (thumbor 3.0.0 and up).
## Using it
```python
from libthumbor import CryptoURLcrypto = CryptoURL(key='my-security-key')
encrypted_url = crypto.generate(
width=300,
height=200,
smart=True,
image_url='/path/to/my/image.jpg'
)
```## Docs
Check the wiki for more information on using libthumbor.
## Contributions
### Bernardo Heynemann
* Generic URL encryption
### Rafael Caricio
* Django Generic View and URL
### Fábio Costa
* Django Generic View and URL