Log in or register to vote.

wsgiview

Use TurboGears template plug-ins anywhere.

WSGI middleware that connects TurboGears/Buffet
template plug-ins with any WSGI-enabled application.

# Usage example:

from wsgiview import view

@view('webstring:template.html', format='html')
def simple_app(environ, start_response):
start_response('200 OK', [('Content-type','text/html')])
return {'test':'Hello world!
'}

if __name__ == '__main__':
from wsgiref.simple_server import make_server
http = make_server('', 8080, simple_app)
http.serve_forever()

0