I can\'t seem to figure out how to access POST data using WSGI. I tried the example on the wsgi.org website and it didn\'t work. I\'m using Python 3.0 right now. Please don\
This worked for me (in Python 3.0):
import urllib.parse post_input = urllib.parse.parse_qs(environ['wsgi.input'].readline().decode(),True)