在Twisted中修改简单代理中的html

时间:2016-04-22 19:44:14

标签: python html proxy twisted reverse-proxy

我在Twisted中写了一个简单的代理脚本,它运行得很好:

from twisted.internet import reactor
from twisted.web import proxy, server
site = server.Site(proxy.ReverseProxyResource('example.com', 80, ''.encode("utf-8")))
reactor.listenTCP(80, site)
reactor.run()

唯一的问题是,我想在我的服务器上呈现资源之前修改我的脚本从第三方网站获取的html。我不确定在twisted/web/proxy.py中我将插入/修改代码的位置。

0 个答案:

没有答案