Book Review: Python Multimedia Application Beginner’s Guide
Python Multimedia Application Beginner’s Guide By Ninad Sathaye Amazon Packt
Book Review: Python Multimedia Application Beginner’s Guide Read More »
Python Multimedia Application Beginner’s Guide By Ninad Sathaye Amazon Packt
Book Review: Python Multimedia Application Beginner’s Guide Read More »
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
How to Find and List All Running Processes with Python Read More »
Some people learn through doing it, others are better with visual stimuli. At least, that’s what we’re told. So in the spirit of what we’ve been taught, we’re going to take a look at the visual half of the equation and see how we can make graphs with wxPython. You may not know this, but
wxPython: PyPlot – Graphs with Python Read More »
Jesse Noller just put out the call for proposals for PyCon 2011. That means that you have the chance to give a talk to a whole bunch of geeky pythonistas! Get your thinking caps out and put those suckers on! If I go this year, I want to see some amazing and interesting talks so
You Could Speak at PyCon Read More »
I’ve been thinking that it would rock if this website had a cool logo or artwork of some sort. So I thought I would create a contest to allow my talented readers a chance to help me out here. Here’s what I’m looking for: Some kind of banner or background picture A mouse (the furry
Contest: Create a Logo for My Blog! Read More »
This week, I finished editing another book for Packt Publishing. The book’s name is Python Graphics Cookbook by Mike Ohlson de Fine (I think). You may wonder why I don’t know if de Fine is the author. Well, Packt thinks that its Technical Editors shouldn’t know that information. In fact, Packt is so cagey (and
Book Preview: Python Graphics Cookbook Read More »
Back in March of this year, I wrote a simple tutorial on Reportlab, a handy 3rd party Python package that allows the developer to create PDFs programmatically. Recently, I received a request to cover how to do tables in Reportlab. Since my Reportlab article is so popular, I figured it was probably worth the trouble
Reportlab Tables – Creating Tables in PDFs with Python Read More »
The other day, I received a complaint that my original notebook example in my Book control series was too complicated. I don’t really write just n00b-friendly articles and never claimed to, but this comment rankled, so I decided to write a super simple example for the wxPython newbies. I hope you like it!
wxPython: A Simple Notebook Example Read More »
Accessing databases with Python is a simple process. Python even provides a sqlite database library that’s built into the main distribution (since 2.5). My favorite way to access databases with Python is to use the 3rd party package, SqlAlchemy. SqlAlchemy is an object-relational mapper (ORM), which means that it takes SQL constructs and makes them
SqlAlchemy: Connecting to pre-existing databases Read More »
After about a year or so at my current job, as we were still working on upgrading the last few Windows 98 machines to Windows XP, we had a need to check which machines on our network were getting low on disk space. The issue was cropping up because we had Windows XP loaded on
Getting Remote Drive Space on Windows Read More »
When I began learning Python, one of the first things I needed to know how to do was open a file. Now, the term “open a file” can mean different things depending on the context. Sometimes it means to actually open the file with Python and read from it, like with a text file. Other
Python 101: How to Open a File or Program Read More »
This is for all you Pyowa home-boys out there what missed our gathering. We don’t know why you homebodies didn’t come and hang out and talk shop wit us, but we think you really truly missed out on our phat gathering. We had around 10 real homies show up to hear the jibber jabber about
Pyowa – September 2010 Wrap-Up Read More »
This is the last article of my “Build a Binary Series”. If you haven’t done so already, be sure to check out the others. For our finale, we are to look at Andrea Gavana’s wxPython-based GUI2Exe, a nice graphical user interface to py2exe, bbfreeze, cx_Freeze, PyInstaller and py2app. The latest release of GUI2Exe is 0.5.0,
Another GUI2Exe Tutorial – Build a Binary Series! Read More »
Python 3 Object Oriented Programming By Dusty Phillips Amazon Packt
Book Review: Python 3 Object Oriented Programming Read More »
The bbfreeze package also allows us to create binaries, but only on Linux and Windows. It’s just an easy_install away, so if you plan on following along with the examples in the article, you should go get it. The bbfreeze package includes egg support, so it can include egg dependencies in your binary, unlike py2exe.
A bbfreeze Tutorial – Build a Binary Series! Read More »