I've created a web app in Python 3. It all runs beautifully until I have to upload a file... There's no way to find the path or the file in the environment. I am using wsgi and I am thinking of migrating to another web server, what are your recommendations?
This is all what I receive from the
s = FileWrapper(environ.copy()['wsgi.input'])
for y in s:
print(y)
And the response of that is:
b'-----------------------------1514423166515917395188753897--\\r\\n'
What does this mean?