imageMe is a super simple image gallery server.
Think python -m http.server for pictures.
To run the image server on port 8000:
curl https://raw.githubusercontent.com/Sitolam/imageme/master/imageme.py | pythonGet hold of a copy of imageme.py. For really easy use put it in your PATH.
You could clone this repo:
> git clone https://github.com/sitolam/imageme.gitOr just grab the file directly:
> wget https://cdn.rawgit.com/sitolam/imageme/master/imageme.pyRun imageme.py from the root directory to serve from:
> cd /path/to/my/pics
> imageme.py
Processing .
Creating index file ./imageme.html
Processing ./photos
Creating index file ./photos/imageme.html
Processing ./photos/holiday
Creating index file ./photos/holiday/imageme.html
Processing ./photos/family
Creating index file ./photos/family/imageme.html
Processing ./super_secret_stay_out
Creating index file ./super_secret_stay_out/imageme.html
Your images are at http://127.0.0.1:8000/imageme.htmlYou can specify a port, just like you can with SimpleHTTPServer:
> imageme.py 5678
Processing .
...
Your images are at http://127.0.0.1:5678/imageme.htmlHit the URL imageMe tells you in your browser, and have fun exploring.
