Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!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.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'encoding': 0.05; 'sys': 0.07; 'welcome.': 0.07; "'no": 0.09; 'exception,': 0.09; 'subject:into': 0.09; 'try:': 0.09; 'python': 0.11; 'kurt': 0.12; 'template': 0.14; '2.7.3': 0.16; '__future__': 0.16; 'adjusted': 0.16; 'quotes)': 0.16; 'subject:unicode': 0.16; 'unicode.': 0.16; 'vary.': 0.16; 'split': 0.19; 'input': 0.22; 'import': 0.22; 'header:User-Agent:1': 0.23; 'skip': 0.24; 'unicode': 0.24; 'mode': 0.30; 'subject:list': 0.30; 'comments': 0.31; 'lines': 0.31; "skip:' 10": 0.31; 'usually': 0.31; 'text': 0.33; 'skip:# 10': 0.33; 'subject:from': 0.34; 'except': 0.35; 'list': 0.37; 'message-id:@gmail.com': 0.38; 'tasks': 0.38; 'to:addr:python- list': 0.38; 'does': 0.39; 'to:addr:python.org': 0.39; 'further': 0.61; 'here': 0.66; 'header:Reply-To:1': 0.67; 'subject': 0.69; 'containing': 0.69; 'reply-to:no real name:2**0': 0.71; 'reply- to:addr:gmail.com': 0.80 X-Virus-Scanned: amavisd-new at aerodynamics.ch Date: Wed, 28 Aug 2013 10:32:14 +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: split lines from stdin into a list of unicode strings Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit 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: 51 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1377678757 news.xs4all.nl 16007 [2001:888:2000:d::a6]:50318 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:53115 This is a follow up to the Subject "right adjusted strings containing umlauts" 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. For further processing in Python I need the list of strings to be in unicode. Here is template.py: ############################################################################################################## #!/usr/bin/env python # vim: set fileencoding=utf-8 : # split lines from stdin into a list of unicode strings # Muk 2013-08-23 # Python 2.7.3 from __future__ import print_function import sys import shlex import chardet bool_cmnt = True # shlex: skip comments bool_posx = True # shlex: posix mode (strings in quotes) for inpt_line in sys.stdin: print( 'inpt_line=' + repr( inpt_line ) ) enco_type = chardet.detect( inpt_line )[ 'encoding' ] # {'encoding': 'EUC-JP', 'confidence': 0.99} print( 'enco_type=' + repr( enco_type ) ) try: strg_inpt = shlex.split( inpt_line, bool_cmnt, bool_posx, ) # shlex does not work on unicode except Exception, errr: # usually 'No closing quotation' print( "error='%s' on inpt_line='%s'" % ( errr, inpt_line.rstrip(), ), file=sys.stderr, ) continue print( 'strg_inpt=' + repr( strg_inpt ) ) # list of strings strg_unic = [ strg.decode( enco_type ) for strg in strg_inpt ] # decode the strings into unicode print( 'strg_unic=' + repr( strg_unic ) ) # list of unicode strings ############################################################################################################## $ cat | template.py Comments are welcome. TIA -- Kurt Mueller