Sophie

Sophie

distrib > Mageia > 7 > armv7hl > by-pkgid > da3f2a4ce20b26cb5976aa965c74e071 > files > 3265

python2-twisted-19.2.0-1.mga7.armv7hl.rpm

from twisted.web import soap
import os

def getQuote():
    return "That beverage, sir, is off the hizzy."

class Quoter(soap.SOAPPublisher):
    """Publish one method, 'quote'."""

    def soap_quote(self):
        return getQuote()

resource = Quoter()