Skip to content

Instantly share code, notes, and snippets.

@tierra
tierra / sort_pidgin_groups.py
Created November 2, 2012 16:25
Sort Pidgin Groups
#!/usr/bin/python
import xml.etree.ElementTree as ET
tree = ET.parse('blist.xml')
container = tree.find('blist')
def getkey(elem):
return elem.attrib['name']