Estou tentando acessar um model.filefield
no Django para analisar um arquivo CSV em Python usando o csv
módulo. Está funcionando no Windows, mas no Mac me deu o seguinte:
Exception Type: Error
Exception Value: new-line character seen in unquoted field - do you need to open the file in universal-newline mode?
Este é o código:
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
coisa. É um nome de arquivo em um modelo?rU
(está relacionado à função open () e não é específico do 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=''
vez demode='U'
.Respostas:
Finalmente encontrei a solução:
mypath = customerbulk.objects.get(pk=1).fileup.path o = open(mypath,'rU') mydata = csv.reader(o)
fonte
rU
significa: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
em vez disso, o padrão énewline=None
que é comonewline=''
a não ser que se traduz também as novas linhas para\n
. Não tenho certeza de qual deles é equivalente amode='U'