I am trying to process text files in a django app. Before I try to import the data, I need to evaluate the first line to determine the file type.
i tried file[0], but of course that doesn't work. that did give me an error saying its a "'InMemoryUploadedFile' object" but I can't find much documentation about that.
So, does anyone know how to get the first line of a file?
dir()on thatInMemoryUploadedFile? It should have aread()method. – S.Lott Jan 28 '11 at 3:18