J'essaie d'accéder à un model.filefield
Django pour analyser un fichier CSV en Python à l'aide du csv
module. Cela fonctionne sous Windows, mais sur Mac, cela m'a donné ceci:
Exception Type: Error
Exception Value: new-line character seen in unquoted field - do you need to open the file in universal-newline mode?
Voici le code:
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
chose. S'agit-il d'un nom de fichier sur un modèle?rU
(elle est liée à la fonction open () et n'est pas spécifique à 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=''
place demode='U'
.Réponses:
J'ai enfin trouvé la solution:
mypath = customerbulk.objects.get(pk=1).fileup.path o = open(mypath,'rU') mydata = csv.reader(o)
la source
rU
signifie: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
place, la valeur par défaut estnewline=None
ce qui est similairenewline=''
sauf qu'il traduit également les retours à la ligne en\n
. Je ne sais pas lequel de ces éléments équivaut àmode='U'