GithubHelp home page GithubHelp logo

Comments (3)

edwardotis avatar edwardotis commented on August 29, 2024

+1

However, I think it's also very important to show the binary trick for using DictReader in this package.
I spent a lot of time tracking down this trick. Finally saw it in a non-stackoverflow forum.

unicodecsv.DictReader has one huge gotcha. You must open the file as binary
for it to work as expected with unicode. Otherwise, you will still
get a UnicodeEncodeError when you access a given row.

Example:
fileHandle = io.open(file_path, "rb")
my_unicode_dictionary = unicodecsv.DictReader(fileHandle)
row = my_unicode_dictionary.next()

(Thanks for creating and managing this package! It's very helpful :)

from python-unicodecsv.

jdunck avatar jdunck commented on August 29, 2024

Sorry for leaving this issue unaddressed for so long - both suggestions for doc improvements are good, and I'll do it. :)

from python-unicodecsv.

jdunck avatar jdunck commented on August 29, 2024

Fixed in 39a26b2

from python-unicodecsv.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.