Using the SEOmoz API in Python – Newer Example

2nd
Nov
python icon

I noticed that the Python example on seomoz.org is outdated and uses deprecated and removed modules. Here is an updated example using Python 2.6.5.

PyGTK Tutorial – Advanced functionality of EggTrayIcon

31st
Mar
python icon

Advanced functionality of EggTrayIcon in Python.

Update ProFTPD MySQL Quota Tally – Python

10th
Mar
linux icon

A Python script that updates users disk usage tally for the ProFTPD quota module (when using MySQL for FTP virtual users).

Escaping SQLite queries in Python

17th
Dec
python icon

How to escape SQLite queries in Python correctly using the SQLite API (and not formatted strings).

FreeDNS Python IP Updater for Linux

1st
Dec
python icon

A Python script for automatically updating to the latest IP address for the free FreeDNS.afaird.org Dynamic DNS service.

Python Wait Function – Alternative to Sleep for GTK

16th
Sep
python icon

A quick “wait” function that replaces the “sleep” function. It runs through a loop for the specified amount of time doing nothing. This stops hanging and unresponsive interfaces for things such as GTK.

PyGTK Destroys window On Close – Solution

11th
Sep
python icon

When a window is closed in GTK the window gets destroyed. Here is a quick reason why followed by a snippet to stop reusable windows getting greyed out and destroyed in PyGTK.