Initial import to Tizen
[profile/ivi/python-twisted.git] / doc / web / howto / listings / xmlquote.rpy
1 from twisted.web import xmlrpc
2 import os
3
4 def getQuote():
5     return "What are you talking about, William?"
6
7 class Quoter(xmlrpc.XMLRPC):
8     
9     def xmlrpc_quote(self):
10         return getQuote()
11     
12 resource = Quoter()