Tagged Questions
8
votes
5answers
11k views
What is the best real time plotting widget for wxPython?
I would like to show a read time graph with one or two curves an up to 50 samples per second using Python and wxPython.
The widget should support both Win32 and Linux platforms.
Any hints are ...
29
votes
7answers
21k 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 ...
36
votes
11answers
28k 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 ...
24
votes
7answers
18k views
Nice IDE for wxPython or Tkinter GUI Development
I have a little experience developing small command-line applications with Python. I want to move on to developing GUIs with Python. From the available GUI toolkits for Python, the ones I feel the ...
4
votes
1answer
3k views
Embedding a matplotlib figure inside a WxPython panel
How do I embed a matplotlib figure object inside a WxPython panel?
I googled around and saw complicated examples involving interactive graphics and other extra stuff. Can anybody help with a minimal ...
6
votes
4answers
9k views
12
votes
2answers
4k views
Quick and easy: trayicon with python?
I'd just need a quick example on how to easily put an icon with python on my systray. This means: I run the program, no window shows up, just a tray icon (I've got a png file) shows up in the systray ...
19
votes
3answers
10k 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 ...
16
votes
6answers
9k views
Undefined variable from import when using wxPython in pydev
I just downloaded wxPython, and was running some of the sample programs from here. However, on every line that uses a variable from wx.*, I get a "Undefined variable from import error"
For example, ...
10
votes
4answers
9k views
“no matching architecture in universal wrapper” problem in wxPython?
I am running Python 2.7 under Mac OS 10.6.4, and I just installed wxPython from the wxPython2.8-osx-unicode-2.8.11.0-universal-py2.7.dmg binary. I am getting a weird error on the import wx line in my ...
15
votes
6answers
10k views
WxPython Incompatible With Snow Leopard?
Recently I upgraded to Snow Leopard, and now I can't run programs built with wxPython. The errors I get are (from Eclipse + PyDev):
import wx
File ...
12
votes
4answers
6k views
Hide console window with wxPython and cxFreeze
I'm developing a Python application using wxPython and freezing it using cxFreeze. All seems to be going fine apart from this following bit:
When I run the executable created by cxFreeze, a blank ...
13
votes
7answers
5k views
Qt being now released under LGPL, would you recommend it over wxWidgets? [closed]
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 ...
10
votes
5answers
760 views
Python tools to visualize 100k Vertices and 1M Edges?
I'm looking to visualize the data, hopefully make it interactive. Right now I'm using NetworkX and Matplotlib, which maxes out my 8gb when I attempt to 'draw' the graph. I don't know what options ...
5
votes
1answer
2k views
How to detect motion between two PIL images? (wxPython webcam integration example included)
Does anyone have any suggestions as to how I might do image comparison in python to detect changes within an image? I'm currently working on an app that will monitor my area with my webcam, I would ...