I have a application written in Twisted and I want to add a web interface to control and monitor it. I'll need plenty of dynamic pages that show the current status and configuration, so I hoped for a framework that offers at least a templating language with inheritance and some basic routing.
Since I am using Twisted anyways I wanted to use twisted.web
- but it's templating language is too basic and it seems that the only framework, Nevow is quite dead (it's on launchpad but the homepage and wiki are down and I can't find any documentation).
So what are my options?
- Is there any other
twisted.web
based framework? - Are there other frameworks that work with twisted's reactor?
- Should I just get a web framework (I'm thinking web.py or flask) and run it in a thread?
Thanks for your answers.