massivefermion 3 Junior Poster

In this page, the first example of using python with uwsgi is the following code:

def application(env, start_response):
    start_response('200 OK', [('Content-Type','text/html')])
    return [b"Hello World"]

As you can see, there is this start_response function which is provided by uwsgi, which is similar to all those things that framewroks like django provide to receive and reply requests. So...does uwsgi provide enough of these things so that you can make a web app with python without using any web framework?