Search Results

1
vote

With what kind of IDE (if any) you build python GUI projects?

For GUI only, I find VisualWx (http://visualwx.altervista.org/) to be very good for designing wxPython apps under Windows. For G …
0
votes

Correct way to detect sequence parameter?

You're asking the wrong question. You don't try to detect types in Python; you detect behavior. Write another function that handles a single value. (let's call it _use_single_val). …
6
votes

How to handle constructors or methods with a different set (or type) of arguments in Python?

Python doesn't accept multiple methods with the same name, period. One method does one thing. I've seen different approaches recommended on how to handle this ... classmethods (like you out …
0
votes

questions re: current state of GUI programming with Python

dabo puts wxPython programming at a higher level like what you're looking for. …
1
vote

Returning an object vs returning a tuple

Take a look at Will McGugan's Gameobjects library. He has a …
0
votes

Nice IDE for wxPython or Tkinter GUI Development

Try VisualWx. I think the GUI designer is very good; however the IDE is fairly rudimentary (no code completion, debugging, etc.). My wor …
0
votes

Problem deploying Python program (packaged with py2exe)

You need to include msvcr90.dll, Microsoft.VC90.CRT.manifest, and python.exe.manifest (renamed to [yourappname].exe.manifest) in your install directory. These files will be in the Python26 director …
0
votes

What is the best artificial-intelligence library for Python?

Since you seem to be interested in a book/code combination, you could try Stephen Marsland's Machine Learning book. …
0
votes

Is there a cross-platform way to open a file browser in Python?

You can do this with the Tkinter library built into Python. Try the following: import Tkinter from tkFileDialog import askopenfilename root = Tkinter.Tk() root.withdraw() # hide the …
1
vote

Artificial Inteligence library in python

You would be hard-pressed to find better written code than the aima-python stuff, and I've done a lot of comparison with other search algorithms. Why do you want more "recent" code? I've used a cou …
7
votes

Using try vs if in python

Your function should not return mixed types (i.e. list or empty string). It should return a list of values or just an empty list. Then you wouldn't need to test for anything, i.e. your code collaps …