4
votes
10answers
891 views
How do I merge two python iterators?
I have two iterators, a list and an itertools.count object (i.e. an infinite value generator). I would like to merge these two into a resulting iterator that will alternat …
5
votes
8answers
581 views
When is not a good time to use python generators?
This is rather the inverse of What can you use Python generator functions for?: python genera …
6
votes
2answers
280 views
What is a good strategy for constructing a directed graph for a game map (in Python)?
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, e …
2
votes
1answer
137 views
Python doctest fails on 0.0 != -0.0--what gives?
Given the following code:
def slope(x1, y1, x2, y2):
"""
>>> slope(5, 3, 4, 2)
1.0
>>> slope(1, 2, 3, 2)
0.0
>>> slope(1 …
0
votes
1answer
101 views
How do I memoize expensive calculations on Django model objects?
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 des …
1
vote
3answers
99 views
Editing MP3 metadata on a file-like object in Python?
We're generating MP3 files on the fly in Python, and need to edit the ID3 headers in-memory using a file-like object.
All the ID3 libraries on …
3
votes
2answers
81 views
Integrating a simple web server into a custom main loop in python?
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 …
4
votes
What’s the best toolkit for doing 2d game programming with Python?
I have used and would highly recommend pyglet, which provides 2D sprite graphics, hooks into OpenGL effects, audio support, file asset management, …
7
votes
Are locks unnecessary in multi-threaded Python code because of the GIL?
The Global Interpreter Lock prevents threads from accessing the interpreter simultaneously (thus CPython only ever uses one core). However, as I understand it, the threads are still interr …
2
votes
Python v. Perl
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 w …
0
votes
What applications is Python optimal for?
There is an active and vibrant amateur game development community working in Python, centered around PyGame and …
0
votes
How to make Ruby or Python web sites to use multiple cores?
For Python, the PyProcessing project allows you to program with processes much like you would use threads. It is included in the standar …
1
vote
What’s the best way to store simple user settings in Python?
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.
If you don't care about human-readable formats, then …
2
votes
What is an easy way to create a trivial one-off Python object?
Given your requirements, I'd say the custom class is your best bet:
class options(object):
VERBOSE = True
IGNORE_WARNINGS = True
if options.VERBOSE:
# ...
…
9
votes
A good multithreaded python webserver?
CherryPy. Features, as listed from the website:
A fast, HTTP/1.1-compliant, WSGI thread-pooled webserver. Typically, CherryPy itself …
