Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!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; 'else:': 0.03; 'encoding': 0.05; 'lines,': 0.07; 'none:': 0.07; 'wednesday,': 0.07; 'lines.': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:into': 0.09; 'tackle': 0.09; 'template.': 0.09; 'try:': 0.09; 'url:github': 0.09; 'def': 0.12; 'kurt': 0.12; 'template': 0.14; 'buffer.': 0.16; 'character.': 0.16; 'detected': 0.16; 'encoding.': 0.16; 'guess.': 0.16; 'non-ascii': 0.16; 'none.': 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; 'skipping': 0.16; 'subject:unicode': 0.16; 'url:linux': 0.16; 'vary.': 0.16; 'size,': 0.16; 'wrote:': 0.18; 'library': 0.18; 'all,': 0.19; 'bit': 0.19; 'file,': 0.19; 'split': 0.19; '(the': 0.22; '>>>': 0.22; 'input': 0.22; 'tests': 0.22; 'header:User-Agent:1': 0.23; 'script': 0.25; 'equivalent': 0.26; 'pass': 0.26; 'header:X -Complaints-To:1': 0.27; 'bigger': 0.30; 'errors': 0.30; 'returned': 0.30; 'subject:list': 0.30; 'lines': 0.31; '>>>>': 0.31; 'run': 0.32; 'text': 0.33; 'skip:d 20': 0.34; 'subject:from': 0.34; 'could': 0.34; 'problem': 0.35; 'except': 0.35; 'but': 0.35; 'add': 0.35; 'there': 0.35; 'yield': 0.36; 'should': 0.36; 'seconds': 0.37; 'two': 0.37; 'list': 0.37; 'performance': 0.37; 'ahead': 0.38; 'tasks': 0.38; 'to:addr :python-list': 0.38; 'files': 0.38; 'does': 0.39; 'to:addr:python.org': 0.39; 'enough': 0.39; 'received:org': 0.40; 'even': 0.60; 'skip:u 10': 0.60; 'read': 0.60; 'easy': 0.60; 'dave': 0.60; 'august': 0.61; 'url:3': 0.61; 'took': 0.61; 'email addr:gmail.com': 0.63; 'real': 0.63; 'more': 0.64; 'different': 0.65; 'determine': 0.67; 'limit': 0.70; 'distracted': 0.84; 'issues:': 0.84; 'angel': 0.91; 'luck': 0.93; 'tough': 0.93; '2013': 0.98 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Peter Otten <__peter__@web.de> Subject: Re: split lines from stdin into a list of unicode strings Date: Thu, 05 Sep 2013 10:33:59 +0200 Organization: None References: <521DB58E.5000102@gmail.com> <522835EC.1010407@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p5084a0b5.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: 68 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1378370024 news.xs4all.nl 15900 [2001:888:2000:d::a6]:38552 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:53681 Kurt Mueller wrote: > Am 29.08.2013 11:12, schrieb Peter Otten: >> kurt.alfred.mueller@gmail.com wrote: >>> On Wednesday, August 28, 2013 1:13:36 PM UTC+2, Dave Angel wrote: >>>> On 28/8/2013 04:32, Kurt Mueller wrote: >>>>> For some text manipulation tasks I need a template to split lines >>>>> from stdin into a list of strings the way shlex.split() does it. >>>>> The encoding of the input can vary. > >> You can compromise and read ahead a limited number of lines. Here's my >> demo script (The interesting part is detect_encoding(), I got a bit >> distracted by unrelated stuff...). The script does one extra >> decode/encode cycle -- it should be easy to avoid that if you run into >> performance issues. > > I took your script as a template. > But I used the libmagic library (pyhton-magic) instead of chardet. > See http://linux.die.net/man/3/libmagic > and https://github.com/ahupp/python-magic > ( I made tests with files of different size, up to 1.2 [GB] ) > > I had following issues: > > - I a real file, the encoding was detected as 'ascii' for > detect_lines=1000. > In line 1002 there was an umlaut character. So then the > line.decode(encoding) failed. I think to add the errors parameter, > line.decode(encoding, errors='replace') Tough luck ;) You could try and tackle the problem by skipping leading ascii-only lines. Untested: def detect_encoding(instream, encoding, detect_lines, skip_ascii=True): if encoding is None: encoding = instream.encoding if encoding is None: if skip_ascii: try: for line in instream: yield line.decode("ascii") except UnicodeDecodeError: pass else: return head = [line] head.extend(islice(instream, detect_lines-1)) encoding = chardet.detect("".join(head))["encoding"] instream = chain(head, instream) for line in instream: yield line.decode(encoding) Or keep two lists, one with all, and one with only non-ascii lines, and read lines until there are enough lines in the list of non-ascii strings to make a good guess. Then take that list to determine the encoding. You can even combine both approaches... > - If the buffer was bigger than about some Megabytes, the returned > encoding > from libmagic was always None. The big files had very long lines ( more > than 4k per line ). So with detect_lines=1000 this limit was exceeded. > > - The magic.buffer() ( the equivalent of chardet.detect() ) takes about 2 > seconds > per megabyte buffer.