Mercurial > hg > env-test-daniele
view cherry1.py @ 21:a647bd7dd38d
added auto commit scrip
author | gyorgyf |
---|---|
date | Tue, 19 Mar 2013 16:50:54 +0000 |
parents | 032bc65ebafc |
children |
line wrap: on
line source
import cherrypy from cherrypy.lib.static import serve_file class OnePage(object): def index(self): return "one page!" index.exposed = True class TwoPage(object): def index(self): return serve_file('/Users/tmc/write_it.txt', "audio/mpeg", "attachment") index.exposed = True class HelloWorld(object): onepage = OnePage() twopage = TwoPage() def index(self): return "hello world" index.exposed = True cherrypy.quickstart(HelloWorld())