#!/usr/bin/env python # DT Home # # Douglas Thrift # # dthome.py import bottle @bottle.get('/') def index(): return '

It works!

' if __name__ == '__main__': bottle.run()