The other day, I received a request to create a script that could tell how long a Windows XP machine had been idle and to alert the user if it had been idle for a certain amount of time. I did a little research with Google and found a couple of ways to accomplish this […]
While working on my Python mp3 player I realized I needed to research what Python had to offer for parsing ID3 tags. There are tons of projects out there, but most of them appear to be either dead, don't have documentation or both. In this post, you will discover the wild world of MP3 tag […]
Last month, I started a series of articles on creating simple applications with wxPython. The first couple of articles were on an Image Viewer program. While I won't abandon that project, I thought it was time for us to delve into something new. In this article we will start a journey into the wild and […]
Have you ever thought that it would be cool to have your wxPython code take a screenshot of itself? Well, Andrea Gavana figured out a cool way to do just that and between what he told us on the wxPython mailing list and what I learned from other sources, you will soon learn how to […]
The other day, we created a simple image viewer. Today we will create a secondary dialog to display the image's EXIF data, if it has any. We will make it in such a way that this window will update as we change pictures using the cool pubsub module. We will use the version that is […]
Last month I mentioned that we would go on a journey to learn some tips and tricks for wxPython's Grid widget. Well, the coding is done and I thought it was time to actually do this thing. In the following article you will learn how to: Create a right-click pop-up menu in a cell How […]