[Answered ]-How does one incorporate a Django application into an existing twisted server?

2👍

Found my bug:

# All this work is un-necessary overkill
#root = Resource()
#root.putChild("",django_resource)
#from twisted.application import service
#application = service.Application("app")

internet.TCPServer(8080, Site(django_resource)).setServiceParent(application)

Leave a comment