Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jacobsvante/flask-resize
Flask extension for resizing, cropping and caching images.
https://github.com/jacobsvante/flask-resize
aws-s3 flask python redis resize-images
Last synced: about 2 months ago
JSON representation
Flask extension for resizing, cropping and caching images.
- Host: GitHub
- URL: https://github.com/jacobsvante/flask-resize
- Owner: jacobsvante
- License: other
- Created: 2013-11-10T02:04:28.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2021-07-10T07:28:21.000Z (over 3 years ago)
- Last Synced: 2024-10-07T08:47:23.533Z (3 months ago)
- Topics: aws-s3, flask, python, redis, resize-images
- Language: Python
- Homepage: https://flask-resize.readthedocs.io/
- Size: 155 KB
- Stars: 49
- Watchers: 3
- Forks: 11
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Flask-Resize
[![Travis CI build status (Linux)](https://travis-ci.org/jmagnusson/Flask-Resize.svg?branch=master)](https://travis-ci.org/jmagnusson/Flask-Resize)
[![PyPI version](https://img.shields.io/pypi/v/Flask-Resize.svg)](https://pypi.python.org/pypi/Flask-Resize/)
[![Downloads from PyPI per month](https://img.shields.io/pypi/dm/Flask-Resize.svg)](https://pypi.python.org/pypi/Flask-Resize/)
[![License](https://img.shields.io/pypi/l/Flask-Resize.svg)](https://pypi.python.org/pypi/Flask-Resize/)
[![Available as wheel](https://img.shields.io/pypi/wheel/Flask-Resize.svg)](https://pypi.python.org/pypi/Flask-Resize/)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/Flask-Resize.svg)](https://pypi.python.org/pypi/Flask-Resize/)
[![PyPI status (alpha/beta/stable)](https://img.shields.io/pypi/status/Flask-Resize.svg)](https://pypi.python.org/pypi/Flask-Resize/)
[![Coverage Status](https://coveralls.io/repos/jmagnusson/Flask-Resize/badge.svg?branch=master)](https://coveralls.io/r/jmagnusson/Flask-Resize?branch=master)
[![Code Health](https://landscape.io/github/jmagnusson/Flask-Resize/master/landscape.svg?style=flat)](https://landscape.io/github/jmagnusson/Flask-Resize/master)## About
Flask extension for resizing images in your code and templates. Can convert from JPEG|PNG|SVG to JPEG|PNG, resize to fit and crop. File-based and S3-based storage options are available.
Created by [Jacob Magnusson](https://twitter.com/jacobsvante_).
## Installation
pip install flask-resize
# With S3
pip install flask-resize[s3]# With Redis caching
pip install flask-resize[redis]# With SVG source file support
pip install flask-resize[svg]# With all features above
pip install flask-resize[full]## Documentation
Found @ [flask-resize.readthedocs.io](https://flask-resize.readthedocs.io/).