0
votes
2answers
7 views
overriding bool() for custom class
All I want is for bool(myInstance) to return False (and for myInstance to evaluate to False when in a conditional like if/or/and. I know how to override >, <, =)
I've tried this:
class test:
…
1
vote
2answers
10 views
Overriding urllib2 HTTPError and reading response HTML anyway
I am trying to screen scrape multiple pages of a website, that return an 'HTTP Error 500: Internal Server Error' response, but still give important data inside the error HTML.
Normally, I would fetch …
4
votes
2answers
31 views
Are there any reputable Python certifications?
My company has a policy of encouraging employee training, but want some evidence of quality of training and tangible achievement. Several of our Java developers are taking advantage of this …
2
votes
0answers
8 views
Can I port my existing python apps on ASE?
I learn that ASE (Andorid scripting environment) supports python code. Then can I take my existing python programs and run them on android?
Apart from the GUI, what else will I need to adapt? How can …
1
vote
2answers
53 views
Windows process management using Python
I need a script that check if a particular process is running and return something if not found. I know that this can be done using subprocess, but is there a simpler way to do it?
1
vote
1answer
33 views
Live UI update of model changes when the model contains plain data structures only
Please consult me with your opinions on the following topic:
I have a model - a structure of the objects. Such as:
Event, containing participants
Current task
Assignee of each task
The model is …
4
votes
4answers
80 views
Python - letter frequency count and translation.
Hi, I am using Python 3.1, but I can downgrade if needed.
I have an ASCII file containing a short story written in one of the languages the alphabet of which can be represented with upper and or …
1
vote
6answers
56 views
How to delete list elements while cycling the list itself without duplicate it
I lost a little bit of time in this Python for statement:
class MyListContainer:
def __init__(self):
self.list = []
def purge(self):
for object in self.list:
if …
0
votes
1answer
26 views
Python import MySQLdb, Apache Internal Server Error
I'm having a similar problem to that described in ".cgi problem with web server", although I reviewed and tested the previously suggested solutions without success.
I'm running the same program on …
0
votes
1answer
36 views
I’ve got Python built using VS2008, how do I install it?
I'm working with boost::python and wanted to build the whole thing to make sure I can pull it off. However, I don't see any install script or way to build the MSI so I can install it.
Anyone know …
3
votes
4answers
83 views
Open source Django projects
Are there any large django powered sites who has made their source available? I would love to see how a large Django project is built. :)
0
votes
1answer
9 views
Compiling Mysqldb for jython 2.5 on Solaris
I have used python2.6 + MySQL on Windows and there are binaries available.
I wanted to get the whole thing working on Solaris
Hence got the Mysql-Python package from here
I had to get the …
1
vote
3answers
143 views
Yield multiple objects at a time from an iterable object?
How can I yield multiple items at a time from an iterable object?
For example, with a sequence of arbitrary length, how can I iterate through the items in the sequence, in groups of X consecutive …
3
votes
2answers
84 views
Python newbie having a problem using classes
Im just beginning to mess around a bit with classes; however, I am running across a problem.
class MyClass(object):
def f(self):
return 'hello world'
print MyClass.f
The previous script …
2
votes
2answers
45 views
Where do stdout and stderr go when in curses mode?
Where do stdout and stderr go when curses is active?
import curses, sys
def test_streams():
print "stdout"
print >>sys.stderr, "stderr"
def curses_mode(stdscr):
test_streams()
…
