Python module functions used in unexpected ways - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:21:18Z http://stackoverflow.com/feeds/question/92533 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/92533/python-module-functions-used-in-unexpected-ways 3 Python module functions used in unexpected ways Gregg Lind 2008-09-18T13:29:56Z 2008-10-31T20:23:55Z <p>Based on <a href="http://stackoverflow.com/questions/6209/split-a-string-ignoring-quoted-sections#6243">"Split a string by spaces in Python"</a>, which uses <em>shlex.split</em> to split a string with quotes smartly, I would be interested in hearing about other common tasks solved by non-obvious standard library functions. </p> <p>If this turns into <a href="http://www.doughellmann.com/projects/PyMOTW/" rel="nofollow">Module of The Week</a>, that's fine too. </p> http://stackoverflow.com/questions/92533/python-module-functions-used-in-unexpected-ways/92548#92548 2 Answer by William Keller for Python module functions used in unexpected ways William Keller 2008-09-18T13:32:23Z 2008-09-18T13:32:23Z <p>I found struct.unpack to be a godsend for unpacking binary data formats after I learned of it!</p> http://stackoverflow.com/questions/92533/python-module-functions-used-in-unexpected-ways/93498#93498 1 Answer by Marcin for Python module functions used in unexpected ways Marcin 2008-09-18T15:17:34Z 2008-09-18T15:17:34Z <p>I've found <a href="http://docs.python.org/lib/module-sched.html" rel="nofollow">sched module</a> to be helpful in cron-like activities. It simplifies things a lot. Unfortunately I found it too late. </p> http://stackoverflow.com/questions/92533/python-module-functions-used-in-unexpected-ways/93865#93865 2 Answer by Thomas Wouters for Python module functions used in unexpected ways Thomas Wouters 2008-09-18T15:56:57Z 2008-09-18T15:56:57Z <p>Oft overlooked modules, uses and tricks:</p> <p>collections.defaultdict(): for when you want missing keys in a dict to have a default value.</p> <p>functools.wraps(): for writing decorators that play nicely with introspection.</p> <p>posixpath: the os.path module for POSIX systems. You can use it for manipulating POSIX paths (including URI elements) even on Windows and other non-POSIX systems.</p> <p>ntpath: the os.path module for Windows; usable for manipulation of Windows paths on non-Windows systems.</p> <p>(also: macpath, for MacOS 9 and earlier, os2emxpath for OS/2 EMX, but I'm not sure if anyone still cares.)</p> <p>pprint: more structured printing of the repr() of containers makes debugging much easier.</p> <p>imp: all the tools you need to write your own plugin system or make Python import modules from arbitrary archives.</p> <p>rlcompleter: getting tab-completion in the normal interactive interpreter. Just do "import readline, rlcompleter; readline.parse_and_bind('tab: complete')"</p> <p>the PYTHONSTARTUP environment variable: can be set to the path to a file that will be executed (in the main namespace) when entering the interactive interpreter; useful for putting things in like the rlcompleter recipe above.</p> http://stackoverflow.com/questions/92533/python-module-functions-used-in-unexpected-ways/94551#94551 1 Answer by Jason Shocklee for Python module functions used in unexpected ways Jason Shocklee 2008-09-18T17:11:53Z 2008-09-18T17:11:53Z <p><a href="http://docs.python.org/lib/module-getpass.html" rel="nofollow">getpass</a> is useful for determining the login name of the current user.</p> <p><a href="http://docs.python.org/lib/module-grp.html" rel="nofollow">grp</a> allows you to lookup Unix group IDs by name, and vice versa.</p> <p><a href="http://docs.python.org/lib/module-dircache.html" rel="nofollow">dircache</a> might be useful in situations where you're repeatedly polling the contents of a directory.</p> <p><a href="http://docs.python.org/lib/module-glob.html" rel="nofollow">glob</a> can find filenames matching wildcards like a Unix shell does.</p> <p><a href="http://docs.python.org/lib/module-shutil.html" rel="nofollow">shutil</a> is useful when you need to copy, delete or rename a file.</p> <p><a href="http://docs.python.org/lib/module-csv.html" rel="nofollow">csv</a> can simplify parsing of delimited text files.</p> <p><a href="http://docs.python.org/lib/module-optparse.html" rel="nofollow">optparse</a> provides a reliable way to parse command line options.</p> <p><a href="http://docs.python.org/lib/module-bz2.html" rel="nofollow">bz2</a> comes in handy when you need to manipulate a bzip2-compressed file.</p> <p><a href="http://docs.python.org/lib/module-urlparse.html" rel="nofollow">urlparse</a> will save you the hassle of breaking up a URL into component parts.</p> http://stackoverflow.com/questions/92533/python-module-functions-used-in-unexpected-ways/94991#94991 1 Answer by S.Lott for Python module functions used in unexpected ways S.Lott 2008-09-18T17:58:06Z 2008-09-18T17:58:06Z <p>Most of the other examples are merely overlooked, not unexpected uses for module.</p> <p>fnmatch, like shlex, can be applied in unexpected ways. fnmatch is a kind of poor-person's RE, and can be used for more than matching files, it can compare strings with the simplified wild-card patterns.</p> http://stackoverflow.com/questions/92533/python-module-functions-used-in-unexpected-ways/95159#95159 2 Answer by Gregg Lind for Python module functions used in unexpected ways Gregg Lind 2008-09-18T18:13:28Z 2008-09-27T13:28:26Z <p>I use itertools (especially cycle, repeat, chain) to make python behave more like R and in other functional / vector applications. Often this lets me avoid the overhead and complication of Numpy. </p> <pre><code># in R, shorter iterables are automatically cycled # and all functions "apply" in a "map"-like way over lists &gt; 0:10 + 0:2 [1] 0 2 4 3 5 7 6 8 10 9 11 </code></pre> <p>Python #Normal python In [1]: range(10) + range(3) Out[1]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2]</p> <pre><code>## this code is terrible, but it demos the idea. from itertools import cycle def addR(L1,L2): n = max( len(L1), len(L2)) out = [None,]*n gen1,gen2 = cycle(L1), cycle(L2) ii = 0 while ii &lt; n: out[ii] = gen1.next() + gen2.next() ii += 1 return out In [21]: addR(range(10), range(3)) Out[21]: [0, 2, 4, 3, 5, 7, 6, 8, 10, 9] </code></pre> http://stackoverflow.com/questions/92533/python-module-functions-used-in-unexpected-ways/95825#95825 4 Answer by gooli for Python module functions used in unexpected ways gooli 2008-09-18T19:08:34Z 2008-09-18T19:08:34Z <p>I was quite surprised to learn that you could use the bisect module to do a very fast binary search in a sequence. It's documentation doesn't say anything about it:</p> <blockquote> <p>This module provides support for maintaining a list in sorted order without having to sort the list after each insertion.</p> </blockquote> <p>The usage is very simple:</p> <pre><code>&gt;&gt;&gt; import bisect &gt;&gt;&gt; lst = [4, 7, 10, 23, 25, 100, 103, 201, 333] &gt;&gt;&gt; bisect.bisect_left(lst, 23) 3 </code></pre> <p>You have to remember though, that it's quicker to linearly look for something in a list goes item by item, than sorting the list and then doing a binary search on it. The first option is O(n), the second is O(nlogn).</p> http://stackoverflow.com/questions/92533/python-module-functions-used-in-unexpected-ways/97103#97103 1 Answer by Brian for Python module functions used in unexpected ways Brian 2008-09-18T21:20:29Z 2008-09-18T21:20:29Z <p>One function I've come to appreciate is string.translate. Its very fast at what it does, and useful anywhere you want to alter or remove characters in a string. I've just used it in a seemingly inapplicable <a href="http://stackoverflow.com/questions/89909/in-python-how-to-i-verify-that-a-string-only-contains-letters-numbers-underscor#92000">problem</a> and found it beat all the other solutions handily.</p> <p>The downside is that its API is a bit clunky, but this is improving in Py2.6 / Py3.0.</p> http://stackoverflow.com/questions/92533/python-module-functions-used-in-unexpected-ways/99969#99969 1 Answer by Ingrid for Python module functions used in unexpected ways Ingrid 2008-09-19T05:54:22Z 2008-09-19T05:54:22Z <p>The <a href="http://docs.python.org/lib/module-pickle.html" rel="nofollow">pickle</a> module is pretty awesome</p> http://stackoverflow.com/questions/92533/python-module-functions-used-in-unexpected-ways/101353#101353 1 Answer by ΤΖΩΤΖΙΟΥ for Python module functions used in unexpected ways ΤΖΩΤΖΙΟΥ 2008-09-19T12:10:20Z 2008-09-19T12:10:20Z <p>complex numbers. (The complexobject.c defines a class, so technically it's not a module). Great for 2d coordinates, with easy translation/rotations etc</p> <p>eg.</p> <pre><code>TURN_LEFT_90= 1j TURN_RIGHT_90= -1j coord= 5+4j # x=5 y=4 print coord*TURN_LEFT_90 </code></pre>