summaryrefslogblamecommitdiffhomepage
path: root/test/python/environment/wsgi.py
blob: fa3a1d2bc413bcce1dfe2b21640e062cd76feb00 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                               
import os

def application(env, start_response):
    body = ''
    vars = env.get('HTTP_X_VARIABLES').split(',')

    for var in vars:
        if var in os.environ:
            body += str(os.environ[var]) + ','

    body = body.encode()
    start_response('200', [('Content-Length', str(len(body)))])
    return body