12
votes
11answers
490 views
Is it worthwhile to write a programming tutorial book?
I have written an introductory Python tutorial and I'm working on one for wxPython. My Python tutorial was used at a college for a programming introduction class.
I know the answer is probably "if …
9
votes
8answers
4k views
py2exe fails to generate an executable
I am using python 2.6 on XP. I have just installed py2exe, and I can successfully create a simple hello.exe from a hello.py. However, when I try using py2exe on my real program, py2exe produces a few …
8
votes
3answers
2k views
How to check if OS is Vista in Python?
How, in the simplest possible way, distinguish between Windows XP and Windows Vista, using Python and pywin32 or wxPython?
Essentially, I need a function that called will return True iff current OS …
8
votes
3answers
666 views
Where can I find a “good” tutorial for py2exe?
Can somebody point me at a good tutorial for py2exe? I've read over the official tutorial but it is rather light on details, compared to all the options one can use when building an executable out of …
7
votes
3answers
369 views
Organising a GUI application
This is going to be a generic question.
I am struggling in designing a GUI application, esp. with dealing with interactions between different parts.
I don't know how I should deal with shared state. …
7
votes
7answers
2k views
Qt being now released under LGPL, would you recommend it over wxWidgets ?
I am quite a heavy user of wxWidgets, partly because of licensing reasons.
How do you see the future of wxWidgets in prospect of the recent announcement of Qt now being released under LGPL?
Do you …
7
votes
2answers
832 views
What can Pygame do in terms of graphics that wxPython can’t ?
Hello,
I want to develop a very simple 2D game in Python. Pygame is the most popular library for game development in Python, but I'm already quite familiar with wxPython and feel comfortable using …
5
votes
5answers
701 views
How would a system tray application be accomplished on other platforms?
Windows has the "system tray" that houses the clock and alway-running services like MSN, Steam, etc.
I'd like to develop a wxPython tray application but I'm wondering how well this will port to other …
5
votes
9answers
550 views
Keeping GUIs responsive during long-running tasks
Hello,
Keeping the GUI responsive while the application does some CPU-heavy processing is one of the challenges of effective GUI programming.
Here's a good discussion of how to do this in wxPython. …
5
votes
2answers
215 views
wxpython: How do I examine dragged data in OnDragOver?
I'm a bit perplexed by drag and drop in wxPython (but perhaps this questions pertains to drag and drop in other GUI frameworks as well). The frameworks provides a couple of callbacks (OnEnter and …
4
votes
3answers
646 views
py2exe: Compiled Python Windows Application won’t run because of DLL
I will confess I'm very new to Python and I don't really know what I'm doing yet. Recently I created a very small Windows application using Python 2.6.2 and wxPython 2.8. And it works great; I'm quite …
4
votes
6answers
395 views
How to debug wxpython applications?
I'm trying wxpython for the first time. I've wrote a GUI for a python program and when I run it, it produces some error in the GUI, but the GUI disappears very quickly, quickly enough for me to be …
4
votes
6answers
807 views
Programmatically generate video or animated GIF in Python?
I have a series of images that I want to create a video from. Ideally I could specify a frame duration for each frame but a fixed frame rate would be fine too. I'm doing this in wxPython, so I can …
4
votes
4answers
615 views
How do I layout a 3 pane window using wxPython?
I am trying to find a simple way to layout a 3 pane window using wxPython.
I want to have a tree list in the left pane, then have a right pane that is split into two - with an edit component in the …
4
votes
3answers
550 views
How much slower is a wxWidget written in Python versus C++?
I'm looking into writing a wxWidget that displays a graphical node network, and therefore does a lot of drawing operations. I know that using Python to do it is going to be slower, but I'd rather get …
