Tag Archives: Python
PyCPU – A Python library for CPU information

Accessing the CPU and retrieving information about itself is a fairly low-level task that requires a little assembly-fu. Something that Python isn’t geared to do out of the box. But it’s possible to get that information with C and hand it over to Python.

Custom Controls in wxPython: Part 1

Writing custom controls or widgets for wxPython isn’t all that hard, once you learn the ropes. This is the first part of an ongoing series of articles about making custom UI controls using Python and the wxPython toolkit.

Introducing PyGhostscript

For those of you that have been wanting an extension in Python that binds directly to Ghostscript, look no further. A new page is available now for PyGhostscript on my blog!

ProgressCellRenderer – Gauges for Grid Cells

Here’s another quickie I came up with for Grid controls – a ProgressCellRenderer. Will take a value in a cell and convert it to a progress gauge background in the cell. Also does a little formatting to add a % sign at the end of the value if it doesn’t have it. Useful for read-only cells that are updated from another data source or calculation, but can be manually edited also.

DatePickerEditor – A useful control for wxPython

I still like to share solutions to problems that I’ve solved that maybe someone else out there may have encountered. And hopefully save them some time and banging of head against the wall. One of them was my need to develop a custom GridCellEditor control for wxPython for use with grids. Now you can select dates from within a grid cell without having to refer back to another calendar.

Pygame Package Builder 0.3 Beta Available

Fixed a few problems not recognizing win32com and pythoncom not being installed. Also fixed a fatal build error when using a Python version other than 2.5. It should now work with any version of Python.

Pygame 1.9.1 is out

This one is a little late. Pygame 1.9.1 has been released, hot on the heels of 1.9.0. One of the major fixes in both versions is better compatibility with py2exe, along with a couple other annoying things I’ve had to use workarounds for in the past.

Pygame Package Builder 0.2 Beta is available

Pygame Package Builder 0.2 beta is now available. It is source-only at the moment (Python), and will probably remain that way until all of the bugs are worked out of it. So go download it and try it out for yourself!

Final Lap — Go!

Pygame Package Builder is nearing 1.0 beta status. I’ve successfully slain 99% of those creepy bugs that the Python gods decided to unleash on me at the last minute and stand victorious over a pile of dead bug carcasses holding my sword and covered in bug goo.

Where’s Pygame Package Builder?

Pygame Package Builder has definitely not been forgotten. I’ve been spending what little spare moments I have in the last 2 weeks getting it ready. I thought PPB was almost ready for prime time when the Python gods brandished their flaming swords of bugs and hurled maniacal laughter at me while I read through tracebacks.

Next Page