view bin/listsongs @ 779:d3f6830f55a2

stop output entry box bouncing around Ignore-this: 6ecd3e9ca8364290ea1649ea10a4c88e
author drewp@bigasterisk.com
date Sat, 16 Jun 2012 23:46:21 +0000
parents d8202a0a7fd5
children 27d2f148b630
line wrap: on
line source

#!bin/python

"""for completion, print the available song uris on stdout

in .zshrc:

function _songs { local expl;  _description files expl 'songs';  compadd "$expl[@]" - `${LIGHT9_SHOW}/../../bin/listsongs` }
compdef _songs curvecalc
"""

import run_local
from light9 import showconfig
from light9.namespaces import L9
from rdflib import RDF
graph = showconfig.getGraph()

for song in graph.subjects(RDF.type, L9['Song']):
    print song