User David Eyk - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T06:07:56Zhttp://stackoverflow.com/feeds/user/18950http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1740235/integrating-a-simple-web-server-into-a-custom-main-loop-in-python3Integrating a simple web server into a custom main loop in python?David Eyk2009-11-16T05:24:49Z2009-11-19T00:50:34Z
<p>I have an application in python with a custom main loop (I don't believe the details are important). I'd like to integrate a simple non-blocking web server into the application which can introspect the application objects and possibly provide an interface to manipulate them. What's the best way to do this?</p>
<p>I'd like to avoid anything that uses threading. The ideal solution would be a server with a "stepping" function that can be called from my main loop, do its thing, then return program control until the next go-round.</p>
<p>The higher-level the solution, the better (though something as monolithic as Django might be overkill).</p>
<p>Ideally, a solution will look like this:</p>
<pre><code>def main():
"""My main loop."""
http_server = SomeCoolHttpServer(port=8888)
while True:
# Do my stuff here...
# ...
http_server.next() # Server gets it's turn.
# Do more of my stuff here...
# ...
</code></pre>
http://stackoverflow.com/questions/1534374/editing-mp3-metadata-on-a-file-like-object-in-python/1541482#15414820Answer by David Eyk for Editing MP3 metadata on a file-like object in Python?David Eyk2009-10-09T02:02:28Z2009-10-09T02:02:28Z<p>Well, the answer seems to be that no such animal exists. The advantages of programming to an interface are apparently lost on the python MP3 frame hackers. We solved the problem by modifying an existing library.</p>
http://stackoverflow.com/questions/1534374/editing-mp3-metadata-on-a-file-like-object-in-python1Editing MP3 metadata on a file-like object in Python?David Eyk2009-10-07T21:39:49Z2009-10-09T02:02:28Z
<p>We're generating MP3 files on the fly in Python, and need to edit the ID3 headers in-memory using a file-like object. </p>
<p>All the ID3 libraries on <a href="http://pypi.python.org/pypi?%3Aaction=search&term=id3&submit=search" rel="nofollow">PyPI</a> <em>appear</em> to require you to pass a filesystem path as a string. I find this rather frustrating!</p>
<p>Writing our generated MP3 out to disk (or ramdisk) just to add ID3 tags is unacceptable for a number of reasons, especially performance.</p>
<p><em>Given the plentitude of ID3 libraries</em>, is there an ID3 library that simply works with file-like objects?</p>
http://stackoverflow.com/questions/1526191/how-do-i-memoize-expensive-calculations-on-django-model-objects0How do I memoize expensive calculations on Django model objects?David Eyk2009-10-06T15:06:48Z2009-10-06T15:14:27Z
<p>I have several TextField columns on my UserProfile object which contain JSON objects. I've also defined a setter/getter property for each column which encapsulates the logic for serializing and deserializing the JSON into python datastructures.</p>
<p>The nature of this data ensures that it will be accessed many times by view and template logic within a single Request. To save on deserialization costs, I would like to memoize the python datastructures on read, invalidating on direct write to the property or save signal from the model object.</p>
<p>Where/How do I store the memo? I'm nervous about using instance variables, as I don't understand the magic behind how any particular UserProfile is instantiated by a query. Is <code>__init__</code> safe to use, or do I need to check the existence of the memo attribute via <code>hasattr()</code> at each read?</p>
<p>Here's an example of my current implementation:</p>
<pre><code>class UserProfile(Model):
text_json = models.TextField(default=text_defaults)
@property
def text(self):
if not hasattr(self, "text_memo"):
self.text_memo = None
self.text_memo = self.text_memo or simplejson.loads(self.text_json)
return self.text_memo
@text.setter
def text(self, value=None):
self.text_memo = None
self.text_json = simplejson.dumps(value)
</code></pre>
http://stackoverflow.com/questions/893398/python-doctest-fails-on-0-0-0-0-what-gives2Python doctest fails on 0.0 != -0.0--what gives?David Eyk2009-05-21T15:01:39Z2009-06-23T20:52:46Z
<p>Given the following code:</p>
<pre><code>def slope(x1, y1, x2, y2):
"""
>>> slope(5, 3, 4, 2)
1.0
>>> slope(1, 2, 3, 2)
0.0
>>> slope(1, 2, 3, 3)
0.5
>>> slope(2, 4, 1, 2)
2.0
"""
xa = float (x1)
xb = float (x2)
ya = float (y1)
yb = float (y2)
return (ya-yb)/(xa-xb)
if name_ == '__main__':
import doctest
doctest.testmod()
</code></pre>
<p>The second doctest fails:</p>
<pre><code>Failed example:
slope(1, 2, 3, 2)
Expected:
0.0
Got:
-0.0
</code></pre>
<p>However, we all know that -0.0 == 0.0. Is doctest doing a string comparison to check results here? Why does the second test fail?</p>
http://stackoverflow.com/questions/610892/what-is-a-good-strategy-for-constructing-a-directed-graph-for-a-game-map-in-pyth6What is a good strategy for constructing a directed graph for a game map (in Python)?David Eyk2009-03-04T14:48:19Z2009-03-04T22:20:48Z
<p>I'm developing a procedurally-generated game world in Python. The structure of the world will be similar to the MUD/MUSH paradigm of rooms and exits arranged as a directed graph (rooms are nodes, exits are edges). (Note that this is <em>not</em> necessarily an acyclic graph, though I'm willing to consider acyclic solutions.) </p>
<p>To the world generation algorithm, rooms of different sorts will be distinguished by each room's "tags" attribute (a set of strings). Once they have been instantiated, rooms can be queried and selected by tags (single-tag, tag intersection, tag union, best-candidate).</p>
<p>I'll be creating specific sorts of rooms using a glorified system of template objects and factory methods--I don't think the details are important here, as the current implementation will probably change to match the chosen strategy. (For instance, it would be possible to add tags and tag-queries to the room template system.)</p>
<p>For an example, I will have rooms of these sorts: <pre><code>side_street</code>, <code>main_street</code>, plaza, bar, hotel, restaurant, shop, office</pre></p>
<p>Finally, the question: what is a good strategy for instantiating and arranging these rooms to create a graph that might correspond to given rules? </p>
<p>Some rules might include: one plaza per 10,000 population; <code>main_street</code> connects to <code>plaza</code>; <code>side_street</code> connects to <code>main_street</code> or <code>side_street</code>; <code>hotel</code> favors <code>main_street</code> or <code>plaza</code> connections, and receives further tags accordingly; etc.</p>
<p>Bonus points if a suggested strategy would enable a data-driven implementation.</p>
http://stackoverflow.com/questions/243865/how-do-i-merge-two-python-iterators4How do I merge two python iterators?David Eyk2008-10-28T16:07:12Z2008-12-26T23:04:50Z
<p>I have two iterators, a <code>list</code> and an <code>itertools.count</code> object (i.e. an infinite value generator). I would like to merge these two into a resulting iterator that will alternate yield values between the two:</p>
<pre><code>>>> import itertools
>>> c = itertools.count(1)
>>> items = ['foo', 'bar']
>>> merged = imerge(items, c) # the mythical "imerge"
>>> merged.next()
'foo'
>>> merged.next()
1
>>> merged.next()
'bar'
>>> merged.next()
2
>>> merged.next()
Traceback (most recent call last):
...
StopIteration
</code></pre>
<p>What is the simplest, most concise way to do this?</p>
http://stackoverflow.com/questions/372283/where-is-a-good-open-source-python-project-to-be-used-as-example/373437#3734370Answer by David Eyk for Where is a good open source python project to be used as example?David Eyk2008-12-17T01:55:08Z2008-12-17T01:55:08Z<p>I've recently released a simple package, <a href="http://code.google.com/p/dyce/" rel="nofollow">Dyce</a> (a dice roller with a parser and some other neat features), with exactly these aims. Right now it is strongest on build/package/release automation, but I'm working to improve the documentation and test suite. See the site for a more complete description.</p>
http://stackoverflow.com/questions/245792/when-is-not-a-good-time-to-use-python-generators5When is not a good time to use python generators?David Eyk2008-10-29T04:25:02Z2008-11-01T23:59:46Z
<p>This is rather the inverse of <a href="http://stackoverflow.com/questions/102535/what-can-you-use-python-generator-functions-for">What can you use Python generator functions for?</a>: python generators, generator expressions, and the <code>itertools</code> module are some of my favorite features of python these days. They're especially useful when setting up chains of operations to perform on a big pile of data--I often use them when processing DSV files.</p>
<p><strong>So when is it <em>not</em> a good time to use a generator, or a generator expression, or an <code>itertools</code> function?</strong></p>
<ul>
<li>When should I prefer <code>zip()</code> over <code>itertools.izip()</code>, or</li>
<li><code>range()</code> over <code>xrange()</code>, or</li>
<li><code>[x for x in foo]</code> over <code>(x for x in foo)</code>?</li>
</ul>
<p>Obviously, we eventually need to "resolve" a generator into actual data, usually by creating a list or iterating over it with a non-generator loop. Sometimes we just need to know the length. This isn't what I'm asking.</p>
<p>We use generators so that we're not assigning new lists into memory for interim data. This especially makes sense for large datasets. Does it make sense for small datasets too? Is there a noticeable memory/cpu trade-off?</p>
<p>I'm especially interested if anyone has done some profiling on this, in light of the eye-opening discussion of <a href="http://mail.python.org/pipermail/python-list/2001-December/117130.html" rel="nofollow">list comprehension performance vs. map() and filter()</a>.</p>
http://stackoverflow.com/questions/217900/how-to-generate-unit-test-code-for-methods/218489#2184893Answer by David Eyk for how to generate unit test code for methodsDavid Eyk2008-10-20T13:46:52Z2008-10-20T13:46:52Z<p>It's probably best to start off with the given <code>unittest</code> example. Some standard best practices: </p>
<ul>
<li>put all your tests in a <code>tests</code> folder at the root of your project.</li>
<li>write one test module for each python module you're testing.</li>
<li>test modules should start with the word <code>test</code>.</li>
<li>test methods should start with the word <code>test</code>. </li>
</ul>
<p>When you've become comfortable with <code>unittest</code> (and it shouldn't take long), there are some nice extensions to it that will make life easier as your tests grow in number and scope:</p>
<ul>
<li><a href="http://somethingaboutorange.com/mrl/projects/nose/" rel="nofollow">nose</a> -- easily find and run all your tests, and more.</li>
<li><a href="http://testoob.sourceforge.net/" rel="nofollow">testoob</a> -- colorized output (and more, but that's why I use it).</li>
<li><a href="http://pythoscope.org/" rel="nofollow">pythoscope</a> -- haven't tried it, but this will automatically generate (failing) test stubs for your application. Should save a lot of time writing boilerplate code.</li>
</ul>
http://stackoverflow.com/questions/213483/a-good-multithreaded-python-webserver/213563#2135639Answer by David Eyk for A good multithreaded python webserver?David Eyk2008-10-17T19:33:25Z2008-10-17T19:33:25Z<p><a href="http://cherrypy.org/" rel="nofollow">CherryPy</a>. Features, as listed from the website:</p>
<ul>
<li>A fast, HTTP/1.1-compliant, WSGI thread-pooled webserver. Typically, CherryPy itself takes only 1-2ms per page!</li>
<li>Support for any other WSGI-enabled webserver or adapter, including Apache, IIS, lighttpd, mod_python, FastCGI, SCGI, and mod_wsgi</li>
<li>Easy to run multiple HTTP servers (e.g. on multiple ports) at once</li>
<li>A powerful configuration system for developers and deployers alike</li>
<li>A flexible plugin system</li>
<li>Built-in tools for caching, encoding, sessions, authorization, static content, and many more</li>
<li>A native mod_python adapter</li>
<li>A complete test suite</li>
<li>Swappable and customizable...everything.</li>
<li>Built-in profiling, coverage, and testing support. </li>
</ul>
http://stackoverflow.com/questions/211695/what-is-an-easy-way-to-create-a-trivial-one-off-python-object/212299#2122992Answer by David Eyk for What is an easy way to create a trivial one-off Python object?David Eyk2008-10-17T14:10:03Z2008-10-17T14:10:03Z<p>Given your requirements, I'd say the custom class is your best bet:</p>
<pre><code>class options(object):
VERBOSE = True
IGNORE_WARNINGS = True
if options.VERBOSE:
# ...
</code></pre>
<p>To be complete, another approach would be using a separate module, i.e. <code>options.py</code> to encapsulate your option defaults.</p>
<p><code>options.py</code>:</p>
<pre><code>VERBOSE = True
IGNORE_WARNINGS = True
</code></pre>
<p>Then, in <code>main.py</code>:</p>
<pre><code>import options
if options.VERBOSE:
# ...
</code></pre>
<p>This has the feature of removing some clutter from your script. The default values are easy to find and change, as they are cordoned off in their own module. If later your application has grown, you can easily access the options from other modules.</p>
<p>This is a pattern that I frequently use, and would heartily recommend if you don't mind your application growing larger than a single module. Or, start with a custom class, and expand to a module later if your app grows to multiple modules.</p>
http://stackoverflow.com/questions/200599/whats-the-best-way-to-store-simple-user-settings-in-python/201298#2012981Answer by David Eyk for What's the best way to store simple user settings in Python?David Eyk2008-10-14T14:08:57Z2008-10-14T14:08:57Z<p>For a database-driven website, of course, your best option is a db table. I'm assuming that you are not doing the database thing.</p>
<p>If you don't care about human-readable formats, then <code>pickle</code> is a simple and straightforward way to go. I've also heard good reports about <code>simplejson</code>.</p>
<p>If human readability is important, two simple options present themselves:</p>
<p><strong>Module:</strong> Just use a module. If all you need are a few globals and nothing fancy, then this is the way to go. If you really got desperate, you could define classes and class variables to emulate sections. The downside here: if the file will be hand-edited by a user, errors could be hard to catch and debug.</p>
<p><strong>INI format:</strong> I've been using <a href="http://www.voidspace.org.uk/python/configobj.html" rel="nofollow">ConfigObj</a> for this, with quite a bit of success. ConfigObj is essentially a replacement for ConfigParser, with support for nested sections and much more. Optionally, you can define expected types or values for a file and validate it, providing a safety net (and important error feedback) for users/administrators.</p>
http://stackoverflow.com/questions/37142/how-to-make-ruby-or-python-web-sites-to-use-multiple-cores/191257#1912570Answer by David Eyk for How to make Ruby or Python web sites to use multiple cores?David Eyk2008-10-10T13:24:31Z2008-10-10T13:24:31Z<p>For Python, the <a href="http://pyprocessing.berlios.de/" rel="nofollow">PyProcessing</a> project allows you to program with processes much like you would use threads. It is included in the standard library of the recently released 2.6 version as <a href="http://docs.python.org/library/multiprocessing.html" rel="nofollow"><code>multiprocessing</code></a>. The module has many features for establishing and controlling access to shared data structures (queues, pipes, etc.) and support for common idioms (i.e. managers and worker pools).</p>
http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for/163768#1637680Answer by David Eyk for What applications is Python optimal for?David Eyk2008-10-02T18:13:05Z2008-10-02T18:13:05Z<p>There is an active and vibrant amateur game development community working in Python, centered around <a href="http://pygame.org" rel="nofollow">PyGame</a> and <a href="http://pyglet.org" rel="nofollow">Pyglet</a>, with a bi-yearly week-long development competition called <a href="http://pyweek.org" rel="nofollow">Pyweek</a>. The fall competition just finished, so you could make the spring competition a goal for your learning.</p>
http://stackoverflow.com/questions/150043/python-v-perl/150374#1503742Answer by David Eyk for Python v. PerlDavid Eyk2008-09-29T19:55:09Z2008-09-29T19:55:09Z<ul>
<li><p>Python encourages code readability and maintainability. The significant white-space also appeals to my inner copy editor. Perl requires that you discipline yourself, or be satisfied with write-only code.</p></li>
<li><p>The Python standard library is excellent and, for the most part, well-documented. I don't remember how well Perl stacks up here. I do sometimes miss Perl's easy regexp handling.</p></li>
<li><p>Python has the <a href="http://pypi.python.org" rel="nofollow">Python Package Index</a>. The widespread adoption of <a href="http://pypi.python.org/pypi/setuptools" rel="nofollow"><code>setuptools</code></a> and <code>easy_install</code> as the package-management tools of choice, along with environment/dependency tools like <a href="http://pypi.python.org/pypi/virtualenv" rel="nofollow"><code>virtual-env</code></a> and <a href="http://pypi.python.org/pypi/zc.buildout" rel="nofollow"><code>zc.buildout</code></a>, make for a powerful and comprehensive development, testing, and deployment system. I always found Perl's CPAN just barely comprehensible, often leaving me on the verge of tears as yet another dependency noisily failed to install.</p></li>
</ul>
http://stackoverflow.com/questions/105095/are-locks-unnecessary-in-multi-threaded-python-code-because-of-the-gil/105272#1052727Answer by David Eyk for Are locks unnecessary in multi-threaded Python code because of the GIL?David Eyk2008-09-19T20:24:50Z2008-09-19T20:24:50Z<p>The Global Interpreter Lock prevents threads from accessing the <em>interpreter</em> simultaneously (thus CPython only ever uses one core). However, as I understand it, the threads are still interrupted and scheduled <em>preemptively</em>, which means you still need locks on shared data structures, lest your threads stomp on each other's toes.</p>
<p>The answer I've encountered time and time again is that multithreading in Python is rarely worth the overhead, because of this. I've heard good things about the <a href="http://pyprocessing.berlios.de/" rel="nofollow">PyProcessing</a> project, which makes running multiple processes as "simple" as multithreading, with shared data structures, queues, etc. (PyProcessing will be introduced into the standard library of the upcoming Python 2.6 as the <a href="http://www.python.org/dev/peps/pep-0371/" rel="nofollow">multiprocessing</a> module.) This gets you around the GIL, as each process has its own interpreter.</p>
http://stackoverflow.com/questions/103679/what-is-a-javascript-hash-table-implementation-that-avoids-object-namespace-colli1What is a javascript hash table implementation that avoids object namespace collisions?David Eyk2008-09-19T16:57:32Z2008-09-19T17:46:12Z
<p>First off: I'm using a rather obscure implementation of javascript embedded as a scripting engine for Adobe InDesign CS3. This implementation sometimes diverges from "standard" javascript, hence my problem.</p>
<p>I'm using <a href="http://ejohn.org/projects/javascript-diff-algorithm/" rel="nofollow">John Resig's jsdiff library</a> (<a href="http://ejohn.org/files/jsdiff.js" rel="nofollow">source here</a>) to compare selections of text between two documents. jsdiff uses vanilla objects as associative arrays to map a word from the text to another object. (See the "ns" and "os" variables in jsdiff.js, around line 129.)</p>
<p>My headaches start when the word "reflect" comes up in the text. "reflect" is a default, <em>read-only</em> property on <em>all</em> objects. When jsdiff tries to assign a value on the associative array to ns['reflect'], everything explodes.</p>
<p>My question: is there a way around this? Is there a way to do a hash table in javascript without using the obvious vanilla object?</p>
<p><strong>Ground rules:</strong> switching scripting engines isn't an option. :)</p>
http://stackoverflow.com/questions/34611/whats-the-best-toolkit-for-doing-2d-game-programming-with-python/103146#1031464Answer by David Eyk for What's the best toolkit for doing 2d game programming with Python?David Eyk2008-09-19T15:51:18Z2008-09-19T15:51:18Z<p>I have used and would highly recommend <a href="http://www.pyglet.org" rel="nofollow">pyglet</a>, which provides 2D sprite graphics, hooks into OpenGL effects, audio support, file asset management, and excellent text layout and display support (not something you always find in a 2D game library). The API is sane, well-documented, and easy to get started with, and goes deep (especially if you're an OpenGL wizard).</p>
<p>As a companion to pyglet, I have used and would also suggest <a href="http://cocos2d.org/" rel="nofollow">Cocos2D</a>, which adds scene management, improved sprites, tiled map support, and fancy (accelerated) effects to add a little polish. Cocos is still young, but taking shape quickly, and already has fairly solid documentation.</p>
http://stackoverflow.com/questions/1740235/integrating-a-simple-web-server-into-a-custom-main-loop-in-python/1740378#1740378Comment by David Eyk on Integrating a simple web server into a custom main loop in python?David Eyk2009-11-30T20:44:08Z2009-11-30T20:44:08ZOh, hey, I just noticed you edited your answer. Thanks for confirming my suspicion, and you may have finally convinced me to give Twisted another chance. :)http://stackoverflow.com/questions/1740235/integrating-a-simple-web-server-into-a-custom-main-loop-in-python/1740378#1740378Comment by David Eyk on Integrating a simple web server into a custom main loop in python?David Eyk2009-11-16T17:19:24Z2009-11-16T17:19:24ZHm. Via <<a href="http://twistedmatrix.com/documents/current/api/twisted.internet.interfaces.IReactorCore.html#iterate>" rel="nofollow">twistedmatrix.com/documents/current/…</a>;, regarding <code>reactor.iterate()</code>: "The reactor must have been started (via the run() method) prior to any invocations of this method. It must also be stopped manually after the last call to this method (via the stop() method). This method is not re-entrant: you must not call it recursively; in particular, you must not call it while the reactor is running." Is this what I'm looking for?http://stackoverflow.com/questions/1740235/integrating-a-simple-web-server-into-a-custom-main-loop-in-python/1740378#1740378Comment by David Eyk on Integrating a simple web server into a custom main loop in python?David Eyk2009-11-16T15:41:57Z2009-11-16T15:41:57ZHow did I know Twisted would come up? :) However, your example appears to use its own main loop. How do I get around <code>reactor.run()</code>? http://stackoverflow.com/questions/1740235/integrating-a-simple-web-server-into-a-custom-main-loop-in-python/1740507#1740507Comment by David Eyk on Integrating a simple web server into a custom main loop in python?David Eyk2009-11-16T15:38:45Z2009-11-16T15:38:45ZWhich is why I'd like to avoid threading. Thanks.http://stackoverflow.com/questions/1534374/editing-mp3-metadata-on-a-file-like-object-in-python/1534458#1534458Comment by David Eyk on Editing MP3 metadata on a file-like object in Python?David Eyk2009-10-08T13:26:43Z2009-10-08T13:26:43ZWould you recommend a simple one to modify?http://stackoverflow.com/questions/1534374/editing-mp3-metadata-on-a-file-like-object-in-python/1534398#1534398Comment by David Eyk on Editing MP3 metadata on a file-like object in Python?David Eyk2009-10-08T13:21:33Z2009-10-08T13:21:33ZYou're totally right, and we may end up doing that or roll our own frame-hacking strategy. The point of the question, however, was to avoid all that by discovering an out-of-the-box solution that would spare us programming time. Hacking frames or hacking servers are more work, not less, and outside the scope of this question.http://stackoverflow.com/questions/1534374/editing-mp3-metadata-on-a-file-like-object-in-python/1534398#1534398Comment by David Eyk on Editing MP3 metadata on a file-like object in Python?David Eyk2009-10-07T22:00:32Z2009-10-07T22:00:32ZYeah. As for tmpfs, it's too hackish. I already have the object in memory--why do I need to copy it to work with it?http://stackoverflow.com/questions/1534374/editing-mp3-metadata-on-a-file-like-object-in-python/1534458#1534458Comment by David Eyk on Editing MP3 metadata on a file-like object in Python?David Eyk2009-10-07T21:56:22Z2009-10-07T21:56:22ZThe problem is, all the libraries I've seen won't work w/ StringIO, or anything like it, because they require a filesystem path.http://stackoverflow.com/questions/1534374/editing-mp3-metadata-on-a-file-like-object-in-python/1534398#1534398Comment by David Eyk on Editing MP3 metadata on a file-like object in Python?David Eyk2009-10-07T21:46:16Z2009-10-07T21:46:16ZActually, ID3 tags are best prepended. <a href="http://en.wikipedia.org/wiki/ID3#ID3v2" rel="nofollow">en.wikipedia.org/wiki/ID3#ID3v2</a>http://stackoverflow.com/questions/1526191/how-do-i-memoize-expensive-calculations-on-django-model-objects/1526245#1526245Comment by David Eyk on How do I memoize expensive calculations on Django model objects?David Eyk2009-10-06T18:44:26Z2009-10-06T18:44:26ZYou're entirely right. We were already getting annoyed that we had to receive the dictionary, manipulate it, and then send it back to the setter. Manipulating the dictionary in place is much nicer.
The JSON field implementation is interesting, but I'm uncertain how it works behind the scenes. Does it deserialize once on load, providing a manipulable python object, which it then serializes again on save?http://stackoverflow.com/questions/1277124/how-do-you-install-lxml-on-os-x-leopard-without-using-macports-or-fink/1277421#1277421Comment by David Eyk on How do you install lxml on OS X Leopard without using MacPorts or Fink?David Eyk2009-08-17T18:54:25Z2009-08-17T18:54:25ZAFAIK, wget doesn't come stock w/ OS X. Use <code>curl -O</code> instead.http://stackoverflow.com/questions/610892/what-is-a-good-strategy-for-constructing-a-directed-graph-for-a-game-map-in-pyth/611124#611124Comment by David Eyk on What is a good strategy for constructing a directed graph for a game map (in Python)?David Eyk2009-03-04T23:26:20Z2009-03-04T23:26:20ZGood point about adding loops on a second pass. http://stackoverflow.com/questions/610892/what-is-a-good-strategy-for-constructing-a-directed-graph-for-a-game-map-in-pyth/612730#612730Comment by David Eyk on What is a good strategy for constructing a directed graph for a game map (in Python)?David Eyk2009-03-04T22:53:27Z2009-03-04T22:53:27ZGood resource, but I'd appreciate some direct links.http://stackoverflow.com/questions/610892/what-is-a-good-strategy-for-constructing-a-directed-graph-for-a-game-map-in-pyth/611124#611124Comment by David Eyk on What is a good strategy for constructing a directed graph for a game map (in Python)?David Eyk2009-03-04T19:02:16Z2009-03-04T19:02:16ZAlso, if I were to use a spatial algorithm, all "plots" of land would be considered rectangular, to answer another question.http://stackoverflow.com/questions/610892/what-is-a-good-strategy-for-constructing-a-directed-graph-for-a-game-map-in-pyth/611124#611124Comment by David Eyk on What is a good strategy for constructing a directed graph for a game map (in Python)?David Eyk2009-03-04T18:58:00Z2009-03-04T18:58:00ZHowever, your answer may be of use, as I <i>do</i> want to include distance as a factor along edges, and the best way to do that is to introduce a sense of Location, as you put it. I shall think about this, and wait and see if any more answers are forthcoming. Thanks for your thoroughness.