MCPcopy
hub / github.com/benoitc/gunicorn / run

Function run

gunicorn/app/wsgiapp.py:60–66  ·  view source on GitHub ↗

\ The ``gunicorn`` command line runner for launching Gunicorn with generic WSGI applications.

(prog=None)

Source from the content-addressed store, hash-verified

58
59
60def run(prog=None):
61 """\
62 The ``gunicorn`` command line runner for launching Gunicorn with
63 generic WSGI applications.
64 """
65 from gunicorn.app.wsgiapp import WSGIApplication
66 WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]", prog=prog).run()
67
68
69if __name__ == '__main__':

Callers 2

__main__.pyFile · 0.90
wsgiapp.pyFile · 0.85

Calls 2

WSGIApplicationClass · 0.90
runMethod · 0.45

Tested by

no test coverage detected