Every repository with this icon (
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
__init__.py | ||
| |
readme.md | ||
| |
setup.py | ||
| |
smooshy/ |
Huh?
This is a simple script written in Python to compress images. Often, images aren't as small as they could be.
Smooshy.py solves this problem by allowing you to compress all of those nasty extra bytes away without all the usual confusion surrounding fiddling around in the Save for Web Photoshop dialog.
How?
In fact, Smooshy is basically just a script which takes advantage of the awesome smush.it -- all your images are sent for compression over to smush.it -- so be careful you don't send something you want to keep ultra-private.
It's all safe
Smooshy creates backups of all your files while it's sprinkling its pixie dust over your images. If something goes wrong, your originals won't disappear into a black hole.
Also, if the resulting smooshed file is no smaller than the original, it won't be used.
Usage
Current Directory
cd <directory of your choice>smooshy .- Watch the magic.
Specific files/directories
smooshy <as many files or directories as you'd like to smush here>- Watch the magic.
Pythonic
Of course, you can always use the classes and functions directly (I do this as part of a deployment script):
>>> from shooshy import smoosher
>>> smoosher.Smoosher(<file path).smoosh()
... # Smooshes the file
>>> smoosher.recursive_smoosher([<file or directory>... ])
... # Smooshes all files / all files recursively in directories
Installation
git clone git@github.com:obeattie/smooshy-py.git smooshycd smooshypython setup.py install
Dependencies
- simplejson
- Python 2.5 or above (probably not Python 3, though)
Credit where credit's due…
This script is essentially a Python port of smusher -- I'm a Python guy so I hope you'll forgive me for making my own version :)
As with smusher, consider this code in the public domain, do whatever the hell you want with it (fork away :) but don't blame me for any mess caused by it.








