2
votes
Iterate over subclasses of a given class in a given module
Here's one way to do it:
import inspect
def get_subclasses(mod, cls):
"""Yield the classes in module ``mod`` that inherit from ``cls``"""
for name, obj in inspect.getmember …
0
votes
Best online resource to learn Python?
The Python tutorial is actually pretty good.
There's also a video …
0
votes
Random in python 2.5 not working?
Can you post an example of what you're trying to do? It's not clear from your question what the actual problem is.
Here's an example of how to use the random module:
import …
5
votes
Send file using POST from a Python script
Blatant self-promotion:
check out my poster module for python. It handles the multipart/form-data encoding, as well as support …
4
votes
Are there any build-in cross-thread events in python?
The Queue module is python is well suited to what you're describing.
You could have one queue set up that is shared be …
3
votes
Python and MySQL: is there an alternative to MySQLdb?
You can find pre-built binary packages for MySQLdb and its dependencies for most operating systems.
…
2
votes
Python os.system() limited length
Make sure when you're using '\' in your strings that they're being properly escaped.
Python uses the '\' as the escape character, so the string "..\folder\filename" evaluates t …
1
vote
Python: Testing for unicode, and converting to time()
datetime.combine is complaining because it expects the second argument to be a datetime.time instance, not a string (or unicode string).
There are a few ways to co …
3
votes
Uploading to the cheeseshop different versions of a package for different versions of Python
python2.4 setup.py bdist_egg upload
python2.5 setup.py bdist_egg upload
python2.6 setup.py bdist_egg upload
python3.1 setup.py bdist_egg upload
…
2
votes
accurately measure time python function takes
The documentation also mentions that time.clock() and time.time() have different resolution depending on platform. On Unix, time.clock() measures CPU time as opposed to wall clock time.
ti …
8
votes
Possible to use more than one argument on __getitem__?
__getitem__ only accepts one argument (other than self), so you get passed a tuple.
You can do this:
class matrix:
def __getitem__(self, pos):
x,y = …
2
votes
Why we should perfer to store the serialized data not the raw code to DB?
I've preferred using a standard serialization format like JSON for storing this kind of data in the database. It makes it possible for consumers of the data to be written in other languages than p …
