Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-updates > by-pkgid > 7b973fb3c8298f606d9b435aff551ab6 > files > 3226

python2-twisted-19.2.1-1.1.mga7.armv7hl.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()