Tagged Questions

0
votes
3answers
23 views

Which is the most mature Python XMPP library for a GChat client?

There seem to be several options for Python XMPP client libraries -- I'm not totally sure what I'm getting myself into (just fiddling around at this point), so I'm looking for some …
1
vote
1answer
18 views

Python: How to set breakpoints on mac with IDLE debugger?

I have access to both a PC and a mac for a python class. I find I am unable to set breakpoints in the IDLE debugger in the mac (works fine on the PC). I've tried "ctrl-click" and …
0
votes
2answers
30 views

python tab completion in windows

I'm writing a cross-platform shell like program in python and I'd like to add custom tab-completion actions. On Unix systems I can use the built-in readline module and use code lik …
6
votes
5answers
386 views

Why do pythonistas call the current reference “self” and not “this”?

Python is the language I know the most, and strangely I still don't know why I'm typing "self" and not "this" like in Java or PHP. I know that Python is older than Java, but I ca …
5
votes
7answers
162 views

Changes to Python since Dive into Python

I've been teaching myself Python by working through Dive Into Python by Mark Pilgrim. I thoroughly recommend it, as do other Stack Overflow users. However, the last update to Dive …
0
votes
3answers
54 views

How do you do something after you render the view? (Django)

I want to do something after I have rendered the view using return render_to_response() Are signals the only way to do this? Do I need to write a custom signal or does request_ …
1
vote
4answers
53 views

Inheriting from instance in Python

Hello, In Python, I would like to construct an instance of the Child's class directly from an instance of the Parent class. For example: A = Parent(x, y, z) B = Child(A) This …
4
votes
1answer
52 views

How can I report the API of a class programmatically?

Dear stackoverflow- My goal is to parse a class and return a data-structure (object, dictionary, etc) that is descriptive of the methods and the related parameters contained withi …
0
votes
3answers
81 views

retrieve links from web page using python and beautiful soup

How can I retrieve the links of a webpage and copy the url adress of the links using Python?
2
votes
9answers
155 views

Is there a map without result in python?

Sometimes, I just want to execute a function for a list of entries -- eg.: for x in wowList: installWow(x, 'installed by me') Sometimes I need this stuff for module initializ …
0
votes
3answers
43 views

Decompile .swf file to get images in python

I would like to decompile a .swf file and get all the images from it, in python. Are there any libraries that do this?
2
votes
5answers
71 views

In Python, how do you change an instantiated object after a reload?

Let's say you have an object that was instantiated from a class inside a module. Now, you reload that module. The next thing you'd like to do is make that reload affect that class. …
0
votes
5answers
74 views

Random list with rules

I'm trying to create a list of tasks that I've read from some text files and put them into lists. I want to create a master list of what I'm going to do through the day however I' …
1
vote
1answer
41 views

How to reload a Python module that was imported in another file?

I am trying to learn how Python reloads modules, but have hit a roadblock. Let's say I have: dir1\file1.py: from dir2.file2 import ClassOne myObject = ClassOne() dir1\dir2\file …
1
vote
3answers
41 views

How Do I Remove Text From Generated Django Form?

So earlier I asked a question about removing the label that Django forms have by default. That worked out great, and I removed the label. However, the text that is generated by the …

1 2 3 4 5 488 next
15 30 50 per page