Я пытаюсь получить доступ к model.filefield
Django для анализа CSV- файла в Python с помощью csv
модуля. Он работает в Windows, но на Mac дал мне следующее:
Exception Type: Error
Exception Value: new-line character seen in unquoted field - do you need to open the file in universal-newline mode?
Это код:
myfile = customerbulk.objects.all()[0].fileup
mydata = csv.reader(myfile)
for email,mobile,name,civilid in mydata:
print email,mobile,name,civilid
customerbulk.objects.all()[0].fileup
штука. Это имя файла модели?rU
(это связано с функцией open () и не зависит от csv.):In addition to the standard fopen() values mode may be 'U' or 'rU'. Python is usually built with universal newlines support; supplying 'U' opens the file as a text file, but lines may be terminated by any of the following: the Unix end-of-line convention '\n', the Macintosh convention '\r', or the Windows convention '\r\n'.
Docs.python.org/2/library/functions.html#opennewline=''
вместоmode='U'
.Ответы:
Я наконец нашел решение:
mypath = customerbulk.objects.get(pk=1).fileup.path o = open(mypath,'rU') mydata = csv.reader(o)
источник
rU
означает:In a Python with universal newline support open() the mode parameter can also be "U", meaning "open for input as a text file with universal newline interpretation". Mode "rU" is also allowed, for symmetry with "rb".
newline
вместо этого значение по умолчанию,newline=None
которое похоже,newline=''
за исключением того, что оно также переводит символы новой строки в\n
. Я не уверен, что из этого эквивалентноmode='U'