All Downloads are FREE. Search and download functionalities are using the official Maven repository.

twisted.web.demo.py Maven / Gradle / Ivy

The newest version!
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.

"""
I am a simple test resource.
"""

from twisted.web import static


class Test(static.Data):
    isLeaf = True
    def __init__(self):
        static.Data.__init__(
            self,
            """
            
            Twisted Web Demo
            
            Hello! This is a Twisted Web test page.
            
            
            """,
            "text/html")




© 2015 - 2024 Weber Informatics LLC | Privacy Policy