GithubHelp home page GithubHelp logo

Comments (3)

tsroten avatar tsroten commented on August 29, 2024

The reason why this is happening is that __next__() is not defined for the UnicodeReader. Python 2 uses the next() method and Python 3 uses the __next__() magic method. Unfortunately, that's the least of the problems with unicodecsv's UnicodeReader iterating in Python 3. The other problems are:

  • the self.reader.next() method call (should be next(self.reader) in Python 3)
  • the call to unicode()
  • also, you'd need to use io.StringIO(), not io.BytesIO() in Python 3

from python-unicodecsv.

jruere avatar jruere commented on August 29, 2024

OK, I guess it's not quite ready yet. :)

from python-unicodecsv.

jdunck avatar jdunck commented on August 29, 2024

I've added py3 in 0.12.0 - please try it out and open another issue if you find specific problems. :)

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.