microproduct/atmosphericDelay/ISCEApp/site-packages/twisted/web/demo.py

27 lines
554 B
Python
Raw Normal View History

2023-08-28 10:17:29 +00:00
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
"""
I am a simple test resource.
"""
from __future__ import absolute_import, division
from twisted.web import static
class Test(static.Data):
isLeaf = True
def __init__(self):
static.Data.__init__(
self,
b"""
<html>
<head><title>Twisted Web Demo</title><head>
<body>
Hello! This is a Twisted Web test page.
</body>
</html>
""",
"text/html")