<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># -*- test-case-name: twisted.web.test -*-
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.

"""
Twisted Web: HTTP clients and servers, plus tools for implementing them.

Contains a L{web server&lt;twisted.web.server&gt;} (including an
L{HTTP implementation&lt;twisted.web.http&gt;}, a
L{resource model&lt;twisted.web.resource&gt;}), and
a L{web client&lt;twisted.web.client&gt;}.
"""

from incremental import Version
from twisted.python.deprecate import deprecatedModuleAttribute

from twisted._version import __version__ as version
__version__ = version.short()

deprecatedModuleAttribute(
    Version("Twisted", 16, 0, 0),
    "Use twisted.__version__ instead.",
    "twisted.web", "__version__")
</pre></body></html>