summaryrefslogtreecommitdiffhomepage
path: root/test/python/input_readline/wsgi.py
blob: ec42e0c8d596216a7255c463355025833291de66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
def application(environ, start_response):
    body = []
    content_length = 0

    while True:
        l = environ['wsgi.input'].readline()
        if not l:
            break

        body.append(l)
        content_length += len(l)

    start_response(
        '200',
        [
            ('Content-Length', str(content_length)),
            ('X-Lines-Count', str(len(body))),
        ],
    )
    return body