Sophie

Sophie

distrib > Mageia > 6 > x86_64 > by-pkgid > 09408f3c1571cbb746da49a1d2f22702 > files > 3216

python-twisted-17.5.0-1.mga6.x86_64.rpm

# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.

"""
This example demostrates how to render a page using a third-party template
system.

Usage:
    $ twistd -n web --process=.rtl=twisted.web.script.ResourceTemplate --path /path/to/examples/

And make sure Quixote is installed.
"""

from twisted.web.resource import Resource


class ExampleResource(Resource):

    def render_GET(self, request):
        """\
<HTML>
    <HEAD><TITLE> Welcome To Twisted Python </title></head>

    <BODY><ul>"""
        for i in range(10):
            '<LI>';i
        """</ul></body>
</html>"""


resource = ExampleResource()