User J.F. Sebastian - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T22:29:25Zhttp://stackoverflow.com/feeds/user/4279http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1918456/what-is-a-hashtable-dictionary-implementation-for-python-that-doesnt-store-the-k/1918660#19186602Answer by J.F. Sebastian for What is a hashtable/dictionary implementation for Python that doesn't store the keys?J.F. Sebastian2009-12-17T00:01:44Z2009-12-17T00:01:44Z<h3><a href="http://en.wikipedia.org/wiki/Bloom%5Ffilter#Bloomier%5Ffilters" rel="nofollow">Bloomier filters</a> - space-efficient associative array</h3>
<p>From the Wikipedia:</p>
<blockquote>
<p>Chazelle et al. (2004) designed a
generalization of Bloom filters that
could associate a value with each
element that had been inserted,
implementing an associative array.
Like Bloom filters, these structures
achieve a small space overhead by
accepting a small probability of false
positives. In the case of "Bloomier
filters", a false positive is defined
as returning a result when the key is
not in the map. The map will never
return the wrong value for a key that
is in the map.</p>
</blockquote>
http://stackoverflow.com/questions/1915564/python-convert-a-dictionary-to-a-sorted-list-by-value-instead-of-key/1916164#19161640Answer by J.F. Sebastian for python, convert a dictionary to a sorted list by value instead of keyJ.F. Sebastian2009-12-16T17:12:35Z2009-12-16T17:12:35Z<p><code>most_common()</code> method of <a href="http://docs.python.org/3.1/library/collections.html#collections.Counter" rel="nofollow"><code>collections.Counter</code></a> class (introduced in Python 2.7) does what you need:</p>
<pre><code>counter.most_common()
</code></pre>
<p>Complete example:</p>
<pre><code>from collections import Counter
c = Counter()
c['someval'] += 1
c['anotherval'] +=1
c['someval'] += 1
for k, v in c.most_common():
print "{} => {}".format(k, v)
</code></pre>
http://stackoverflow.com/questions/1904351/python-observer-pattern-examples-tips/1904428#19044281Answer by J.F. Sebastian for Python Observer Pattern: Examples, Tips?J.F. Sebastian2009-12-15T00:09:43Z2009-12-15T21:17:52Z<h3>Example: <a href="http://twistedmatrix.com/documents/current/core/howto/logging.html#auto4" rel="nofollow">twisted log observers</a></h3>
<p>To register an observer <code>yourCallable()</code> (a callable that accepts a dictionary) to receive all log events (in addition to any other observers):</p>
<pre><code>twisted.python.log.addObserver(yourCallable)
</code></pre>
<h3>Example: <a href="http://permalink.gmane.org/gmane.comp.python.twisted/19952" rel="nofollow">complete producer/consumer example</a></h3>
<p>From comp.python.twisted mailing list:</p>
<pre><code>#!/usr/bin/env python
"""Serve as a sample implementation of a twisted producer/consumer
system, with a simple TCP server which asks the user how many random
integers they want, and it sends the result set back to the user, one
result per line."""
import random
from zope.interface import implements
from twisted.internet import interfaces, reactor
from twisted.internet.protocol import Factory
from twisted.protocols.basic import LineReceiver
class Producer:
"""Send back the requested number of random integers to the client."""
implements(interfaces.IPushProducer)
def __init__(self, proto, cnt):
self._proto = proto
self._goal = cnt
self._produced = 0
self._paused = False
def pauseProducing(self):
"""When we've produced data too fast, pauseProducing() will be
called (reentrantly from within resumeProducing's transport.write
method, most likely), so set a flag that causes production to pause
temporarily."""
self._paused = True
print('pausing connection from %s' % (self._proto.transport.getPeer()))
def resumeProducing(self):
self._paused = False
while not self._paused and self._produced < self._goal:
next_int = random.randint(0, 10000)
self._proto.transport.write('%d\r\n' % (next_int))
self._produced += 1
if self._produced == self._goal:
self._proto.transport.unregisterProducer()
self._proto.transport.loseConnection()
def stopProducing(self):
pass
class ServeRandom(LineReceiver):
"""Serve up random data."""
def connectionMade(self):
print('connection made from %s' % (self.transport.getPeer()))
self.transport.write('how many random integers do you want?\r\n')
def lineReceived(self, line):
cnt = int(line.strip())
producer = Producer(self, cnt)
self.transport.registerProducer(producer, True)
producer.resumeProducing()
def connectionLost(self, reason):
print('connection lost from %s' % (self.transport.getPeer()))
factory = Factory()
factory.protocol = ServeRandom
reactor.listenTCP(1234, factory)
print('listening on 1234...')
reactor.run()
</code></pre>
<h3>Personal note</h3>
<p>Despite the above examples it would be more pythonic to write code with tests that directly express your intent rather than layers upon layers of interfaces/abstractions that give rise to unnecessary complexity in the name of holy design patterns.<br>
<sub>K.I.S.S.</sub></p>
http://stackoverflow.com/questions/1900195/whats-a-neater-more-pythonic-way-to-do-the-following-enumeration/1901463#19014631Answer by J.F. Sebastian for What's a neater, more pythonic way to do the following enumeration?J.F. Sebastian2009-12-14T15:13:44Z2009-12-14T23:31:34Z<p>You've mentioned in the comments that this loop is a part of asynchronous function (in terms of twisted framework). In this case you don't want to block for a long time:</p>
<pre><code>from twisted.internet import task
for i, row in enumerate(instruments):
task.coiterate(self.table.SetValue(i, j, v) for j, v in enumerate(row))
</code></pre>
<p>Thus all rows are assigned in parallel.</p>
<p>NOTE: </p>
<ul>
<li>Watch out for late binding for <code>i</code> and <code>row</code>. Use <code>(lambda i=i, row=row: ...)()</code> in that case.</li>
<li><code>task.coiterate()</code> uses global object therefore there could be multiple table updates simultaneously (it might not be what you want).</li>
</ul>
<p><hr></p>
<p>Here's <a href="http://stackoverflow.com/questions/1900195/whats-a-neater-more-pythonic-way-to-do-the-following-enumeration/1900202#1900202">@SilentGhost' answer</a> (deleted):</p>
<blockquote>
<p><code>self.table = instruments</code></p>
<p>Because that's what you seem to be
doing.</p>
</blockquote>
<p>And the comment by @[Ben Hughes] I'm referring to:</p>
<blockquote>
<p>I need to explicity call SetValue (its
on a PyGridTableBase) for each value -
as this code is invoked via a twisted
deferred method - my brain is not much
good at looping/enumeration in a neat
way..... – Ben Hughes</p>
</blockquote>
http://stackoverflow.com/questions/1895615/pythonic-way-to-write-a-for-loop-that-doesnt-use-the-loop-index/1896444#18964440Answer by J.F. Sebastian for Pythonic way to write a for loop that doesn't use the loop indexJ.F. Sebastian2009-12-13T13:01:33Z2009-12-13T13:01:33Z<pre><code>import itertools, random
def RandomSample2D(npoints, get_random=lambda: random.uniform(-.5, .5)):
return ((r(), r()) for r in itertools.repeat(get_random, npoints))
</code></pre>
<ul>
<li>uses <code>random.uniform()</code> explicitly</li>
<li>returns an iterator instead of list</li>
</ul>
http://stackoverflow.com/questions/1896261/how-to-determine-the-datatype-in-python/1896268#18962686Answer by J.F. Sebastian for How to determine the datatype in Python?J.F. Sebastian2009-12-13T11:45:38Z2009-12-13T12:19:04Z<pre><code>if isinstance(x, basestring):
# a string
else:
try: it = iter(x)
except TypeError:
# not an iterable
else:
# iterable (tuple, list, etc)
</code></pre>
<p><a href="http://stackoverflow.com/questions/1549801/differences-between-isinstance-and-type-in-python/1549854#1549854">@Alex Martelli's answer</a> describes in detail why you should prefer the above style when you're working with types in Python (thanks to @Mike Hordecki for the link).</p>
http://stackoverflow.com/questions/1893867/python-random-and-int-to-string-question/1894036#18940362Answer by J.F. Sebastian for Python random and int to string questionJ.F. Sebastian2009-12-12T17:05:30Z2009-12-12T17:05:30Z<p>Use <code>xrange</code> instead of <code>range</code>:</p>
<pre><code>lst = random.sample(xrange(10**9), 100)
</code></pre>
<p>To convert to a list of strings:</p>
<pre><code>strings = map(str, lst)
</code></pre>
<p>As one string:</p>
<pre><code>s = ''.join(strings)
</code></pre>
http://stackoverflow.com/questions/1892009/help-with-jython-2-0-code-string-manipulation-and-replace/1892786#18927860Answer by J.F. Sebastian for Help with JYTHON 2.0 CODE -STRING MANIPULATION and replaceJ.F. Sebastian2009-12-12T08:33:55Z2009-12-12T08:33:55Z<p>A simple regular expression might be sufficient in this case:</p>
<pre><code>import re
f = open('your_file.xml')
try:
xml = f.read()
xml_with_trim = re.sub(r'(CDATA\[)([A-Z_]+)(\]\])', r'\1TRIM(\2)\3', xml)
print xml_with_trim
finally:
f.close()
</code></pre>
<p>The column name is matched using <code>'[A-Z_]+' regex</code> i.e., one or more capital letters or <code>'_'</code>. See documentation for the <a href="http://docs.python.org/library/re.html" rel="nofollow">re module</a>.</p>
http://stackoverflow.com/questions/1883118/big-list-of-portability-in-python/1883472#18834720Answer by J.F. Sebastian for Big List Of Portability in PythonJ.F. Sebastian2009-12-10T19:45:15Z2009-12-12T01:18:54Z<p>There are subtle differences in UCS2 and UCS4 (Windows and Linux, for example) builds of Python due to bugs, conflicting or deprecated standards, etc.</p>
<h3>Example: <a href="http://bugs.python.org/issue3297" rel="nofollow">Issue 3297</a></h3>
<p><a href="http://bugs.python.org/file10880/unicodetest.py" rel="nofollow">unicodetest.py</a>: </p>
<pre><code>#-*- coding: utf-8 -*-
print 'Result:', u'𐄣' == u'\U00010123'
print 'Len:', len(u'𐄣'), len(u'\U00010123')
print 'Repr:', repr(u'𐄣'), repr(u'\U00010123')</code></pre>
<p>Output (Python 2.6, Linux):</p>
<pre><code>Result: False
Len: 2 1
Repr: u'\ud800\udd23' u'\U00010123'
</code></pre>
http://stackoverflow.com/questions/1880404/using-a-file-to-store-optparse-arguments/1883991#18839912Answer by J.F. Sebastian for Using a file to store optparse argumentsJ.F. Sebastian2009-12-10T21:00:38Z2009-12-10T21:00:38Z<p>You can use <a href="http://argparse.googlecode.com/svn/trunk/doc/ArgumentParser.html#fromfile-prefix-chars" rel="nofollow"><code>argparse</code></a> module for that:</p>
<pre><code>>>> open('args.txt', 'w').write('-f\nbar')
>>> parser = argparse.ArgumentParser(fromfile_prefix_chars='@')
>>> parser.add_argument('-f')
>>> parser.parse_args(['-f', 'foo', '@args.txt'])
Namespace(f='bar')
</code></pre>
<p>It might be included in stdlib, see <a href="http://www.python.org/dev/peps/pep-0389/" rel="nofollow">pep 389</a>.</p>
http://stackoverflow.com/questions/1877437/setting-numpy-slice-in-lambda-function/1877755#18777552Answer by J.F. Sebastian for Setting numpy slice in lambda functionJ.F. Sebastian2009-12-09T23:41:45Z2009-12-10T19:11:40Z<p>This is ugly; you should not use it. But it is oneline lambda as you've asked:</p>
<pre><code>f = lambda b, a=None, s=slice(1,-1): f(b, numpy.zeros(numpy.array(b.shape) + 2))\
if a is None else (a.__setitem__([s]*a.ndim, b), a)[1]
</code></pre>
<h3>What is <code>__setitem__</code>?</h3>
<p><code>obj.__setitem__(index, value)</code> is equivalent to <code>obj[index] = value</code> in this case. Example:</p>
<pre><code>class A:
def __setitem__(self, index, value):
print 'index=%s, value=%s' % (index, value)
a = A()
a[1, 2] = 3
</code></pre>
<p>It prints:</p>
<pre><code>index=(1, 2), value=3
</code></pre>
<h3>Why does <code>__setitem__()</code> return None?</h3>
<p>There is a general convention in Python that methods such as <code>list.extend()</code>, <code>list.append()</code> that modify an object in-place should return <code>None</code>. There are exceptions e.g., <code>list.pop()</code>.</p>
<h3>Y Combinator in Python</h3>
<p>Here's blog post <a href="http://blog.sigfpe.com/2008/09/on-writing-python-one-liners.html" rel="nofollow">On writing Python one-liners</a> which shows how write nameless recursive functions using <code>lambda</code>s (the link is suggested by @Peter Hansen).</p>
http://stackoverflow.com/questions/1876587/optimal-way-to-access-a-value-from-the-last-iteration-in-a-loop/1877445#18774450Answer by J.F. Sebastian for Optimal way to access a value from the last iteration in a loopJ.F. Sebastian2009-12-09T22:42:55Z2009-12-10T18:21:02Z<pre><code>it = imap(operator.itemgetter(1), tmp) # get all 2nd items
prev = next(it, None) # get 1st element (doesn't throw exception for empty `tmp`)
for x in it:
print 'seq: %s prev seq: %s variance: %s' % (x, prev, x-prev)
prev = x
</code></pre>
http://stackoverflow.com/questions/1863236/grep-r-in-python/1863286#18632861Answer by J.F. Sebastian for grep -r in pythonJ.F. Sebastian2009-12-07T22:12:37Z2009-12-07T22:12:37Z<pre><code>import os, re
def grep_r(regex, dir):
for root, dirs, files in os.walk(dir):
for f in files:
for m in grep(regex, os.path.join(root, f)):
yield m
def grep(regex, filename):
for i, line in enumerate(open(filename)):
if re.match(regex, line): # or re.search depending on your default
yield "%s:%d: %s" % (os.path.basename(filename), i+1, line)
</code></pre>
http://stackoverflow.com/questions/228181/zen-of-python/1860503#18605031Answer by J.F. Sebastian for zen of pythonJ.F. Sebastian2009-12-07T15:01:48Z2009-12-07T15:01:48Z<h3>In the face of ambiguity, refuse the temptation to guess</h3>
<p>Consider:</p>
<pre><code>if not a and b:
assert not a
assert b
</code></pre>
<p>What binds more tightly <code>'not'</code> or <code>'and'</code>? The syntax is unambiguous but my memory is not.</p>
<p>Could it be? (no):</p>
<pre><code>if not (a and b):
pass
</code></pre>
<p>If short-circuiting doesn't matter then I'd write it:</p>
<pre><code>if b and not a:
pass
</code></pre>
<p>Or somewhat ugly but reliable if it does:</p>
<pre><code>if (not a) and b:
pass
</code></pre>
<p>This is subjective because someone may argue that you should expect the reader of your code to know Python and thus the priorities for <code>'not'</code> and <code>'and'</code>, and it is not obscure enough to justify parentheses.</p>
http://stackoverflow.com/questions/1856963/python-soappy-add-header/1857200#18572000Answer by J.F. Sebastian for python soappy add headerJ.F. Sebastian2009-12-07T00:52:40Z2009-12-07T00:52:40Z<p>Here's an example using <a href="https://fedorahosted.org/suds/wiki/Documentation#SOAPHEADERS" rel="nofollow">suds</a> library (an alternative to SOAPpy). It assumes that the custom header is not defined in the wsdl.</p>
<pre><code>from suds.client import Client
from suds.sax.element import Element
client = Client("http://example.com/example.wsdl")
# <tns:h xmlns:tns="http://example2.com/example2/">v</tns:h>
tns = ("tns", "http://example2.com/example2/")
h = Element('h', ns=tns).setText('v')
client.set_options(soapheaders=h)
#
s = client.service.Op(data)
</code></pre>
http://stackoverflow.com/questions/1856014/how-to-find-replace-text-in-html-while-preserving-html-tags-structure/1856050#18560501Answer by J.F. Sebastian for How to find/replace text in html while preserving html tags/structureJ.F. Sebastian2009-12-06T17:56:00Z2009-12-06T18:25:37Z<p>Use html parser such as provided by <a href="http://codespeak.net/lxml/" rel="nofollow"><code>lxml</code></a> or <a href="http://www.crummy.com/software/BeautifulSoup/" rel="nofollow"><code>BeautifulSoup</code></a>. Another option is to use XSLT transformations (<a href="http://jython.xhaus.com/transforming-with-xslt-on-google-appengine-and-jython/" rel="nofollow">XSLT in Jython</a>).</p>
http://stackoverflow.com/questions/1854806/is-there-an-open-source-python-library-for-sanitizing-html-and-removing-all-javas/1855818#18558182Answer by J.F. Sebastian for Is there an Open Source Python library for sanitizing HTML and removing all Javascript?J.F. Sebastian2009-12-06T16:33:27Z2009-12-06T16:33:27Z<p>Whitelist approach to allowed tags, attributes and their values is the only reliable way. Take a look at <a href="http://code.activestate.com/recipes/496942/" rel="nofollow">Recipe 496942: Cross-site scripting (XSS) defense</a></p>
<p>What is wrong with existing markup languages such as used on this very site?</p>
http://stackoverflow.com/questions/1855748/dynamically-refreshed-pages-produced-by-python/1855787#18557870Answer by J.F. Sebastian for Dynamically Refreshed Pages produced by PythonJ.F. Sebastian2009-12-06T16:17:59Z2009-12-06T16:17:59Z<p>Update <code>img.src</code> attribute in <code>onsubmit()</code> handler.</p>
<ul>
<li><code>img.src</code> url points to your Python script that should generate an image in response.</li>
<li><code>onsubmit()</code> for your form could be registered and written using JQuery. </li>
</ul>
http://stackoverflow.com/questions/1855576/how-do-i-get-the-remote-user-agent-inside-a-genshi-template-when-using-trac-and/1855643#18556430Answer by J.F. Sebastian for How do I get the remote user agent inside a Genshi template when using Trac, and WSGI?J.F. Sebastian2009-12-06T15:09:49Z2009-12-06T15:09:49Z<pre><code>user_agent = environ.get('HTTP_USER_AGENT', None)
</code></pre>
<p>Or if <code>environ</code> is wrapped in some sort of <code>Request</code> object:</p>
<pre><code>user_agent = request.user_agent
</code></pre>
<p>btw, You should probably look at <code>HTTP_ACCEPT</code> header instead of <code>HTTP_USER_AGENT</code> to find out what representation should be sent.</p>
http://stackoverflow.com/questions/1841737/hashing-multiple-files/1842682#18426822Answer by J.F. Sebastian for Hashing Multiple FilesJ.F. Sebastian2009-12-03T20:27:54Z2009-12-06T04:22:32Z<p>The logic of the requirements is complex enough to justify the use of Python instead of bash. It should provide a more readable, extensible, and maintainable solution.</p>
<pre><code>#!/usr/bin/env python
import hashlib, os
def ishash(h, size):
"""Whether `h` looks like hash's hex digest."""
if len(h) == size:
try:
int(h, 16) # whether h is a hex number
return True
except ValueError:
return False
for root, dirs, files in os.walk("."):
dirs[:] = [d for d in dirs if not d.startswith(".")] # skip hidden dirs
for path in (os.path.join(root, f) for f in files if not f.startswith(".")):
suffix = hash_ = "." + hashlib.md5(open(path).read()).hexdigest()
hashsize = len(hash_) - 1
# extract old hash from the name; add/replace the hash if needed
barepath, ext = os.path.splitext(path) # ext may be empty
if not ishash(ext[1:], hashsize):
suffix += ext # add original extension
barepath, oldhash = os.path.splitext(barepath)
if not ishash(oldhash[1:], hashsize):
suffix = oldhash + suffix # preserve 2nd (not a hash) extension
else: # ext looks like a hash
oldhash = ext
if hash_ != oldhash: # replace old hash by new one
os.rename(path, barepath+suffix)
</code></pre>
<p>Here's a test directory tree. It contains:</p>
<ul>
<li>files without extension inside directories with a dot in their name</li>
<li>filename which already has a hash in it (test on idempotency)</li>
<li>filename with two extensions</li>
<li>newlines in names</li>
</ul>
<pre>
$ tree a
a
|-- b
| `-- c.d
| |-- f
| |-- f.ext1.ext2
| `-- g.d41d8cd98f00b204e9800998ecf8427e
|-- c.ext^Mnewline
| `-- f
`-- f^Jnewline.ext1
7 directories, 5 files
</pre>
<h3>Result</h3>
<pre>
$ tree a
a
|-- b
| `-- c.d
| |-- f.0bee89b07a248e27c83fc3d5951213c1
| |-- f.ext1.614dd0e977becb4c6f7fa99e64549b12.ext2
| `-- g.d41d8cd98f00b204e9800998ecf8427e
|-- c.ext^Mnewline
| `-- f.0bee89b07a248e27c83fc3d5951213c1
`-- f^Jnewline.b6fe8bb902ca1b80aaa632b776d77f83.ext1
7 directories, 5 files
</pre>
<p>The solution works correctly for all cases.</p>
<p><hr></p>
<p>Whirlpool hash is not in Python's stdlib, but there are both pure Python and C extensions that support it e.g., <code>python-mhash</code>.</p>
<p>To install it:</p>
<pre><code>$ sudo apt-get install python-mhash
</code></pre>
<p>To use it:</p>
<pre><code>import mhash
print mhash.MHASH(mhash.MHASH_WHIRLPOOL, "text to hash here").hexdigest()
</code></pre>
<p>Output:
cbdca4520cc5c131fc3a86109dd23fee2d7ff7be56636d398180178378944a4f41480b938608ae98da7eccbf39a4c79b83a8590c4cb1bace5bc638fc92b3e653</p>
<p><hr></p>
<h3>Invoking <code>whirlpooldeep</code> in Python</h3>
<pre><code>from subprocess import PIPE, STDOUT, Popen
def getoutput(cmd):
return Popen(cmd, stdout=PIPE, stderr=STDOUT).communicate()[0]
hash_ = getoutput(["whirlpooldeep", "-q", path]).rstrip()
</code></pre>
<p><hr></p>
<p><a href="http://git-scm.com/" rel="nofollow"><code>git</code></a> can provide with leverage for the problems that need to track set of files based on their hashes. </p>
http://stackoverflow.com/questions/1831218/is-there-a-tuple-data-structure-in-python/1842063#18420631Answer by J.F. Sebastian for Is there a tuple data structure in PythonJ.F. Sebastian2009-12-03T18:52:01Z2009-12-03T18:52:01Z<p>Here's a comment to <a href="http://stackoverflow.com/questions/1831218/is-there-a-tuple-data-structure-in-python/1831334#1831334">@gimel's answer</a>:</p>
<pre><code>>>> import collections
>>> T = collections.namedtuple("T", 'tag name values')
>>> from itertools import starmap
>>> list(starmap(T, [("a", "b", [1,2]), ("c", "d",[3,4])]))
[T(tag='a', name='b', values=[1, 2]), T(tag='c', name='d', values=[3, 4])]
</code></pre>
http://stackoverflow.com/questions/1834850/python-powershell-or-other/1836471#18364711Answer by J.F. Sebastian for Python, PowerShell, or Other?J.F. Sebastian2009-12-02T22:58:51Z2009-12-02T22:58:51Z<p>If all you do is spawning a lot of system specific programs with no or little programming logic behind then OS specific shell might be a better choice than a full general purpose programming language.</p>
http://stackoverflow.com/questions/1801459/algorithm-how-to-delete-duplicate-elements-in-a-list-efficiently/1822857#18228570Answer by J.F. Sebastian for Algorithm - How to delete duplicate elements in a list efficiently?J.F. Sebastian2009-11-30T22:27:36Z2009-11-30T23:20:50Z<h2>Delete duplicates in a list inplace in Python</h2>
<h3>Case: Items in the list are not hashable or comparable</h3>
<p>That is we can't use <code>set</code> (<code>dict</code>) or <code>sort</code>.</p>
<pre><code>from itertools import islice
def del_dups2(lst):
"""O(n**2) algorithm, O(1) in memory"""
pos = 0
for item in lst:
if all(item != e for e in islice(lst, pos)):
# we haven't seen `item` yet
lst[pos] = item
pos += 1
del lst[pos:]
</code></pre>
<h3>Case: Items are hashable</h3>
<p>Solution is taken from <a href="http://stackoverflow.com/questions/89178/in-python-what-is-the-fastest-algorithm-for-removing-duplicates-from-a-list-so-t/282589#282589">here</a>:</p>
<pre><code>def del_dups(seq):
"""O(n) algorithm, O(log(n)) in memory (in theory)."""
seen = {}
pos = 0
for item in seq:
if item not in seen:
seen[item] = True
seq[pos] = item
pos += 1
del seq[pos:]
</code></pre>
<h3>Case: Items are comparable, but not hashable</h3>
<p>That is we can use <code>sort</code>. This solution doesn't preserve original order.</p>
<pre><code>def del_dups3(lst):
"""O(n*log(n)) algorithm, O(1) memory"""
lst.sort()
it = iter(lst)
for prev in it: # get the first element
break
pos = 1 # start from the second element
for item in it:
if item != prev: # we haven't seen `item` yet
lst[pos] = prev = item
pos += 1
del lst[pos:]
</code></pre>
http://stackoverflow.com/questions/1815427/how-to-pass-an-unicode-char-argument-to-imagemagick/1815535#18155350Answer by J.F. Sebastian for How to pass an unicode char argument to ImageMagick?J.F. Sebastian2009-11-29T13:22:54Z2009-11-29T13:34:08Z<ol>
<li>Try to get it working by hand using ASCII labels in your console.</li>
</ol>
<pre>
$ convert -font somefont.ttf -size 50x50 -label:A output.png
convert: unrecognized option `-label:A' @ convert.c/ConvertImageCommand/1753.
1 ;(
$ convert -font somefont.ttf -size 50x50 -label A output.png
convert: missing an image filename `output.png' @ convert.c/ConvertImageComm\
and/2775.
1 ;(
</pre>
<ol>
<li><p>Use <code>subprocess.check_call</code> instead of <code>os.system</code>.</p>
<pre><code>import subprocess
if __name__=="__main__":
cmd = 'convert -font somefont.ttf -size 50x50'.split()
#XXX command arguments are invalid
subprocess.check_call(cmd + ['-label', unichr(9635), 'output.png'])
</code></pre></li>
</ol>
http://stackoverflow.com/questions/1815258/how-do-i-check-the-index-of-a-an-element-in-a-list-python/1815432#18154321Answer by J.F. Sebastian for How do I check the index of a an element in a list? (Python)J.F. Sebastian2009-11-29T12:45:29Z2009-11-29T12:45:29Z<pre><code>from itertools import imap
def find(iterable, item, key=None):
"""Find `item` in `iterable`.
Return index of the found item or ``-1`` if there is none.
Apply `key` function to items before comparison with
`item`. ``key=None`` means an identity function.
"""
it = iter(iterable) if key is None else imap(key, iterable)
for i, e in enumerate(it):
if e == item:
return i
return -1
</code></pre>
<p>Example:</p>
<pre><code>L = [('ba', 4), ('hh', 5), ('gg', 25)]
print find(L, 'hh', key=lambda x: x[0])
</code></pre>
<p>Output:</p>
<pre><code>1
</code></pre>
http://stackoverflow.com/questions/1809758/creating-hierarchy-tree-from-dictionary-of-pages-contents/1812798#18127980Answer by J.F. Sebastian for Creating hierarchy tree from dictionary of pages' contentsJ.F. Sebastian2009-11-28T15:30:15Z2009-11-28T15:30:15Z<p>Here's an illustration for your question. It is easier to reason about graphs when you have a picture.</p>
<p>First, abbreviate the data:</p>
<pre><code>#!/usr/bin/perl -pe
s/section-([a-e])\.html/uc$1/eg; s/product-([a-e])\.html/$1/g
</code></pre>
<p>Result:</p>
<pre><code># graph as adj list
DATA = {
'A':{'contents':'B C D'},
'B':{'contents':'D E'},
'C':{'contents':'a b c d'},
'D':{'contents':'a c'},
'E':{'contents':'b d'},
'a':{'contents':''},
'b':{'contents':''},
'c':{'contents':''},
'd':{'contents':''}
}
</code></pre>
<p>Convert to graphviz's format:</p>
<pre><code>with open('data.dot', 'w') as f:
print >> f, 'digraph {'
for node, v in data.iteritems():
for child in v['contents'].split():
print >> f, '%s -> %s;' % (node, child),
if v['contents']: # don't print empty lines
print >> f
print >> f, '}'
</code></pre>
<p>Result:</p>
<pre><code>digraph {
A -> C; A -> B; A -> D;
C -> a; C -> b; C -> c; C -> d;
B -> E; B -> D;
E -> b; E -> d;
D -> a; D -> c;
}
</code></pre>
<p>Plot the graph:</p>
<pre>
$ dot -Tpng -O data.dot
</pre>
<p><img src="http://i403.photobucket.com/albums/pp111/uber%5Fulrich/find%5Fpaths/datadot.png" alt="data.dot" title=""></p>
http://stackoverflow.com/questions/1811010/standard-library-higher-precision-floating-point/1811052#18110523Answer by J.F. Sebastian for Standard library - higher-precision floating point?J.F. Sebastian2009-11-27T23:57:18Z2009-11-27T23:57:18Z<pre><code>>>> import decimal
>>> decimal.Decimal(-1000).exp()
Decimal('5.075958897549456765291809480E-435')
>>> decimal.getcontext().prec = 60
>>> decimal.Decimal(-1000).exp()
Decimal('5.07595889754945676529180947957433691930559928289283736183239E-435')
</code></pre>
http://stackoverflow.com/questions/1805480/how-would-you-represent-a-minesweeper-grid-in-python/1805601#18056011Answer by J.F. Sebastian for How would you represent a MineSweeper grid in Python?J.F. Sebastian2009-11-26T20:54:41Z2009-11-26T20:54:41Z<p>If you use an instance of <code>Board</code> class you can always change the internal representation later.</p>
<pre><code>class Board(object):
def __init__(self, width, height):
self.__width, self.__height = width, height
self._board = [[FieldState() for y in xrange(height)]
for x in xrange(width)]
@property
def width(self):
return self.__width
def mark(self, x, y):
self._board[x][y].mark()
def __getitem__(self, coord):
"""
>>> board = Board(3, 4)
>>> field = board[1,2] # 2nd column, 3rd row
"""
x, y = coord
return self._board[x][y]
...
</code></pre>
<p>Where <code>FieldState</code> is similar to the one from <a href="http://stackoverflow.com/questions/1805480/how-would-you-represent-a-minesweeper-grid-in-python/1805509#1805509">@zlack's answer</a>.</p>
http://stackoverflow.com/questions/1583364/idiomatic-python-hasone/1792927#17929270Answer by J.F. Sebastian for Idiomatic Python has_oneJ.F. Sebastian2009-11-24T21:08:06Z2009-11-24T21:08:06Z<p>Here's modified <a href="http://stackoverflow.com/questions/1583364/idiomatic-python-hasone/1583465#1583465">@Stephan202's answer</a>:</p>
<pre><code>from itertools import imap, repeat
def exactly_n_is_true(iterable, n, predicate=None):
it = iter(iterable) if predicate is None else imap(predicate, iterable)
return all(any(it) for _ in repeat(None, n)) and not any(it)
</code></pre>
<p>Differences:</p>
<ol>
<li><p><code>predicate()</code> is None by default. The meaning is the same as for built-in <code>filter()</code> and stdlib's <code>itertools.ifilter()</code> functions.</p></li>
<li><p>More explicit function and parameters names (this is subjective).</p></li>
<li><p><code>repeat()</code> allows large <code>n</code> to be used.</p></li>
</ol>
<p>Example:</p>
<pre><code>if exactly_n_is_true(seq, 1, predicate):
# predicate() is true for exactly one item from the seq
</code></pre>
http://stackoverflow.com/questions/1738687/python-convert-string-into-function-name-getattr-or-equal/1739054#17390541Answer by J.F. Sebastian for Python: Convert string into function name; getattr or equal?J.F. Sebastian2009-11-15T22:14:53Z2009-11-20T20:54:47Z<pre><code>function = eval_dottedname(name if '.' in name else "%s.%s" % (__name__, name))
</code></pre>
<p>Where <code>eval_dottedname()</code>:</p>
<pre><code>def eval_dottedname(dottedname):
"""
>>> eval_dottedname("os.path.join") #doctest: +ELLIPSIS
<function join at 0x...>
>>> eval_dottedname("sys.exit") #doctest: +ELLIPSIS
<built-in function exit>
>>> eval_dottedname("sys") #doctest: +ELLIPSIS
<module 'sys' (built-in)>
"""
return reduce(getattr, dottedname.split(".")[1:],
__import__(dottedname.partition(".")[0]))
</code></pre>
<p><code>eval_dottedname()</code> is the only one among all answers that supports arbitrary names with multiple dots in them e.g., `'datetime.datetime.now'. Though it doesn't work for nested modules that require import, but I can't even remember an example from stdlib for such module.</p>
http://stackoverflow.com/questions/1915564/python-convert-a-dictionary-to-a-sorted-list-by-value-instead-of-key/1915631#1915631Comment by J.F. Sebastian on python, convert a dictionary to a sorted list by value instead of keyJ.F. Sebastian2009-12-16T16:14:38Z2009-12-16T16:14:38Z<code>adict.get</code> variant does key lookup twice for each item the dict. <code>[(k, v) for k, v in sorted(adict.iteritems(), key=itemgetter(1), reverse=True)]</code> does it once.
http://stackoverflow.com/questions/1904351/python-observer-pattern-examples-tips/1904428#1904428Comment by J.F. Sebastian on Python Observer Pattern: Examples, Tips?J.F. Sebastian2009-12-15T20:42:54Z2009-12-15T20:42:54Z@Jim Dennis: <code>Observer</code> and <code>Observable</code> are different beasts. The former observes the latter one. http://stackoverflow.com/questions/1904351/python-observer-pattern-examples-tips/1904379#1904379Comment by J.F. Sebastian on Python Observer Pattern: Examples, Tips?J.F. Sebastian2009-12-15T00:19:18Z2009-12-15T00:19:18Z<code>lambda before_emit=object(): before_emit</code> might be a better default than <code>object</code> for <code>defaultdict.__init__(self, default)</code>. Thus all values before <code>emit()</code> is called for the first time are the same and they are distinct from any possible response from subscribers.
http://stackoverflow.com/questions/1900195/whats-a-neater-more-pythonic-way-to-do-the-following-enumeration/1901463#1901463Comment by J.F. Sebastian on What's a neater, more pythonic way to do the following enumeration?J.F. Sebastian2009-12-14T23:33:54Z2009-12-14T23:33:54Z@John Machin: I've included deleted answer & comment for reference.http://stackoverflow.com/questions/1897748/executing-server-side-unix-scripts-asynchronouslyComment by J.F. Sebastian on Executing server-side Unix scripts asynchronouslyJ.F. Sebastian2009-12-13T21:28:38Z2009-12-13T21:28:38ZContinuous Integration systems such as BuildBot, Hudson might provide all you need.http://stackoverflow.com/questions/1896261/how-to-determine-the-datatype-in-python/1896263#1896263Comment by J.F. Sebastian on How to determine the datatype in Python?J.F. Sebastian2009-12-13T11:49:41Z2009-12-13T11:49:41ZThis doesn't work for Unicode strings. Use <code>basestring</code>, see <a href="http://stackoverflow.com/questions/1896261/how-to-determine-the-datatype-in-python/1896268#1896268" rel="nofollow" title="how to determine the datatype in python">stackoverflow.com/questions/1896261/…</a>http://stackoverflow.com/questions/734256/is-there-a-way-to-git-svn-dcommit-from-a-cloned-git-svn-repository/735984#735984Comment by J.F. Sebastian on Is there a way to "git svn dcommit" from a cloned git-svn repository :J.F. Sebastian2009-12-12T20:05:31Z2009-12-12T20:05:31ZShouldn't <code>git svn init</code> go <i>before</i> <code>git update-ref</code>?http://stackoverflow.com/questions/1894269/convert-string-list-to-list-in-python/1894293#1894293Comment by J.F. Sebastian on convert string list to list in pythonJ.F. Sebastian2009-12-12T19:53:59Z2009-12-12T19:53:59Z1. Use raw string literals <code>r''</code> in regexps that contain slashes. 2. Use non-gready <code>'*'</code> after`']'` otherwise it leaves trailing spaces.http://stackoverflow.com/questions/316866/ping-a-site-in-python/317206#317206Comment by J.F. Sebastian on Ping a site in Python?J.F. Sebastian2009-12-12T19:14:06Z2009-12-12T19:14:06Z<code>ping</code> uses <code>time.clock</code> that doesn't yield anything useful on my Linux box. <code>timeit.default_timer</code> (it is equal to <code>time.time</code> on my machine) works. <code>time.clock</code> -> <code>timeit.default_timer</code> <a href="http://gist.github.com/255009" rel="nofollow">gist.github.com/255009</a>http://stackoverflow.com/questions/1893867/python-random-and-int-to-string-question/1894036#1894036Comment by J.F. Sebastian on Python random and int to string questionJ.F. Sebastian2009-12-12T17:57:15Z2009-12-12T17:57:15Z@Mark: <i>Most</i> of the code tagged <code>python</code> doesn't work on Python 3.0 (due to trivial differences <code>print</code> statement -> <code>print()</code> function, <code>xrange</code> -> <code>range</code>. Unless the question <i>explicitly</i> states Python 3.x requirement all code <i>should</i> be assumed to be Python 2.xhttp://stackoverflow.com/questions/1893867/python-random-and-int-to-string-question/1893877#1893877Comment by J.F. Sebastian on Python random and int to string questionJ.F. Sebastian2009-12-12T17:22:35Z2009-12-12T17:22:35ZIt is better just to look at the source of <code>random.sample</code>, but I think it uses just <code>__len__</code> and <code>__getitem__</code> methods.http://stackoverflow.com/questions/1893867/python-random-and-int-to-string-question/1893877#1893877Comment by J.F. Sebastian on Python random and int to string questionJ.F. Sebastian2009-12-12T16:57:51Z2009-12-12T16:57:51Z-1: <code>random.sample()</code> doesn't generate an entire list to sample from. <code>random.sample(xrange(10**9), 100)</code> and <code>random.sample(xrange(10**3), 100)</code> take the same time.http://stackoverflow.com/questions/1841737/hashing-multiple-files/1854674#1854674Comment by J.F. Sebastian on Hashing Multiple FilesJ.F. Sebastian2009-12-12T16:42:38Z2009-12-12T16:42:38Z+1: for error handlinghttp://stackoverflow.com/questions/1891551/network-programming-python-vs-c-for-a-complete-beginnerComment by J.F. Sebastian on Network programming: Python vs. C for a complete beginnerJ.F. Sebastian2009-12-11T23:51:12Z2009-12-11T23:51:12ZGo <a href="http://golang.org" rel="nofollow">golang.org</a> might be a better alternative than C for network programming.http://stackoverflow.com/questions/1891353/is-there-a-third-party-service-for-receiving-email-and-accessing-via-an-apiComment by J.F. Sebastian on Is there a third-party service for receiving email and accessing via an API?J.F. Sebastian2009-12-11T23:23:27Z2009-12-11T23:23:27ZWhat prevents you from using API for SMTP, POP3, or IMAP that most mail-services provide?