Simple tool that allows to capture a screenshot from a browser.
python setup.py install
python setup.py bdist_egg
cd dist
easy_install <package_name>
You can use SeleShot as a standalone application:
seleshot.py -u http://www.python.org
or inside your code:
from seleshot import create
s = create()
s.get_screen(url = "http://www.python.org").save("img.png")
s.close()
See AUTHORS file.
SeleShot is released under The MIT License. See LICENSE file.