Path: csiph.com!usenet.pasdenom.info!dedibox.gegeweb.org!gegeweb.eu!nntpfeed.proxad.net!proxad.net!feeder1-1.proxad.net!ecngs!feeder2.ecngs.de!novso.com!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!news.tele.dk!news.tele.dk!small.news.tele.dk!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python.': 0.02; 'else:': 0.03; 'broken': 0.04; 'args': 0.07; 'none,': 0.07; 'parser': 0.07; 'skip:` 10': 0.07; 'subject:file': 0.07; 'sys': 0.07; '"__main__":': 0.09; '__name__': 0.09; 'attributes': 0.09; 'conventions.': 0.09; 'filename': 0.09; 'none)': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'underscore': 0.09; 'variant': 0.09; 'python': 0.11; 'def': 0.12; 'bug': 0.12; '"r")': 0.16; '*args):': 0.16; 'be:': 0.16; 'bug,': 0.16; 'csv': 0.16; 'exception:': 0.16; 'filename):': 0.16; 'filename,': 0.16; 'ignoring': 0.16; 'igor': 0.16; 'made-up': 0.16; 'naming': 0.16; 'open()': 0.16; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-ipconnect.de': 0.16; 'skip:': 0.16; 'skipped': 0.16; 'stringio': 0.16; 'subject:Reading': 0.16; 'suggestion.': 0.16; 'url:pep-0008': 0.16; 'url:peps': 0.16; 'wrote:': 0.18; 'discussion': 0.18; 'have:': 0.19; "python's": 0.19; 'skip:f 30': 0.19; 'import': 0.22; 'hack': 0.22; 'print': 0.22; 'header:User- Agent:1': 0.23; 'example.': 0.24; 'replace': 0.24; 'skip': 0.24; 'skip:{ 20': 0.24; 'url:dev': 0.24; 'header': 0.24; 'helpful': 0.24; 'script': 0.25; 'skip:" 30': 0.26; 'tracker': 0.26; 'least': 0.26; 'header:X-Complaints-To:1': 0.27; 'tried': 0.27; 'idea': 0.28; 'function': 0.29; 'url:bugs': 0.29; "doesn't": 0.30; 'skip:@ 10': 0.30; 'code': 0.31; 'comments': 0.31; 'lines': 0.31; 'class': 0.32; 'supposed': 0.32; 'another': 0.32; 'url:python': 0.33; 'bugs': 0.33; 'reader': 0.33; 'actual': 0.34; 'comment': 0.34; 'skip:_ 10': 0.34; 'could': 0.34; 'test': 0.35; 'but': 0.35; 'add': 0.35; 'belong': 0.36; 'yield': 0.36; 'doing': 0.36; 'method': 0.36; 'hi,': 0.36; 'url:org': 0.36; 'should': 0.36; 'two': 0.37; 'implement': 0.38; 'thank': 0.38; 'to:addr:python- list': 0.38; 'rather': 0.38; 'does': 0.39; 'to:addr:python.org': 0.39; 'skip:p 20': 0.39; 'received:org': 0.40; 'skip:u 10': 0.60; 'read': 0.60; 'introduced': 0.61; 'mentioned': 0.61; 'real': 0.63; 'skip:n 10': 0.64; 'fashion': 0.64; 'places': 0.64; 'great': 0.65; 'here': 0.66; 'introduce': 0.78; "'1'}": 0.84; "'2'}": 0.84; 'mock': 0.84; 'peter,': 0.84; 'convinced': 0.93 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Peter Otten <__peter__@web.de> Subject: Re: Reading csv file Date: Thu, 19 Dec 2013 11:39:06 +0100 Organization: None References: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p50848eb8.dip0.t-ipconnect.de User-Agent: KNode/4.7.3 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 205 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1387449598 news.xs4all.nl 2940 [2001:888:2000:d::a6]:48404 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:62392 Igor Korot wrote: > Hi, Peter, > Thank you for the great suggestion. > > I tried to implement you code but failed. > > Here's what I have: > > class FileReader: > def __init__(self, filename, isSkip): > self.path = filename > self.isSkip = isSkip > > @contextmanager > def open(*args): Selfless OO? Not in Python. > from StringIO import StringIO > lines = range(10) > if self.isSkip: > lines[0] = "skipped" > lines[6] = "field1-from-line6,field2-from-line6" > else: > lines[0] = "field1-from-line1,field2-from-line1" > yield StringIO("\r\n".join(map(str, lines))) > > def is_arbitrary_text(self,fieldnames): > return "skipped" in fieldnames > > def readData(self): > with self.open(self.path, "r") as f: > reader = csv.DictReader(f) > if self.is_arbitrary_text(reader.fieldnames): > for _ in range(5): > next(reader, None) > reader._fieldnames = None Here you introduced another bug, ignoring my helpful comments. >> reader._fieldnames = None # underscore necessary, >> # fieldnames setter doesn't work >> reader.fieldnames # used for its side-effect > for row in reader: > print row > > Unfortunately this does not work as "def open()" does not belong to my > class and if I comment the "@contextmanager" line > I will get an exception: "AttributeError: __exit__" > > Any idea what to do? Keeping comments is not an option? But please read and try to understand the comments before you excise them ;) As I mentioned in the comment to the open() function you are not supposed to use it as you have real data -- use Python's built-in open() function. Anyway, if you insist on doing everything the OO-way, at least add a self in all the right places and don't introduce bugs that could be avoided with copy-and-paste. A working script with mock data and following the OO fashion would be: $ cat csv_skip_header_oo.py import csv from contextlib import contextmanager class FileReader: def __init__(self, filename, isSkip): self.path = filename self.isSkip = isSkip @contextmanager def open(self, *args): from StringIO import StringIO lines = range(10) if self.isSkip: lines[0] = "skipped" lines[6] = "field1-from-line6,field2-from-line6" else: lines[0] = "field1-from-line1,field2-from-line1" yield StringIO("\r\n".join(map(str, lines))) def is_arbitrary_text(self,fieldnames): return "skipped" in fieldnames def readData(self): with self.open(self.path, "r") as f: reader = csv.DictReader(f) if self.is_arbitrary_text(reader.fieldnames): for _ in range(5): next(reader, None) reader._fieldnames = None # underscore necessary, # fieldnames setter doesn't work reader.fieldnames # used for its side-effect for row in reader: print row if __name__ == "__main__": import sys print "Demo with made-up data" skip = len(sys.argv) > 1 and sys.argv[1] == "--skip" if skip: print "Variant 2, header is skipped" else: print "Variant 1, no header" FileReader("whatever.csv", skip).readData() $ python csv_skip_header_oo.py Demo with made-up data Variant 1, no header {'field2-from-line1': None, 'field1-from-line1': '1'} {'field2-from-line1': None, 'field1-from-line1': '2'} {'field2-from-line1': None, 'field1-from-line1': '3'} {'field2-from-line1': None, 'field1-from-line1': '4'} {'field2-from-line1': None, 'field1-from-line1': '5'} {'field2-from-line1': None, 'field1-from-line1': '6'} {'field2-from-line1': None, 'field1-from-line1': '7'} {'field2-from-line1': None, 'field1-from-line1': '8'} {'field2-from-line1': None, 'field1-from-line1': '9'} $ python csv_skip_header_oo.py --skip Demo with made-up data Variant 2, header is skipped {'field1-from-line6': '7', 'field2-from-line6': None} {'field1-from-line6': '8', 'field2-from-line6': None} {'field1-from-line6': '9', 'field2-from-line6': None} A script using real data would be: $ cat csv_skip_header_oo.py import csv class FileReader: def __init__(self, filename): self.path = filename def is_arbitrary_text(self, fieldnames): # XXX replace with a test suitable for your actual data return "skipped" in fieldnames def read_data(self): with open(self.path, "rb") as f: reader = csv.DictReader(f) if self.is_arbitrary_text(reader.fieldnames): for _ in range(5): next(reader, None) reader = csv.DictReader(f) for row in reader: print row if __name__ == "__main__": import argparse parser = argparse.ArgumentParser() parser.add_argument("file") args = parser.parse_args() FileReader(args.file).read_data() $ cat skipped_header.csv skipped 1 2 3 4 5 field1-from-line6,field2-from-line6 7 8 9$python csv_skip_header_oo.py skipped_header.csv {'field1-from-line6': '7', 'field2-from-line6': None} {'field1-from-line6': '8', 'field2-from-line6': None} {'field1-from-line6': '9', 'field2-from-line6': None} $ cat no_header.csv field1-from-line1,field2-from-line1 1 2 3 4 5 6 7 8 9$python csv_skip_header_oo.py no_header.csv {'field2-from-line1': None, 'field1-from-line1': '1'} {'field2-from-line1': None, 'field1-from-line1': '2'} {'field2-from-line1': None, 'field1-from-line1': '3'} {'field2-from-line1': None, 'field1-from-line1': '4'} {'field2-from-line1': None, 'field1-from-line1': '5'} {'field2-from-line1': None, 'field1-from-line1': '6'} {'field2-from-line1': None, 'field1-from-line1': '7'} {'field2-from-line1': None, 'field1-from-line1': '8'} {'field2-from-line1': None, 'field1-from-line1': '9'} Please have a look at the cleaned-up implementation of the read_data() method of this last example. As a result of the discussion on the bug tracker I am now convinced that you should use two `DictReader`s rather than hack internal attributes or broken properties. See also for naming conventions.