#> pip install zilch #> easy_install pyramid #> aptitude -y install python-webhelpers sqlite sqlite3 #> vim test_zilch.py from zilch.store import SQLAlchemyStore import zilch.client from zilch.client import capture_exception zilch.client.store = SQLAlchemyStore('sqlite:///exceptions.db') try: a = {} print a['d'] except Exception, e: capture_exception() #> python test_zilch.py #> zilch-web --host 0.0.0.0 --port 2222 --prefix=http://0.0.0.0/ sqlite:///exceptions.db Access below url http://:2222/