0
votes
2answers
18 views
Overload a classmethod with a function
OK, I'll admit upfront this is a mega kludge and that I could definately implement this better. It's only morbid curiosity that's driving me to find out how I could do this.
class SomeClass(object):
…
0
votes
2answers
6 views
‘RelatedManager’ object has no attribute…
I have a model defined like this:
class UserDetail(models.Model):
user = models.ForeignKey(User, db_index=True, unique=True, related_name='details')
favourites = …
0
votes
0answers
12 views
Django best practice for displaying mostly read-only form, one field writeable
I have a requirement where one user creates an 'instance' of an object via a ModelForm. Another user of a different group has access to read all of the fields of the form, but has to update only one …
0
votes
2answers
19 views
in protocol with regard to sequence
How is this implemented at a python level?
I've got an object that pretends to be a dict for the most part (in retrospect I should have just subclassed dict, but I'd rather not refactor the codebase, …
-6
votes
2answers
56 views
How to find out all email address in one html page using python ?
First download one html page from website, then search the content to find out all email address such as xyz@gmail.com . Put more simple, my question is how to use python to find out those email …
0
votes
6answers
34 views
Finding the joy of Javascript or searching for another UI-focused languages?
Hey everyone,
I'm a GUI designer/interactive musician wanting to improve my programming chops. I already know the basics(variables, loops, arrays, if/else, some logic), but I'm looking to learn in a …
1
vote
1answer
13 views
Django, updating a user profile with a ModelForm
I'm trying to display a simple ModelForm for a user's profile and allow the user to update it. The problem here is that my logic is somehow flawed, and after a successful form.save() call, the old …
0
votes
1answer
31 views
Python print buffering
Let me rephrase my previous question.
I just created a tool in ArcGIS using pythong as script language. The tool executes (runs) an outside program using the subprocess.popen. When I run the tool from …
0
votes
1answer
12 views
incorrect function being called on multiple fast calls to python’s threading.Thread()
I'm having some problems with launching threads from a list of functions. They are in a list because they are configuration-specific functions. I'm wrappering the functions so that I can store the …
0
votes
0answers
13 views
merge background audio file
I have 2 audio files for primary and background music that I want to merge (not concatenate). The final audio file should be as long as the primary file, and if the background music is shorter then it …
2
votes
13answers
220 views
which is a better language (C++ or Python) for complex problem solving exercises (ex. Graphs) ?
I am trying to work on some problems and algorithms. I know C++ but a friend told me that it would be better if done with Python.As it would be much faster to develop and less time is spent in …
0
votes
1answer
22 views
Debugging Pyparsing Grammar
I'm building a parser for an imaginary programming language called C-- (not the actual C-- language). I've gotten to the stage where I need to translate the language's grammar into something Pyparsing …
0
votes
2answers
19 views
Set and use flags against a users profile model in Django.
I have a simple webapp in Django for an iPhone app.
I want to prompt the user to review our product, but just once. I then don't want to show that prompt again.
So would the best practise way of …
2
votes
6answers
72 views
What’s the best way to divide large files in Python for multiprocessing?
I run across a lot of "embarrassingly parallel" projects I'd like to parallelize with the multiprocessing module. However, they often involve reading in huge files (greater than 2gb), processing them …
3
votes
6answers
82 views
Optimized method for calculating cosine distance in Python
I wrote a method to calculate the cosine distance between two arrays:
def cosine_distance(a, b):
if len(a) != len(b):
return False
numerator = 0
denoma = 0
denomb = 0
for i …
