Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!1.eu.feeder.erje.net!border1.nntp.ams1.giganews.com!nntp.giganews.com!bcyclone01.am1.xlned.com!bcyclone01.am1.xlned.com!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.017 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'heavily': 0.04; 'json': 0.07; 'subject:create': 0.09; 'subject:files': 0.09; '-tkc': 0.16; 'from:addr:python.list': 0.16; 'from:addr:tim.thechases.com': 0.16; 'from:name:tim chase': 0.16; 'lowercase': 0.16; 'received:10.21': 0.16; 'slow,': 0.16; 'wrote:': 0.18; 'library': 0.18; 'later': 0.20; 'header:In-Reply-To:1': 0.27; 'correct': 0.29; 'thus': 0.29; 'tim': 0.29; 'words': 0.29; 'chase': 0.31; 'go.': 0.31; 'older': 0.33; 'but': 0.35; 'there': 0.35; 'version': 0.36; 'data,': 0.36; 'charset:us-ascii': 0.36; 'should': 0.36; 'received:10': 0.37; 'performance': 0.37; 'to:addr:python-list': 0.38; 'expect': 0.39; 'to:addr:python.org': 0.39; 'skip:u 10': 0.60; "you're": 0.61; 'harm.': 0.84; 'otten': 0.84; 'reminder:': 0.84; 'subject:Best': 0.91 X-Sender-Id: wwwh|x-authuser|tim@thechases.com X-Sender-Id: wwwh|x-authuser|tim@thechases.com X-MC-Relay: Neutral X-MailChannels-SenderId: wwwh|x-authuser|tim@thechases.com X-MailChannels-Auth-Id: wwwh X-MC-Loop-Signature: 1432138298403:434165645 X-MC-Ingress-Time: 1432138298403 Date: Wed, 20 May 2015 11:12:11 -0500 From: Tim Chase To: python-list@python.org Subject: Re: Best approach to create humongous amount of files In-Reply-To: References: <20150520100723.3a34a775@bigbox.christie.dr> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.10; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AuthUser: tim@thechases.com X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ 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: 28 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1432138870 news.xs4all.nl 2876 [2001:888:2000:d::a6]:33459 X-Complaints-To: abuse@xs4all.nl X-Received-Bytes: 3826 X-Received-Body-CRC: 2533021665 Xref: csiph.com comp.lang.python:90965 On 2015-05-20 17:59, Peter Otten wrote: > Tim Chase wrote: > > wordlist[:] = [ # just lowercase all-alpha words > > word > > for word in wordlist > > if word.isalpha() and word.islower() > > ] > > Just a quick reminder: if the data is user-provided you have to > sanitize it: Thus my sanitizing to isalpha()+islower() words in my sample. > I expect that performance will be dominated by I/O; if that's > correct the extra work of serializing the JSON should not do much > harm. I seem to recall that there was a change-over, that an older JSON library was particularly slow, but that a later replacement sped that up immensely. So performance may depend heavily on which version you're running. [to the OP] But yes, if you're trusting unsanitized data, Peter's suggestion would be the way to go. -tkc