Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder5.xlned.com!newsfeed.xs4all.nl!newsfeed1.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.020 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'encoding': 0.05; 'wednesday,': 0.07; 'lines.': 0.09; 'subject:into': 0.09; 'python': 0.11; 'cheers': 0.12; 'kurt': 0.12; 'template': 0.14; '__future__': 0.16; 'detected': 0.16; 'expandable': 0.16; 'magic': 0.16; 'subject:unicode': 0.16; 'vary.': 0.16; 'wrote:': 0.18; 'library': 0.18; 'bit': 0.19; 'split': 0.19; 'seems': 0.21; '(the': 0.22; '>>>': 0.22; 'input': 0.22; 'import': 0.22; 'header :User-Agent:1': 0.23; 'script': 0.25; 'header:In-Reply-To:1': 0.27; 'character': 0.29; 'subject:list': 0.30; 'lines': 0.31; '>>>>': 0.31; 'file': 0.32; 'run': 0.32; 'text': 0.33; 'skip:# 10': 0.33; 'subject:from': 0.34; 'library.': 0.36; 'thanks': 0.36; 'similar': 0.36; 'should': 0.36; 'list': 0.37; 'performance': 0.37; 'message-id:@gmail.com': 0.38; 'ahead': 0.38; 'tasks': 0.38; 'to:addr:python-list': 0.38; 'does': 0.39; 'to:addr:python.org': 0.39; 'skip:- 60': 0.39; 'read': 0.60; 'easy': 0.60; 'dave': 0.60; 'august': 0.61; 'name:': 0.61; 'email addr:gmail.com': 0.63; 'more': 0.64; 'header:Reply-To:1': 0.67; 'reply-to:no real name:2**0': 0.71; 'reply-to:addr:gmail.com': 0.80; 'distracted': 0.84; 'angel': 0.91; 'whereas': 0.91; '2013': 0.98 X-Virus-Scanned: amavisd-new at aerodynamics.ch Date: Thu, 29 Aug 2013 13:31:45 +0200 From: Kurt Mueller Organization: Rothenburg User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130801 Thunderbird/17.0.8 MIME-Version: 1.0 To: python-list@python.org Subject: Re: split lines from stdin into a list of unicode strings References: <521DB58E.5000102@gmail.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: kurt.alfred.mueller@gmail.com 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: 61 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1377775933 news.xs4all.nl 15924 [2001:888:2000:d::a6]:54632 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:53239 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=20 > script (The interesting part is detect_encoding(), I got a bit distract= ed by=20 > unrelated stuff...). The script does one extra decode/encode cycle -- i= t=20 > should be easy to avoid that if you run into performance issues. Thanks Peter! I see the idea. It limits the buffersize/memory usage for the detection. I have to say that I am a bit disapointed by the chardet library. The encoding for the single character '=FC' is detected as {'confidence': 0.99, 'encoding': 'EUC-JP'}, whereas "file" says: $ echo "=FC" | file -i - /dev/stdin: text/plain; charset=3Dutf-8 $ "=FC" is a character I use very often, as it is in my name: "M=FCller":-)= I try to use the "python-magic" library which has a similar functionality= as chardet and is used by the "file" unix-command and it is expandable with a magicfile, see "man file". My magic_test script: ------------------------------------------------------------------- #!/usr/bin/env python # vim: set fileencoding=3Dutf-8 : from __future__ import print_function import magic strg_chck =3D '=FC' magc_enco =3D magic.open( magic.MAGIC_MIME_ENCODING ) magc_enco.load() print( strg_chck + ' encoding=3D' + magc_enco.buffer( strg_chck ) ) magc_enco.close() ------------------------------------------------------------------- $ magic_test =FC encoding=3Dutf-8 python-magic seems to me a bit more reliable. Cheers --=20 Kurt Mueller