ozan (oz) yigit's noteblog at sun.
all my text and photography is released under
a cc
attribution-noncommercial-noderivs
license. all my poetry requires explicit permission.
this random 10 courtesy of a python script to parse through
my itunes library xml, and random's sample(population, k)
function. guts of the script:
...
lib = minidom.parse(args[0])
topdicts = lib.getElementsByTagName("dict")
songlist = topdicts[1].getElementsByTagName("dict")
samplelist = sample(songlist, 10);
for song in samplelist:
... pull out name, artist, album etc
... format into a table