4
votes
3answers
111 views
Worker/Timeslot permutation/constraint filtering algorithm
Hope you can help me out with this guys. It's not help with work -- it's for a charity of very hard working volunteers, who could really use a less confusing/annoying timetable system than what th …
1
vote
Is there a special trick to downloading a zip file and writing it to disk with Python?
I've never used that library, but urllib2 works fine, and is more straightforward. Curl is even better.
Looking at your code, I can see a couple of things wrong. Your exception catching o …
2
votes
How useful is Python?
Python is certainly not the highest-level language (a drag-and-drop object/flow editor, or DWIM would be), but it IS high-level compared to languages like C, Java, or (to a lesser extent) C#. The …
1
vote
What IDE to use for Python
Last time I tried Netbeans for python, it was brand new (well, beta I suppose) and did everything Eclipse + PyDev did. Overall, I thought it was nicer, except for a small issue with rendering line …
0
votes
Easy, Robust IPC between Python and PHP
You could look at shared memory or named pipes, but I think there are two more likely options, assuming at least one of these languages is being used for a webapp:
A. Use your database's at …
3
votes
Compiling Python
Python is an interpreted language, so you don't need to compile it; just to run it. As it happens, the standard version of python will compile this to "bytecode", just like Java etc. does, and wil …
-1
votes
Help with Python in the web
HTML is based on the REST principle... each url should be an object, like a person; NOT an action, like saying hello to a person. Have the URL identify who you want to greet only if your web appli …
1
vote
C++ or Python for C# programmer?
C# is a little closer to Java and C++ than it is to Python, so learn Python first out of the two.
However, my advice would be:
Stick with your current language and learn mo …
0
votes
Python Clientform-can not get expexted result
Never used it, but I've had success with the python mechanize module, if it turns out to be a fault in clientform.
However, as a first step, I'd suggest removing your try...except wrapper. …
1
vote
Implementing “Starts with” and “Ends with” queries with Google App Engine
Seems you can't do it for the general case, but can do it for prefix searches (starts with):
http …
1
vote
When and how to use the builtin function property() in python
but hiding the fact that a.b=2 isn't a
simple assignment looks like a recipe
for trouble
You're not hiding that fact though; that fact was never there to be …
