Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed2.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; 'skip:[ 20': 0.04; 'encoding': 0.05; '"""': 0.07; 'args': 0.07; 'none:': 0.07; 'parser': 0.07; 'sys': 0.07; 'wednesday,': 0.07; '"__main__":': 0.09; '__name__': 0.09; 'input,': 0.09; 'lines.': 0.09; 'lines:': 0.09; 'main()': 0.09; 'next,': 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; 'try:': 0.09; 'used.': 0.09; 'python': 0.11; 'def': 0.12; 'kurt': 0.12; 'template': 0.14; 'algorithm.': 0.16; 'itertools': 0.16; 'main():': 0.16; 'next?': 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; 'subject:unicode': 0.16; 'valueerror': 0.16; 'varies': 0.16; 'vary.': 0.16; 'wrote:': 0.18; 'bit': 0.19; 'split': 0.19; '(the': 0.22; '>>>': 0.22; 'input': 0.22; 'memory': 0.22; 'import': 0.22; 'print': 0.22; 'header:User- Agent:1': 0.23; 'file.': 0.24; 'script': 0.25; 'header:X -Complaints-To:1': 0.27; 'subject:list': 0.30; 'skip:( 20': 0.30; 'code': 0.31; 'lines': 0.31; 'assumes': 0.31; 'option': 0.32; 'run': 0.32; 'text': 0.33; 'skip:# 10': 0.33; 'skip:d 20': 0.34; 'subject:from': 0.34; 'could': 0.34; 'except': 0.35; 'skip:s 30': 0.35; 'but': 0.35; 'oracle': 0.36; 'should': 0.36; 'list': 0.37; 'list.': 0.37; 'performance': 0.37; 'ahead': 0.38; 'feed': 0.38; 'tasks': 0.38; 'to:addr:python-list': 0.38; 'list,': 0.38; 'does': 0.39; 'launch': 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; 'easy': 0.60; 'chain': 0.60; 'dave': 0.60; 'august': 0.61; 'further': 0.61; 'save': 0.62; 'email addr:gmail.com': 0.63; 'more': 0.64; 'determine': 0.67; 'increase': 0.74; 'other.': 0.75; 'distracted': 0.84; 'reliability': 0.84; 'usage.': 0.84; 'angel': 0.91; 'reliable,': 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, 29 Aug 2013 11:12:59 +0200 Organization: None References: <521DB58E.5000102@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p50848731.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: 94 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1377767550 news.xs4all.nl 15913 [2001:888:2000:d::a6]:34000 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:53229 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. > >> Does that mean it'll vary from one run of the program to the next, or >> it'll vary from one line to the next? Your code below assumes the >> latter. That can greatly increase the unreliability of the already >> dubious chardet algorithm. > > The encoding only varies from one launch to the other. > The reason I process each line is memory usage. > > Option to have a better reliability of chardet: > I could read all of the input, save the input lines for further > processing in a list, feed the lines into > chardet.universaldetector.UniversalDetector.feed()/close()/result() > and then decode and split/shlex the lines in the list. > That way the chardet oracle would be more reliable, but > roughly twice as much memory will be used. 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. #!/usr/bin/env python import sys import shlex import chardet from itertools import islice, chain def detect_encoding(instream, encoding, detect_lines): if encoding is None: encoding = instream.encoding if encoding is None: head = list(islice(instream, detect_lines)) encoding = chardet.detect("".join(head))["encoding"] instream = chain(head, instream) return encoding, instream def split_line(line, comments=True, posix=True): parts = shlex.split(line.encode("utf-8"), comments=comments, posix=posix) return [part.decode("utf-8") for part in parts] def to_int(s): """ >>> to_int(" 42") 42 >>> to_int("-1") is None True >>> to_int(" NONE ") is None True >>> to_int("none") is None True >>> to_int(" 0x400 ") 1024 """ s = s.lower().strip() if s in {"none", "-1"}: return None return int(s, 16 if s.startswith("0x") else 10) def main(): import argparse parser = argparse.ArgumentParser() parser.add_argument("-e", "--encoding") parser.add_argument( "-d", "--detect-lines", type=to_int, default=100, help=("number of lines used to determine encoding; " "'none' or -1 for whole file. (default: 100)")) args = parser.parse_args() encoding, instream = detect_encoding( sys.stdin, encoding=args.encoding, detect_lines=args.detect_lines) lines = (line.decode(encoding) for line in instream) for line in lines: try: parts = split_line(line) except ValueError as exc: print >> sys.stderr, exc else: print parts if __name__ == "__main__": main()