我正在尝试使用 twisted 运行 klein,因此我可以在不同的路径(exp: example.com/example1
, example.com/example2
)上运行 twisted 脚本。所以我做了一个简单的脚本:
from klein import run, route, Klein
from twisted.internet import reactor
from twisted.web import proxy, server
from twisted.python import log
@route('/example')
def home(request):
site = server.Site(proxy.ReverseProxyResource('www.example.com', 80, b''))
reactor.listenTCP(80, site)
reactor.run()
run("My_IP_Address", 80)
但是每当我运行这个脚本时,我都会收到一个错误:twisted.internet.error.CannotListenError: Couldn't listen on any:80: [Errno 98] Address already in use.
我对 Klein 很陌生,我不确定它是如何工作的,有人能告诉我我做错了什么吗?谢谢!