4
votes
6answers
597 views
What is the best way to store set data in Python?
Hello Stack-Overflow,
Here is my situation. I have a list of data that looks like this:
[(id__1_, description, id_type), (id__2_, description, id_type), ... , (id__n_, description, …
1
vote
Is there a benefit to defining a class inside another class in Python?
You could be using a class as class generator. Like (in some off the cuff code :)
class gen(object):
class base_1(object): pass
...
class base_n(object): pass
def _ …
4
votes
Python Authentication API
dbr said:
def hash_password(password):
"""Returns the hashed version of a string
"""
return hasher.new( str(password) ).hexdigest()
…
3
votes
Python Music Library?
I had to do this years ago. I used pymedia. I am not sure if it is still around any way here is some test code I wrote when I was playing with it. It is about 3 years old though.
Ed …
2
votes
Python - Get Instance Variables
Although not directly an answer to the OP question, there is a pretty sweet way of finding out what variables are in scope in a function. take a look at this code:
>>> def …
2
votes
What did you use to teach yourself python?
The book I used was Core Python Programming by Wesley J Chun. I believe it is a second edition now. I really liked it. I also have the Python Cookbook for a reference on how do specific tasks. The …
0
votes
So in ‘good’ Python do you have to type every space individually?
I agree with all who said good text editors make all the difference so here are some I like. There are lot of others out there, but any one these will help you a lot.
Cross-Platform:
…
