Esempio n. 1
0
 def diesel(app, address, **options):
     from diesel.protocols.wsgi import WSGIApplication
     app = WSGIApplication(app, port=address[1])
     app.run()
Esempio n. 2
0
 def run(self, handler):
     from diesel.protocols.wsgi import WSGIApplication
     app = WSGIApplication(handler, port=self.port)
     app.run()
Esempio n. 3
0
def diesel_adapter(host, port):
    # Experimental (Mostly untested).
    from diesel.protocols.wsgi import WSGIApplication
    app = WSGIApplication(handle_request, port=int(port))
    app.run()
Esempio n. 4
0
 def diesel(app, address, **options):
     from diesel.protocols.wsgi import WSGIApplication
     app = WSGIApplication(app, port=address[1])
     app.run()
Esempio n. 5
0
 def run(self, handler):
     from diesel.protocols.wsgi import WSGIApplication
     app = WSGIApplication(handler, port=self.port)
     app.run()
Esempio n. 6
0
def diesel_adapter(host, port):
    # Experimental (Mostly untested).
    from diesel.protocols.wsgi import WSGIApplication
    app = WSGIApplication(handle_request, port=int(port))
    app.run()