How to get name of file in request.POST?

django, python

Solution

Via `request.FILES[u'script'].name`.

Problem

In my request.FILES variables: ``` FILES Variable Value script <InMemoryUploadedFile: landing.jpg (image/jpeg)> ``` How would I pull the filename here in order to get "landing.jpg" ?

Original source