Tagged Questions

5
votes
5answers
7k 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
10answers
21k 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 ...
14
votes
7answers
12k views

Nice IDE for wxPython or Tkinter GUI Development

I've had a little experience developing small command-line apps with Python, I want to move on to developing GUI's with Python, from all the GUI frameworks for Python the ones I feel most inclined to ...
0
votes
1answer
347 views

How to remove lines from stdout in Python - in SciTe, Idle, Eclipse or other editor with console

For a standard Python Console window, you can remove the last line with for example sys.stdout.write('\r'+' '*len(line)) as I explained here. But for editors like SciTe, Idle or Eclipse (with PyDev), ...
17
votes
6answers
12k 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 ...
5
votes
1answer
836 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 ...
12
votes
7answers
6k 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, ...
1
vote
1answer
422 views

Python capture stdout from subprocess line by line

I've read many of the questions related to this and learned a lot but I still haven't been able to solve my problem. I'm building a wxPython app that runs a c++ executable and displays the stdout from ...
1
vote
3answers
302 views

How to install wxPython using virtualenv

I am trying to begin a new python GUI application and I have decided to use wxPython as GUI because I want a multi-platform one. The problem is that I want to use virtualenv ( with virtualenvwrapper ...
15
votes
3answers
7k 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 ...
9
votes
5answers
398 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
4answers
5k views

wxPython: Calling an event manually

How can I call a specific event manually from my own code?
7
votes
4answers
181 views

Python - Creating a “scripting” system

I'm making a wxpython app that I will compile with the various freezing utility out there to create an executable for multiple platforms. the program will be a map editer for a tile-based game engine ...
8
votes
4answers
5k 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 ...
1
vote
4answers
1k views

Problem deploying Python program (packaged with py2exe)

I have a problem: I used py2exe for my program, and it worked on my computer. I packaged it with Inno Setup (still worked on my computer), but when I sent it to a different computer, I got the ...
0
votes
3answers
743 views

multithreading issue with wx.TextCtrl (or underlying GTK+)

I am developing a GUI to launch an external long-term running background program. This background program can be given input command via stdin and use stdout and stderr to keep printing out output and ...
3
votes
5answers
604 views

Python: Attractive, clean, packagable windows GUI library

I need to create a simple windows based GUI for a desktop application that will be downloaded by end users. The application is written in python and will be packaged as an installer or executable. ...
1
vote
4answers
193 views

Python GUI for cardgame

I am planning to write a card game in python, and now looking for a GUI (I'm new to Python). I have so far tried out two GUI's :TK(inter) and wxPython. Neither of them seem to be able , and ...
1
vote
2answers
346 views

how to do a zoom in/out with wxpython

how to do a zoom in/out with wxpython? what are the very basics for this purpose? I googled this, but could not find much, thanks!!
11
votes
6answers
7k 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 ...
11
votes
7answers
4k 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 ...
9
votes
8answers
2k views

Python GUI Application redistribution

I need to develop a small-medium sized desktop GUI application, preferably with Python as a language of choice because of time constraints. What GUI library choices do I have which allow me to ...
6
votes
2answers
4k 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
3answers
1k views

Getting total/free RAM from within Python

From within a Python application, how can I get the total amount of RAM of the system and how much of it is currently free, in a cross-platform way? Ideally, the amount of free RAM should consider ...
4
votes
5answers
2k views

How do I debug a py2exe 'application failed to initialize properly' error?

I'm very new to Python in general, but I made an app in Python 2.6 / wxPython 2.8 that works perfectly when I run it through Python. But I wanted to go a step further and be able to deploy it as a ...
3
votes
2answers
1k views

wxpython — threads and window events

I have a wxPython application (http://www.OpenSTV.org) that counts ballots using methods that have multiple rounds. I'd like to do two things: (1) For a large number of ballots, this can be a bit ...
7
votes
4answers
649 views

cherrypy and wxpython

I'm trying to make a cherrypy application with a wxpython ui. The problem is both libraries use closed loop event handlers. Is there a way for this to work? If I have the wx ui start cherrypy is that ...
4
votes
2answers
230 views

why is my text not aligning properly in wxPython?

I'm using wxPython to build a GUI and I'm trying to align some text but it's not working at all. I'm trying align three different static text items in three places (right aligned, center aligned, and ...
3
votes
4answers
3k views

wx.TextCtrl and wx.Validator

I need to validate the textboxes with wx.Textvalidator. Any please help me to do this? How can i use wx.FILTER_ALPHA with validators and if the user is giving a wrong input how can i give them a ...
2
votes
2answers
552 views

python: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0

I am trying to read some Images(and later intend to do some task on them), and while Images are being read into memory. I want to display a animated '.gif' Image. For that purpose I had to use ...
1
vote
2answers
222 views

Show another window wxpython?

I have been looking around the Internet but I am not sure if there is a way to show 2 classes in wxPython in 2 separate windows. And could we communicate between them (like one class being the dialog ...
1
vote
5answers
787 views

How to make custom buttons in wx?

I'd like to make a custom button in wxPython. Where should I start, how should I do it?
0
votes
2answers
184 views

is there an API for python to work with pressure-sensitive pen-tablets? (Mac OS, Linux)

I want to write a cross-platform wxPython app, and I'm wondering if there a single API to work with pen-tablets on different platforms? I'm only interested to get pressure value and ereaser flag - but ...
0
votes
3answers
612 views

Hierarchical checked tree control with tri-state checkboxes in wxPython?

As per the title, is this possible? By tri-state, I mean the parent node is: Checked if all children are checked Unchecked if all children are unchecked Grey/Filled if some children are checked I ...
0
votes
2answers
764 views

Python wx (Python Card) logging subprocess output to window

There are similar questions to this one, but I'd like to see a clarified answer. I'm building a simple GUI with PythonCard to wrap a command line process. Specifically, it's a wrapper for a series of ...
-1
votes
1answer
196 views

Nonblocking redirection of output from multiprocess process

I asked a question yesterday about a problem with a program I'm writing in Python ( Passing wxPython objects as multiprocessor arguments ). I managed to solve that problem by using a multiprocess ...
3
votes
3answers
138 views

Adding wxPython GUI elements in a pygame physics simulation

I have made a pygame physics simulation--'a projectile motion' but it lacks interactivity like accepting angle of launch,speed etc. I am wanting to add input boxes with increase decrease arrows but ...
3
votes
3answers
144 views

Is there an easy way to capture all Frame/Window keystrokes in Python or wxPython

I tried EVT_KEY_DOWN but doesn't work. Is there a way to capture any keystroke such as F1, F2 , ENTER, and others. I am using a Frame and Panel.
3
votes
1answer
148 views

In wxPython, What is the Standard Process of Making an Application Slightly More Complex Than a Wizard?

I am attempting to create my first OS-level GUI using wxPython. I have the book wxPython in Action and have looked at the code demos. I have no experience with event-driven programming (aside from ...
3
votes
2answers
3k views

How do you force refresh of a wx.Panel?

I am trying to modify the controls of a Panel, have it update, then continue on with code execution. The problem seems to be that the Panel is waiting for Idle before it will refresh itself. I've ...
2
votes
1answer
100 views

allocating more size in sizer to wx.CollapsiblePane when expanded

I have several CollapsiblePanes in a vertical BoxSizer. I would like to be able to expand and collapse them without having them run into each other. I am running wxPython 2.8.10.1 on Windows 7. ...
2
votes
2answers
181 views

Associate files with specific extension to my own application in Python

I have created an app. It uses some database file to show its contents in a wxpython frame. Let us assume the database file extension is .xyz. When I double-click on an .xyz file, I want to open that ...
2
votes
4answers
1k views

Logging output of external program with (wx)python

I'm writing a GUI for using the oracle exp/imp commands and starting sql-scripts through sqlplus. The subprocess class makes it easy to launch the commands, but I need some additional functionality. I ...
1
vote
1answer
123 views

wxPython: text alignment does not work

For some reasons the wx.ALIGN_* does not align anything on Ubuntu, while it works on Mac OS X: self.static_text = wx.StaticText(self, -1, 'hello, world', pos=(0,0), ...
1
vote
2answers
205 views

wxPython: Can a wx.PyControl contain a wx.Sizer?

Can a wx.PyControl contain a wx.Sizer? Note that what I am ultimately trying to do here (spinner with float values) is already answered in another question. I am particularly interested in layouting ...
0
votes
2answers
75 views

Do you understand this deadlock?

I'm using wxPython for my GUI. In the AppLogic class I have a worker thread that is run in a method of this very class. This is the GUI class: class GUI: _wx_app = None _main_window = None ...
0
votes
1answer
63 views

WxPython Incompatible With OS X? [closed]

Possible Duplicate: “no matching architecture in universal wrapper” problem in wxPython? I am using OS X Snow Leopard and I just start to learn python and I am getting error ...
0
votes
1answer
126 views

wxPython CollapsiblePane strange clipping issue

This is a follow up from allocating more size in sizer to wx.CollapsiblePane when expanded. EDIT: The answer to that question solved my original problem, which was that nothing moved when I expanded ...
0
votes
4answers
105 views

asynchronous downloads with wxpython

ok so one of my functions is to open a url and read its contents and then write it in a file the problem is when i do that my UI freezes i know that i need to use asynchronous downloads but i dont ...
0
votes
1answer
362 views

wxPython: wx.PyControl layout problem when it is a child of a wx.Panel

This is a continuation from this question: wxPython: Can a wx.PyControl contain a wx.Sizer? The main topic here is using a wx.Sizer inside a wx.PyControl. I had problems Fit()ting my CustomWidget ...

1 2 3 4 5