Earlier this year, I was tasked with creating an application that would download information from our organization's website using Python. The tricky part was that it would be encrypted, gzipped and the payload would be JSON. Could Python do all that? Well, that's what I wanted to find out. Now it's time for you to […]
I've been working on an article about the various Python projects that took part in the 2010 Google Summer of Code for over a month. There are a lot of projects and people to contact and I would say of the ones that I did contact, only 50-60% responded back. So I'm going to go […]
The wxPython project is one of the most popular and easy to use Python GUI toolkit. It wraps the popular C++ wxWidgets project using SWIG. It is also the only cross-platform toolkit that I am aware of that uses the native widgets on each platform wherever possible (for better or for worse). Some like to […]
Whether you're new to Python, been using it for a few years or you're an expert, knowing how to use Python's introspection capabilities can help your understanding of your code and that new package you just downloaded with the crappy documentation. Introspection is a fancy word that means to observe oneself and ponder one's thoughts, […]
Python Multimedia Application Beginner's Guide By Ninad Sathaye Amazon Packt
The other day, I was tasked with finding a way to get a list of all running processes on a Windows XP virtual machine. I was also supposed to include information about how much CPU and memory each process used. Fortunately, this didn't have to be a remote script, but one that could be run […]