User Michael Twomey - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T00:03:30Z http://stackoverflow.com/feeds/user/995 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/602599/how-to-show-the-output-of-l-in-python-pdb-after-every-command-entered/602750#602750 3 Answer by Michael Twomey for How to show the output of 'l' in python pdb after every command entered Michael Twomey 2009-03-02T15:29:38Z 2009-03-02T15:29:38Z <p>One way to do this is to alias your favourite commands to run the command and then l.</p> <p>e.g.</p> <pre><code>(Pdb) alias s step ;; l (Pdb) s &gt; /usr/lib/python2.5/distutils/core.py(14)&lt;module&gt;() -&gt; from types import * 9 # This module should be kept compatible with Python 2.1. 10 11 __revision__ = "$Id: core.py 38672 2005-03-20 22:19:47Z fdrake $" 12 13 import sys, os 14 -&gt; from types import * 15 16 from distutils.debug import DEBUG 17 from distutils.errors import * 18 from distutils.util import grok_environment_error 19 </code></pre> <p>In your ~/.pdbrc you can add the aliases so you have them every time:</p> <pre><code>alias s step ;; l </code></pre> http://stackoverflow.com/questions/579426/wsgi-byte-ranges-serving/594496#594496 3 Answer by Michael Twomey for WSGI byte ranges serving Michael Twomey 2009-02-27T12:10:21Z 2009-02-27T12:10:21Z <p>I think <a href="http://pythonpaste.org/webob/" rel="nofollow">webob</a> may do the trick, see the end of the <a href="http://pythonpaste.org/webob/file-example.html" rel="nofollow">file example</a> for a range request implementation which efficiently seeks into the file being served.</p> http://stackoverflow.com/questions/506594/is-there-a-widely-used-stomp-adapter-for-twisted/561901#561901 3 Answer by Michael Twomey for Is there a widely used STOMP adapter for Twisted? Michael Twomey 2009-02-18T16:45:59Z 2009-02-18T16:45:59Z <p>There is a python library called <a href="http://code.google.com/p/stomper/" rel="nofollow">stomper</a> which I've used in the past with twisted (it comes with twisted example code). Disclaimer, I've worked on the code for stomper so I like it :)</p> <p>These days I've moved away from stomp/ActiveMQ towards AMQP + <a href="http://www.rabbitmq.com/" rel="nofollow">RabbitMQ</a>, using the <a href="https://launchpad.net/txamqp" rel="nofollow">txAMQP</a> and <a href="http://barryp.org/software/py-amqplib/" rel="nofollow">py-amqplib</a> libraries. I've found rabbit more reliable and the AMQP protocol quite good. See <a href="http://blogs.digitar.com/jjww/2009/01/rabbits-and-warrens/" rel="nofollow">this article</a> for a very good overview. A big bonus is good java and .net library support too.</p> http://stackoverflow.com/questions/178199/python-can-i-have-a-list-with-named-indices/178213#178213 16 Answer by Michael Twomey for Python: can I have a list with named indices? Michael Twomey 2008-10-07T12:29:57Z 2008-10-07T12:29:57Z <p>This sounds like the PHP array using named indices is very similar to a python dict:</p> <pre><code>shows = [ {"id": 1, "name": "Sesaeme Street"}, {"id": 2, "name": "Dora The Explorer"}, ] </code></pre> <p>See <a href="http://docs.python.org/tutorial/datastructures.html#dictionaries" rel="nofollow">http://docs.python.org/tutorial/datastructures.html#dictionaries</a> for more on this.</p> http://stackoverflow.com/questions/126364/cannot-find-lpq-when-trying-to-install-psycopg2/126494#126494 1 Answer by Michael Twomey for "cannot find -lpq" when trying to install psycopg2 Michael Twomey 2008-09-24T10:59:27Z 2008-09-24T10:59:27Z <p>Have you tried the <a href="http://www.stickpeople.com/projects/python/win-psycopg/" rel="nofollow">binary build</a> of psycopg2 for windows? If that works with your python then it mitigates the need to build by hand.</p> <p>I've seen random people ask this question on various lists and it seems one recommendation is to build postgresql by hand to work around this problem.</p> http://stackoverflow.com/questions/126131/python-library-for-rendering-html-and-javascript/126250#126250 2 Answer by Michael Twomey for Python library for rendering HTML and javascript Michael Twomey 2008-09-24T09:42:52Z 2008-09-24T09:42:52Z <p>The big complication here is emulating the full browser environment outside of a browser. You can use stand alone javascript interpreters like Rhino and SpiderMonkey to run javascript code but they don't provide a complete browser like environment to full render a web page.</p> <p>If I needed to solve a problem like this I would first look at how the javascript is rendering the page, it's quite possible it's fetching data via AJAX and using that to render the page. I could then use python libraries like simplejson and httplib2 to directly fetch the data and use that, negating the need to access the DOM object. However, that's only one possible situation, I don't know the exact problem you are solving.</p> <p>Other options include the selenium one mentioned by Ɓukasz, some kind of webkit embedded craziness, some kind of IE win32 scripting craziness or, finally, a pyxpcom based solution (with added craziness). All these have the drawback of requiring pretty much a fully running web browser for python to play with, which might not be an option depending on your environment.</p> http://stackoverflow.com/questions/15798/how-do-i-validate-xml-against-a-dtd-file-in-python/15931#15931 8 Answer by Michael Twomey for How do I validate xml against a DTD file in Python Michael Twomey 2008-08-19T09:39:56Z 2008-08-19T09:39:56Z <p>Another good option is <a href="http://codespeak.net/lxml/validation.html" rel="nofollow">lxml's validation</a> which I find quite pleasant to use.</p> <p>A simple example taken from the lxml site:</p> <pre><code>from StringIO import StringIO from lxml import etree dtd = etree.DTD(StringIO("""&lt;!ELEMENT foo EMPTY&gt;""")) root = etree.XML("&lt;foo/&gt;") print(dtd.validate(root)) # True root = etree.XML("&lt;foo&gt;bar&lt;/foo&gt;") print(dtd.validate(root)) # False print(dtd.error_log.filter_from_errors()) # &lt;string&gt;:1:0:ERROR:VALID:DTD_NOT_EMPTY: Element foo was declared EMPTY this one has content </code></pre> http://stackoverflow.com/questions/13039/is-there-a-tool-that-can-display-a-svn-repository-visually-i-e-pretty-charts/13044#13044 4 Answer by Michael Twomey for Is there a tool that can display a SVN repository visually ( i.e. pretty charts )? Michael Twomey 2008-08-16T08:13:59Z 2008-08-16T08:13:59Z <p>The only tool that I've ever encountered is the <a href="http://svn.collab.net/repos/svn/trunk/tools/client-side/svn-graph.pl" rel="nofollow">svn-graph.pl</a> perl script from the svn tools. It spits out a <a href="http://www.graphviz.org/" rel="nofollow">graphviz</a> dot file which can be rendered in a variety of image formats. This could be wrapped up in a cgi script to form a basic web graph tool.</p> http://stackoverflow.com/questions/12591/using-an-xml-catalog-with-pythons-lxml/13040#13040 0 Answer by Michael Twomey for Using an XML catalog with Python's lxml? Michael Twomey 2008-08-16T07:57:53Z 2008-08-16T07:57:53Z <p>Can you give an example? According to the <a href="http://codespeak.net/lxml/validation.html" rel="nofollow">lxml validation docs</a>, lxml can handle DTD validation (specified in the XML doc or externally in code) and system catalogs, which covers most cases I can think of.</p> <pre><code>f = StringIO("&lt;!ELEMENT b EMPTY&gt;") dtd = etree.DTD(f) dtd = etree.DTD(external_id = "-//OASIS//DTD DocBook XML V4.2//EN") </code></pre> http://stackoverflow.com/questions/2933/an-executable-python-app/12166#12166 6 Answer by Michael Twomey for An executable Python app Michael Twomey 2008-08-15T11:56:02Z 2008-08-15T11:56:02Z <p>An alternative tool to py2exe is <a href="http://pypi.python.org/pypi/bbfreeze/" rel="nofollow">bbfreeze</a> which generates executables for windows and linux. It's newer than py2exe and handles eggs quite well. I've found it magically works better without configuration for a wide variety of applications.</p> http://stackoverflow.com/questions/1154811/app-engine-how-to-reset-the-datastore/1391173#1391173 Comment by Michael Twomey on App Engine: How to "reset" the datastore? Michael Twomey 2009-09-15T10:07:46Z 2009-09-15T10:07:46Z If you tweak the limit=20 in the URL you can up the limit. In my case increasing to 100 let me delete a chunk of data in a couple requests (and saved me writing a tool/page to do this).