2

我有一个 Pyramid 应用程序,其中也有一些 Twisted 代码,所以我想使用 twistd 为应用程序提供服务,用一块石头杀死两只鸟。

这是我的 .tac 文件:

from twisted.web.server import Site
from twisted.web.wsgi import WSGIResource
from twisted.internet import reactor
from twisted.application import internet, service
import os

from pyramid.paster import get_app, setup_logging

config='/path/to/app/production.ini'
config = os.path.abspath(config)
port = 8888

application = get_app(config, 'main')

# Twisted WSGI server setup...
resource = WSGIResource(reactor, reactor.getThreadPool(), application)
factory = Site(resource)

service = internet.TCPServer(port, factory)

service.setServiceParent(application)

为了运行它,我使用了:

twistd -y myApp.tac

我收到错误消息,告诉我 get_app() 方法没有返回可以以这种方式使用的对象。例如:

"Failed to load application: 'PrefixMiddleware' object has no attribute 'addService'"

使用 twistd 运行 Pyramid 应用程序的最佳方式是什么?

4

2 回答 2

3

您可以使用 Twisted Webtwistd插件中的 WSGI 支持来缩短它并使其更易于配置。像这样创建一个模块:

from pyramid.paster import get_app

config = '/path/to/app/production.ini'
myApp = get_app(config, 'main')

然后twistd像这样运行:

$ twistd web --port tcp:8888 --wsgi foo.myApp

foo您创建的模块的名称在哪里。

于 2012-10-30T12:05:14.963 回答
2

我找到了一个可行的解决方案。这是工作的 .tac 文件:

from twisted.web.server import Site
from twisted.web.wsgi import WSGIResource
from twisted.internet import reactor
from twisted.application import internet, service
import os

from pyramid.paster import get_app, setup_logging

config='/path/to/app/production.ini'
config = os.path.abspath(config)
port = 8888

# Get the WSGI application
myApp = get_app(config, 'main')

# Twisted WSGI server setup
resource = WSGIResource(reactor, reactor.getThreadPool(), myApp)
factory = Site(resource)

# Twisted Application setup
application = service.Application('mywebapp')
internet.TCPServer(port, factory).setServiceParent(application)

get_app() 获取 Pyramid WSGI 应用程序,而 internet.TCPServer 需要一个 Twisted Application 对象,因此这些不应混淆。

此代码将在 TCP 端口 8888 上启动应用程序。

如果有人有更好/更清晰的方法来实现这一点,请添加您的答案。

于 2012-10-29T14:56:49.313 回答