User Peter Hoffmann - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T11:19:53Z http://stackoverflow.com/feeds/user/720 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1836352/similarity-between-users-based-on-votes/1836424#1836424 4 Answer by Peter Hoffmann for Similarity Between Users Based On Votes Peter Hoffmann 2009-12-02T22:47:55Z 2009-12-02T22:47:55Z <p>I recommend the book <a href="http://oreilly.com/catalog/9780596529321" rel="nofollow">Programming Collective Intelligence</a> from Toby Segaran. Chapter 3 describes different clustering methods like <a href="http://en.wikipedia.org/wiki/Hierarchical%5Fclustering" rel="nofollow">Hierarchical Clustering</a> and <a href="http://en.wikipedia.org/wiki/K-means%5Fclustering" rel="nofollow">K-means Clustering</a>. </p> <p>The source code for the examples is available <a href="http://kiwitobes.com/PCI%5FCode.zip" rel="nofollow">here</a></p> http://stackoverflow.com/questions/1822787/parsing-dates-from-free-text-input-in-python/1822848#1822848 1 Answer by Peter Hoffmann for Parsing dates from free-text input in Python Peter Hoffmann 2009-11-30T22:26:23Z 2009-11-30T22:26:23Z <p>There is <a href="http://code.google.com/p/parsedatetime/" rel="nofollow">http://code.google.com/p/parsedatetime/</a> </p> http://stackoverflow.com/questions/41207/javascript-interactive-shell-with-completion 4 JavaScript interactive shell with completion Peter Hoffmann 2008-09-03T05:27:19Z 2009-11-28T12:25:23Z <p>For debugging and testing I'm searching for a JavaScript shell with auto completion and if possible object introspection (like ipython). The online <a href="http://www.squarefree.com/shell/" rel="nofollow">JavaScript Shell</a> is really nice, but I'm looking for something local, without the need for an browser.</p> <p>So far I have tested the standalone JavaScript interpreter rhino, spidermonkey and google V8. But neither of them has completion. At least Rhino with jline and spidermonkey have some kind of command history via key up/down, but nothing more.</p> <p>Any suggestions?</p> <p>This question was asked again <a href="http://stackoverflow.com/questions/260787/javascript-shell">here</a>. It might contain an answer that you are looking for.</p> http://stackoverflow.com/questions/1724680/go-language-benchmarks/1728787#1728787 8 Answer by Peter Hoffmann for Go language benchmarks? Peter Hoffmann 2009-11-13T11:57:45Z 2009-11-13T11:57:45Z <p>Go is added to the <a href="http://shootout.alioth.debian.org/u64/benchmark.php?test=all&amp;lang=go&amp;lang2=gpp&amp;box=1" rel="nofollow">Computer Language Benchmarks Game</a>. In comparison to C++ it has still a way to go.</p> <p><img src="http://shootout.alioth.debian.org/u64/chartvs.php?r=eNodj8sBRDEIAlvygxCrsP9ulrcnD2EYwnwI3AQae5C690avxRvWUIc3uXWD0DpJboSTncibLIVuXuRrtzCjzthyDPgYn1Uan8zmoaiuv6gMVFhi34J5WF8b9hWMb02HOyPYR9EFTlYT57S%2BSSraN13eeAA2Pb5t%2FN4c8o9GbP4AyN4yfw%3D%3D&amp;m=eNozNFbwyy9TMDIwsFQoNTNRyAMAJQ8EMA%3D%3D&amp;w=eNpLz%2FdPLygAAAhcAm0%3D" alt="alt text"></p> http://stackoverflow.com/questions/1629755/python-string-formatting-special-characters/1629861#1629861 5 Answer by Peter Hoffmann for Python string formatting special characters. Peter Hoffmann 2009-10-27T10:19:23Z 2009-10-27T10:19:23Z <p>An alternative is to use the new <a href="http://www.python.org/dev/peps/pep-3101/" rel="nofollow">Advanced String Formatting</a></p> <pre><code>&gt;&gt;&gt; example = "%{test}%".format(test="name") &gt;&gt;&gt; print example %name% </code></pre> http://stackoverflow.com/questions/1572574/java-fast-data-storage-retrieval/1572876#1572876 0 Answer by Peter Hoffmann for Java Fast Data Storage & Retrieval Peter Hoffmann 2009-10-15T14:48:00Z 2009-10-15T14:53:53Z <p>If you are looking for a simple key-value store and don't need complex sql querying, <a href="http://www.oracle.com/technology/products/berkeley-db/je/index.html" rel="nofollow">Berkeley DB</a> might be worth a look.</p> <p>Another alternative is <a href="http://1978th.net/tokyocabinet/" rel="nofollow">Tokyo Cabinet</a>, a modern DBM implementation.</p> http://stackoverflow.com/questions/1569076/pythons-libxml2-cant-parse-unicode-strings/1569140#1569140 6 Answer by Peter Hoffmann for Python's libxml2 can't parse unicode strings Peter Hoffmann 2009-10-14T21:35:10Z 2009-10-14T21:49:58Z <p>It should be</p> <pre><code># -*- coding: utf-8 -*- import libxml2 DOC = u"""&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;data&gt; &lt;something&gt;Bäääh!&lt;/something&gt; &lt;/data&gt; """.encode("UTF-8") xml_doc = libxml2.parseDoc(DOC) </code></pre> <p>The .encode("UTF-8") is needed to get the binary representation of the unicode string with the utf8 encoding.</p> http://stackoverflow.com/questions/1553511/extracting-info-from-html-using-phpxpath-php-pythonregexp-or-pythonxpath/1554489#1554489 2 Answer by Peter Hoffmann for Extracting info from html using PHP(XPath), PHP/Python(Regexp) or Python(XPath) Peter Hoffmann 2009-10-12T13:10:43Z 2009-10-12T13:26:25Z <p>If speed is a requirement have a look at <a href="http://codespeak.net/lxml/" rel="nofollow">lxml</a>. lxml is a pythonic binding for the <a href="http://xmlsoft.org/" rel="nofollow">libxml2</a> and <a href="http://xmlsoft.org/XSLT/" rel="nofollow">libxslt</a> C libraries. Using the C libraries is much faster than any pure php or python version.</p> <p>There are some impressive <a href="http://blog.ianbicking.org/2008/03/30/python-html-parser-performance/" rel="nofollow">benchmarks</a> from Ian Bicking:</p> <blockquote> <p><strong>In Conclusion</strong></p> <p>I knew lxml was fast before I started these benchmarks, but I didn’t expect it to be quite this fast.</p> </blockquote> <p>Parsing Results:</p> <p><img src="http://1.2.3.9/bmi/blog.ianbicking.org/wp-content/uploads/images/parsing-results.png" alt="Parsing Resutls" /></p> http://stackoverflow.com/questions/1546089/web-scraping-a-problem-site/1546280#1546280 1 Answer by Peter Hoffmann for web scraping a problem site Peter Hoffmann 2009-10-09T22:00:26Z 2009-10-09T22:00:26Z <p>The website loads the data via ajax. <a href="http://getfirebug.com" rel="nofollow">Firebug</a> shows the ajax calls. For the given page, the data is loaded from <a href="https://personal.vanguard.com/us/JSP/Funds/VGITab/VGIFundOverviewTabContent.jsf?FundIntExt=INT&amp;FundId=0542" rel="nofollow">https://personal.vanguard.com/us/JSP/Funds/VGITab/VGIFundOverviewTabContent.jsf?FundIntExt=INT&amp;FundId=0542</a></p> <p>See the corresponding javascript code on the original page:</p> <pre><code>&lt;script&gt;populator = new Populator({parentId: "profileForm:vanguardFundTabBox:tab0",execOnLoad:true, populatorUrl:"/us/JSP/Funds/VGITab/VGIFundOverviewTabContent.jsf?FundIntExt=INT&amp;FundId=0542", inline:fals e,type:"once"}); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1545178/is-there-a-way-to-get-the-function-a-decorator-has-wrapped/1546057#1546057 0 Answer by Peter Hoffmann for Is there a way to get the function a decorator has wrapped? Peter Hoffmann 2009-10-09T21:10:01Z 2009-10-09T21:10:01Z <p>You can attach the wrapped function to the inner function</p> <pre><code>In [1]: def wrapper(f): ...: def inner(): ...: print "inner" ...: inner._orig = f ...: return inner ...: In [2]: @wrapper ...: def foo(): ...: print "foo" ...: ...: In [3]: foo() inner In [4]: foo._orig() foo </code></pre> http://stackoverflow.com/questions/53513/python-what-is-the-best-way-to-check-if-a-list-is-empty/53525#53525 2 Answer by Peter Hoffmann for Python: What is the best way to check if a list is empty? Peter Hoffmann 2008-09-10T06:31:22Z 2009-09-30T03:32:40Z <p>An empty list is itself considered false in true value testing (see <a href="http://docs.python.org/lib/truth.html" rel="nofollow">python documentation</a>):</p> <pre><code>a = [] if a: print "not empty" </code></pre> <p>@Daren Thomas</p> <blockquote> <p>EDIT: Another point against testing the empty list as False: What about polymorphism? You shouldn't depend on a list being a list. It should just quack like a duck - how are you going to get your duckCollection to quack ''False'' when it has no elements?</p> </blockquote> <p>Your duckCollection should implement <code>__nonzero__</code> or <code>__len__</code> so the if a: will work without problems.</p> http://stackoverflow.com/questions/35691/posting-new-stackoverflow-questions-on-twitter-and-identi-ca-useful-or-useless 5 Posting new stackoverflow questions on twitter and identi.ca, useful or useless? [closed] Peter Hoffmann 2008-08-30T05:05:30Z 2009-09-04T20:52:18Z <p>I registered the accounts <a href="http://twitter.com/stack_overflow" rel="nofollow">http://twitter.com/stack_overflow</a> and <a href="http://identi.ca/stackoverflow" rel="nofollow">http://identi.ca/stackoverflow</a> and wrote a script to post new questions to these accounts.</p> <p>Is this service useful or useless?</p> <pre><code>import sys import urllib import time from datetime import datetime import feedparser # http://www.feedparser.org/ import twitter # http://code.google.com/p/python-twitter/ import identi # http://commandline.org.uk/python/2008/jul/23/using-new-social-networking-service-identica-command-line/ #IDENTICA_USER = "" #IDENTICA_PASS = "" #TWITTERUSER = "" #TWITTERPASS = "" def shorten(url): u = urllib.urlopen("http://tinyurl.com/api-create.php?url="+url) return u.read() def post(message, url): if len(message+" "+url) &gt;=140: url = shorten(url) if len(message+" "+url) &gt;=140: max = 139-len(url) message = message[:max] message = message +" "+url #post_identica(message) post_twitter(message) def post_twitter(message): api = twitter.Api(username=TWITTERUSER, password=TWITTERPASS) api.PostUpdate(message) def post_identica(message): myid = identi.IdentiCA(username=IDENTICA_USER, password=IDENTICA_PASS) myid.login() myid.put_message(message) def get_feed(): feedurl = "http://beta.stackoverflow.com/feeds" feed = feedparser.parse(feedurl) new_questions = [] for entry in feed["entries"]: # feed has new and updated items, we are only interested in new questions if entry["published_parsed"] == entry["updated_parsed"]: tags = [t["term"] for t in entry.tags] tags = " ".join(["#"+x for x in tags]) msg = "%s %s " %(entry.title, tags) new_questions.append((msg, entry.link)) return new_questions def main(argv=None): if argv is None: argv = sys.argv known_questions = {} #do a dry run to prevent questions to be posted twice for msg, link in get_feed(): known_questions[link] = msg print "First Run, skip: "+link while True: time.sleep(300) print "%s download feed" %(datetime.now().isoformat()) for msg, link in get_feed(): if link in known_questions: continue known_questions[link] = msg print "post: "+link post(msg, link) if __name__ == '__main__': main() </code></pre> <p>If someone "official" from stackoverflow wants to provide this service, I will give them over the account information.</p> <p>I just talked to some guys from identi.ca on irc and they have ambivalent feelings about posting (flooding??) their service with links to a closed beta service. So I disabled identi.ca for the moment and just sent updates to twitter.</p> http://stackoverflow.com/questions/1345448/command-line-arg-parsing-through-introspection/1346756#1346756 0 Answer by Peter Hoffmann for command line arg parsing through introspection Peter Hoffmann 2009-08-28T12:37:48Z 2009-08-28T12:37:48Z <p>The WSGI library werkzeug provides <strong><a href="http://werkzeug.pocoo.org/documentation/dev/script.html" rel="nofollow">Management Script Utilities</a></strong> which may do what you want, or at least give you a hint how to do the introspection yourself.</p> <pre><code>from werkzeug import script # actions go here def action_test(): "sample with no args" pass def action_foo(name=2, value="test"): "do some foo" pass if __name__ == '__main__': script.run() </code></pre> <p>Which will generate the following help message:</p> <pre><code>$ python /tmp/test.py --help usage: test.py &lt;action&gt; [&lt;options&gt;] test.py --help actions: foo: do some foo --name integer 2 --value string test test: sample with no args </code></pre> <p>An action is a function in the same module starting with "action_" which takes a number of arguments where every argument has a default. The type of the default value specifies the type of the argument.</p> <p>Arguments can then be passed by position or using --name=value from the shell.</p> http://stackoverflow.com/questions/1252316/python-and-web-tags-regex/1254768#1254768 0 Answer by Peter Hoffmann for Python and web-tags regex Peter Hoffmann 2009-08-10T13:06:44Z 2009-08-10T13:06:44Z <p>While it is ok to use rexex for quick and dirty html processing a much better and cleaner way is to use a html parser like <a href="http://codespeak.net/lxml" rel="nofollow">lxml.html</a> and to query the parsed tree with <a href="http://codespeak.net/lxml/xpathxslt.html" rel="nofollow">XPath</a> or <a href="http://codespeak.net/lxml/cssselect.html" rel="nofollow">CSS Selectors</a>.</p> <pre><code>html = """&lt;html&gt;&lt;body&gt;&lt;div class="deg"&gt;DATA1&lt;/div&gt;&lt;div class="deg"&gt;DATA2&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;""" import lxml.html page = lxml.html.fromstring(html) #page = lxml.html.parse(url) for element in page.findall('.//div[@class="deg"]'): print element.text #using css selectors from lxml.cssselect import CSSSelector sel = CSSSelector("div.deg") for element in sel(page): print element.text </code></pre> http://stackoverflow.com/questions/117986/debug-monitor-middleware-for-python-wsgi-applications 1 Debug/Monitor middleware for python wsgi applications Peter Hoffmann 2008-09-22T22:22:18Z 2009-06-25T01:53:10Z <p>I'm searching a wsgi middleware which I can warp around a wsgi applications and which lets me monitor incoming and outgoing http requests and header fields.</p> <p>Something like firefox live headers, but for the server side.</p> http://stackoverflow.com/questions/822260/i-need-a-regex-for-the-href-attribute-for-an-mp3-file-url-in-python/822416#822416 1 Answer by Peter Hoffmann for I need a regex for the href attribute for an mp3 file url in python Peter Hoffmann 2009-05-04T22:31:59Z 2009-05-04T22:31:59Z <p>As always I suggest using a html parser like <a href="http://codespeak.net/lxml/lxmlhtml.html" rel="nofollow">lxml.html</a> instead of regular expressions to extract informations from html files:</p> <pre><code>import lxml.html tree = lxml.html.fromstring(htmlcode) for link in tree.findall(".//a"): url = link.get("href") if url.endswith(".mp3"): print url </code></pre> http://stackoverflow.com/questions/816118/whats-a-good-way-to-mix-rss-feeds-using-python/817637#817637 1 Answer by Peter Hoffmann for What's a good way to mix RSS feeds using Python? Peter Hoffmann 2009-05-03T18:08:20Z 2009-05-03T18:08:20Z <p><strong><a href="http://atomisator.ziade.org/" rel="nofollow">Atomisator</a></strong> is a data aggregator framework. Its purpose is to provide an engine to build any kind of data by merging several sources of data. It was developed as an example application in the book Expert Python Programming. You can use different In- and Output Formats. An RSS aggregartor is part of the examples.</p> http://stackoverflow.com/questions/32899/how-to-generate-dynamic-unit-tests-in-python 3 How to generate dynamic unit tests in python? Peter Hoffmann 2008-08-28T17:49:02Z 2009-05-01T03:59:06Z <p>I have some kind of test data and want to create an unit test for each item. My first idea was to do it like this:</p> <pre><code>import unittest l = [["foo", "a", "a",], ["bar", "a", "b"], ["lee", "b", "b"]] class TestSequence(unittest.TestCase): def testsample(self): for name, a,b in l: print "test", name self.assertEqual(a,b) if __name__ == '__main__': unittest.main() </code></pre> <p>The downside of this is that it handles all data in one test. I would like to generate one test for each item on the fly. Any suggestions?</p> http://stackoverflow.com/questions/756550/multiple-tuple-to-two-pair-tuple-in-python/756580#756580 12 Answer by Peter Hoffmann for Multiple Tuple to Two-Pair Tuple in Python? Peter Hoffmann 2009-04-16T15:07:24Z 2009-04-16T15:07:24Z <pre><code>[(tuple[a], tuple[a+1]) for a in range(0,len(tuple),2)] </code></pre> http://stackoverflow.com/questions/427472/line-completion-with-custom-commands/427910#427910 2 Answer by Peter Hoffmann for Line completion with custom commands Peter Hoffmann 2009-01-09T12:36:32Z 2009-01-09T12:36:32Z <p>There is the module <strong><a href="http://furius.ca/optcomplete/" rel="nofollow">optcomplete</a></strong> which allows you to write the completion for bash autocompletion in your python program. This is very useful in combination with optparse. You only define your arguments once, add the following to your .bashrc</p> <pre><code>complete -F _optcomplete &lt;program&gt; </code></pre> <p>and all your options will be autocompleted.</p> http://stackoverflow.com/questions/418497/how-do-i-convert-xml-to-nested-objects/419232#419232 4 Answer by Peter Hoffmann for How do I convert XML to nested objects. Peter Hoffmann 2009-01-07T04:51:26Z 2009-01-07T05:16:01Z <p>It's worth to have a look at <a href="http://codespeak.net/lxml/objectify.html" rel="nofollow">http://codespeak.net/lxml/objectify.html</a> </p> <pre><code>&gt;&gt;&gt; xml = """&lt;main&gt; ... &lt;object1 attr="name"&gt;content&lt;/object1&gt; ... &lt;object1 attr="foo"&gt;contenbar&lt;/object1&gt; ... &lt;test&gt;me&lt;/test&gt; ... &lt;/main&gt;""" &gt;&gt;&gt; from lxml import objectify &gt;&gt;&gt; main = objectify.fromstring(xml) &gt;&gt;&gt; main.object1[0] 'content' &gt;&gt;&gt; main.object1[1] 'contenbar' &gt;&gt;&gt; main.object1[0].get("attr") 'name' &gt;&gt;&gt; main.test 'me' </code></pre> <p>Or the other way around to build xml structures:</p> <pre><code>&gt;&gt;&gt; item = objectify.Element("item") &gt;&gt;&gt; item.title = "Best of python" &gt;&gt;&gt; item.price = 17.98 &gt;&gt;&gt; item.price.set("currency", "EUR") &gt;&gt;&gt; order = objectify.Element("order") &gt;&gt;&gt; order.append(item) &gt;&gt;&gt; order.item.quantity = 3 &gt;&gt;&gt; order.price = sum(item.price * item.quantity ... for item in order.item) &gt;&gt;&gt; import lxml.etree &gt;&gt;&gt; print lxml.etree.tostring(order, pretty_print=True) &lt;order&gt; &lt;item&gt; &lt;title&gt;Best of python&lt;/title&gt; &lt;price currency="EUR"&gt;17.98&lt;/price&gt; &lt;quantity&gt;3&lt;/quantity&gt; &lt;/item&gt; &lt;price&gt;53.94&lt;/price&gt; &lt;/order&gt; </code></pre> http://stackoverflow.com/questions/415192/best-way-to-create-a-simple-python-web-service/415338#415338 5 Answer by Peter Hoffmann for Best way to create a simple python web service Peter Hoffmann 2009-01-06T03:18:24Z 2009-01-06T03:18:24Z <p>Have a look at <a href="http://werkzeug.pocoo.org/" rel="nofollow">werkzeug</a>. Werkzeug started as a simple collection of various utilities for WSGI applications and has become one of the most advanced WSGI utility modules. It includes a powerful debugger, full featured request and response objects, HTTP utilities to handle entity tags, cache control headers, HTTP dates, cookie handling, file uploads, a powerful URL routing system and a bunch of community contributed addon modules.</p> <p>It includes lots of cool tools to work with http and has the advantage that you can use it with wsgi in different environments (cgi, fcgi, apache/mod_wsgi or with a plain simple python server for debugging). </p> http://stackoverflow.com/questions/34476/what-is-in-your-javascript-development-toolbox 5 What is in your JavaScript development toolbox? Peter Hoffmann 2008-08-29T15:41:45Z 2008-12-31T09:55:35Z <p>I have to do some JavaScript in the future, so it is time to update my toolbox. Right now I use Firefox with some addons:</p> <ul> <li>JavaScript Shell from https://www.squarefree.com/bookmarklets/webdevel.html</li> <li>Firefox Dom Inspector</li> <li>Firebug</li> <li>Greasemonkey</li> <li>Stylish</li> </ul> <p>I plan to use <a href="http://www.hacksrus.com/~ginda/venkman/" rel="nofollow">Venkman Javascript debugger</a> as well as <a href="http://www.jsunit.net/" rel="nofollow">jsunit</a> and <a href="http://www.crockford.com/javascript/lint.html" rel="nofollow">js-lint</a>.</p> <p>For programming I'm stick with vim.</p> <p>So what other tools do you use when developing JavaScript?</p> http://stackoverflow.com/questions/237432/python-properties-and-inheritance 7 python properties and inheritance Peter Hoffmann 2008-10-26T02:49:09Z 2008-11-14T22:52:52Z <p>I have a base class with a property which (the get method) I want to overwrite in the subclass. My first thought was something like:</p> <pre><code>class Foo(object): def _get_age(self): return 11 age = property(_get_age) class Bar(Foo): def _get_age(self): return 44 </code></pre> <p>This does not work (subclass bar.age returns 11). I found a solution with an lambda expression which works:</p> <pre><code>age = property(lambda self: self._get_age()) </code></pre> <p>So is this the right solution for using properties and overwrite them in a subclass, or are there other preferred ways to do this?</p> http://stackoverflow.com/questions/35753/is-python-good-for-big-software-projects-not-web-based/35757#35757 13 Answer by Peter Hoffmann for Is Python good for big software projects (not web based)? Peter Hoffmann 2008-08-30T07:19:40Z 2008-11-13T07:29:54Z <p>In my opinion python is more than ready for developing complex applications. I see pythons strength more on the server site than writing graphical clients. But have a look at <a href="http://www.resolversystems.com/" rel="nofollow">http://www.resolversystems.com/</a>. They develop a whole spreadsheet in python using the .net ironpython port.</p> <p>If you are familiar with eclipse have a look at <a href="http://pydev.sourceforge.net/" rel="nofollow">pydev</a> which provides auto-completion and debugging support for python with all the other eclipse goodies like svn support. The guy developing it has just been bought by <a href="http://aptana.com/blog/pcolton/pydev_news" rel="nofollow">aptana</a>, so this will be solid choice for the future.</p> <p>@Marcin</p> <blockquote> <p>Cons: as a dynamic language, has way worse IDE support (proper syntax completion requires static typing, whether explicit in Java or inferred in SML),</p> </blockquote> <p>You are right, that static analysis may not provide full syntax completion for dynamic languages, but I thing pydev gets the job done very well. Further more I have a different development style when programming python. I have always an ipython session open and with one F5 I do not only get the perfect completion from ipython, but object introspection and manipulation as well.</p> <blockquote> <p>But if you want to write second Google or Yahoo, you will be much better with C# or Java.</p> </blockquote> <p><a href="http://www.jaiku.com/blog/2008/08/18/from-the-dev-corner-an-under-the-hood-preview-of-our-new-engine/" rel="nofollow">Google just rewrote jaiku</a> to work ontop of appeninge, all in python. And as far as I know they use a lot of python inside google too.</p> http://stackoverflow.com/questions/258119/python-wrapping-method-invocations-with-pre-and-post-methods/258179#258179 0 Answer by Peter Hoffmann for Python: wrapping method invocations with pre and post methods Peter Hoffmann 2008-11-03T09:06:35Z 2008-11-03T10:23:08Z <p>You could just modify the A instance and replace the p1 function with a wrapper function:</p> <pre><code>def wrapped(pre, post, f): def wrapper(*args, **kwargs): pre() retval = f(*args, **kwargs) post() return retval return wrapper class Y: def __init__(self): self.a=A() self.a.p1 = wrapped(self.pre, self.post, self.a.p1) def pre(self): print 'X.pre' def post(self): print 'X.post' </code></pre> http://stackoverflow.com/questions/250271/python-regex-use-how-to-get-positions-of-matches/250303#250303 5 Answer by Peter Hoffmann for Python Regex Use - How to Get Positions of Matches Peter Hoffmann 2008-10-30T14:15:39Z 2008-10-30T14:15:39Z <pre><code>import re p = re.compile("[a-z]") for m in p.finditer('a1b2c3d4'): print m.start(), m.group() </code></pre> http://stackoverflow.com/questions/246725/how-do-i-add-tab-completion-to-the-python-shell/246774#246774 9 Answer by Peter Hoffmann for How do I add tab completion to the Python shell? Peter Hoffmann 2008-10-29T13:21:43Z 2008-10-29T13:21:43Z <p>I think django does something like <a href="http://www.python.org/doc/2.5.2/lib/module-rlcompleter.html" rel="nofollow">http://www.python.org/doc/2.5.2/lib/module-rlcompleter.html</a> </p> <p>If you want to have a really good interactive interpreter have a look at <a href="http://ipython.scipy.org/" rel="nofollow">http://ipython.scipy.org/</a>.</p> http://stackoverflow.com/questions/243836/how-to-copy-all-properties-of-an-object-to-another-object-in-python/244116#244116 2 Answer by Peter Hoffmann for How to copy all properties of an object to another object, in Python? Peter Hoffmann 2008-10-28T17:16:27Z 2008-10-28T17:16:27Z <p>If your class does not modify _ _ getitem _ _ or _ _ setitem _ _ for special attribute access all your attributes are stored in _ _ dict _ _ so you can do:</p> <pre><code> nobj.__dict__ = oobj.__dict__.copy() # just a shallow copy </code></pre> <p>If you use python properties you should look at <code>inspect.getmembers()</code> and filter out the ones you want to copy.</p> http://stackoverflow.com/questions/239912/python-file-interface-for-strings/239929#239929 12 Answer by Peter Hoffmann for Python file interface for strings Peter Hoffmann 2008-10-27T13:48:02Z 2008-10-27T13:48:02Z <p>Yes, there is StringIO:</p> <pre><code>import StringIO import sys sys.stdout = StringIO.StringIO() print "foo", "bar", "baz" s = sys.stdout.getvalue() </code></pre> http://stackoverflow.com/questions/1822787/parsing-dates-from-free-text-input-in-python/1822848#1822848 Comment by Peter Hoffmann on Parsing dates from free-text input in Python Peter Hoffmann 2009-11-30T22:51:20Z 2009-11-30T22:51:20Z Could you post the errors and file a bug? The author (Mike Tylor <a href="http://code-bear.com/bearlog/" rel="nofollow">code-bear.com/bearlog</a>) works at seesmic and is a very capable coder. http://stackoverflow.com/questions/1767752/merging-json-files-using-text-pad Comment by Peter Hoffmann on Merging JSON files using text pad Peter Hoffmann 2009-11-20T01:39:07Z 2009-11-20T01:39:07Z An example would be helpful. What is your merge algorithm. Are you expecting equal keys. If so, how do you want to handle them? http://stackoverflow.com/questions/1762690/why-is-it-when-i-print-something-there-is-always-a-unicode-next-to-it-python/1762705#1762705 Comment by Peter Hoffmann on Why is it when I print something, there is always a unicode next to it? (Python) Peter Hoffmann 2009-11-19T11:54:57Z 2009-11-19T11:54:57Z If you have characters (eg. u's&#252;den') in your string that cannot be encoded as ascii x.__str__() or str(x) will not work (UnicodeEncodeError). The right way is print [x.encode(encoding) for x in l] http://stackoverflow.com/questions/1724680/go-language-benchmarks/1728787#1728787 Comment by Peter Hoffmann on Go language benchmarks? Peter Hoffmann 2009-11-14T03:27:03Z 2009-11-14T03:27:03Z You're right, the last sentence should have been &quot;in comparison ... go and the implementation of the benchmarks still have a way to go&quot;. So I'm looking forward to learn ways how to speed up the benchmarks and go programs in general. http://stackoverflow.com/questions/1724680/go-language-benchmarks/1725905#1725905 Comment by Peter Hoffmann on Go language benchmarks? Peter Hoffmann 2009-11-13T10:00:22Z 2009-11-13T10:00:22Z The debian computer language benchmarks game has 50+ examples <a href="https://alioth.debian.org/scm/viewvc.php/shootout/bench/?root=shootout" rel="nofollow">alioth.debian.org/scm/viewvc.php/&hellip;</a> only some of them are implemented in $GROOT/test/bench http://stackoverflow.com/questions/1724680/go-language-benchmarks/1725905#1725905 Comment by Peter Hoffmann on Go language benchmarks? Peter Hoffmann 2009-11-12T23:40:49Z 2009-11-12T23:40:49Z The benchmarks are mostly from debians computer language benchmarks game. I've startet to port the missing ones: <a href="http://github.com/hoffmann/go-shootout" rel="nofollow">github.com/hoffmann/go-shootout</a> Any help is welcome. http://stackoverflow.com/questions/1643377/grouping-data-on-year/1643525#1643525 Comment by Peter Hoffmann on Grouping data on year Peter Hoffmann 2009-10-29T13:33:42Z 2009-10-29T13:33:42Z Nice solution. I would replace the key=lambda x: x.get('year') with the (imho better) key=operator.itemgetter(&quot;year&quot;) http://stackoverflow.com/questions/1605750/how-to-modify-the-python-default-dictionary-so-that-it-always-returns-a-default/1605802#1605802 Comment by Peter Hoffmann on How to modify the Python 'default' dictionary so that it always returns a default value Peter Hoffmann 2009-10-22T10:11:13Z 2009-10-22T10:11:13Z There is a defaultdict backport <a href="http://code.activestate.com/recipes/523034/" rel="nofollow">code.activestate.com/recipes/523034</a> http://stackoverflow.com/questions/1587839/polymorphism-not-broken-with-visitor-pattern-in-c-and-new-instead-of-override Comment by Peter Hoffmann on Polymorphism (not) broken with visitor pattern in C# (and new instead of override) Peter Hoffmann 2009-10-19T10:23:12Z 2009-10-19T10:23:12Z Hmm. I only hava a Mono C# Compiler at hand, but on my box the correct Accept(VisitorApecial v) is choosen. http://stackoverflow.com/questions/1569917/how-do-i-parse-html-using-regular-expressions-in-c/1570085#1570085 Comment by Peter Hoffmann on How do I parse HTML using regular expressions in C#? Peter Hoffmann 2009-10-15T23:44:05Z 2009-10-15T23:44:05Z If not: now you've got two problems. http://stackoverflow.com/questions/818077/pickle-a-dictionary-of-arrays/818086#818086 Comment by Peter Hoffmann on pickle a dictionary of arrays Peter Hoffmann 2009-05-03T22:56:48Z 2009-05-03T22:56:48Z If you want to save space use gzipped json, see <a href="http://blog.metaoptimize.com/2009/03/22/fast-deserialization-in-python/" rel="nofollow">blog.metaoptimize.com/2009/03/&hellip;</a> for some speed comparisons. http://stackoverflow.com/questions/430226/best-way-to-poll-a-web-service-eg-for-a-twitter-app Comment by Peter Hoffmann on Best way to poll a web service (eg, for a twitter app) Peter Hoffmann 2009-01-10T02:55:45Z 2009-01-10T02:55:45Z I wanted to do some scientific data analysis, put a request with a decent description to <a href="http://twitter.com/help/request_whitelisting" rel="nofollow">twitter.com/help/request_whitelisting</a> and got whitelisted within a week. So just tell them what you want to do and wait, I won't hurt if you just try. http://stackoverflow.com/questions/418497/how-do-i-convert-xml-to-nested-objects/419232#419232 Comment by Peter Hoffmann on How do I convert XML to nested objects. Peter Hoffmann 2009-01-08T12:03:12Z 2009-01-08T12:03:12Z you can use lxml.etree.cleanup_namespaces(order) http://stackoverflow.com/questions/258119/python-wrapping-method-invocations-with-pre-and-post-methods/258259#258259 Comment by Peter Hoffmann on Python: wrapping method invocations with pre and post methods Peter Hoffmann 2008-11-03T10:11:39Z 2008-11-03T10:11:39Z Instead of patching the Class just patch the Instance: self.a.p1 = precall(self.pre)(postcall(self.post)(self.a.p1)) http://stackoverflow.com/questions/190612/where-can-i-find-real-world-examples-of-applications-written-in-python/190637#190637 Comment by Peter Hoffmann on Where can I find real-world examples of applications written in python? Peter Hoffmann 2008-10-29T11:36:13Z 2008-10-29T11:36:13Z I think only parts of chandler are good examples for python programming. A lot of code is written with java in mind and the whole chandler project isn't exactly a success story. The book &quot;Dreaming in Code&quot; gives a good insight.