#!/usr/bin/env python # DT Home # # Douglas Thrift # # dthome.py import bottle @bottle.get('/') def index(): return '<html><body><h1>It works!</h1></body></html>' if __name__ == '__main__': bottle.run()