/usr/share/doc/python-twisted-web/examples/silly-web.py is in python-twisted-web 16.6.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
"""
This shows an example of a bare-bones distributed web set up. The "master" and
"slave" parts will usually be in different files -- they are here together only
for brevity of illustration. In normal usage they would each run in a separate
process.
Usage:
$ python silly-web.py
Then visit http://localhost:19988/.
"""
from twisted.internet import reactor, protocol
from twisted.web import server, distrib, static
from twisted.spread import pb
# The "master" server
site = server.Site(distrib.ResourceSubscription('unix', '.rp'))
reactor.listenTCP(19988, site)
# The "slave" server
fact = pb.PBServerFactory(distrib.ResourcePublisher(server.Site(static.File('static'))))
reactor.listenUNIX('./.rp', fact)
reactor.run()
|