Friday, February 5, 2016

Re: reading CSV file with non ASCII characters


On Fri, Feb 5, 2016 at 9:14 PM, elcaiaimar <sepas91@gmail.com> wrote:
Hello,

I have a CSV File and I want read it. The problem is that it has non ASCII characters such as 'Ñ' and accents and I need that they are recognised to save the CSV content in a DB.

To simplify, I've summed up my code in django to the next:

​import csv    reader = csv.DictReader(open("file.csv", "rb"))  for row in reader:      title=row['title']      country=row['country']      print title      print country
This code returns, for example: Espa�a or Mediterr�neo and I want to get España or Mediterráneo.
Thank you very much!

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/54c6c685-f4dd-4233-9a30-22424c986a43%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAP7uEDLtWxKY_5LBCGQOtSCmeT%2BVf91PExpALWTi9OVjg51Cgg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment