Twisted Web provides a simple, stable HTTP server built on top of Twisted framework. It is suitable for all types of web apps and web services. It provides a flexible resource publishing API, and implements HTTP 1.0 with some 1.1 features. It can also be used for hosting WSGI applications.
Questions tagged [twisted.web]
199 questions
0
votes
1 answer
Tools to Test RPC twisted calls?
Are there any Tools / Chrome plugins like "Advanced REST Plugin" for Chrome that I can use to Test Twisted RPC JSON calls?
Or do I have to write some Python code to do this?

Ernest
- 814
- 3
- 12
- 25
0
votes
1 answer
Unhandled error in Deferred
It seems it is inner twisted error... It appears at regular intervals, and actually everything keep work fine, but may be it is my mistake? A code is pretty big, so I pasted it there, and the error:
07:51:32 startLive
07:51:34 time is off
07:51:34…

scythargon
- 3,363
- 3
- 32
- 62
0
votes
3 answers
Twisted Web behind Apache - How to correct links?
I am attempting to write a web application using the Twisted framework for python.
I want the application to work if run as a standalone server (ala twistd), or if Apache reverse proxies to it. E.g.
Apache https://example.com/twisted/ -->…

Carl
- 695
- 8
- 21
0
votes
1 answer
Twisted web - write() called after finish()?
I have the following Resource to handle http POST request with twisted web:
class RootResource(Resource):
isLeaf = True
def errback(self, failure):
print "Request finished with error: %s"%str(failure.value)
return failure
…

PawelRoman
- 6,122
- 5
- 30
- 40