view bin/listsongs @ 803:ce4fffe8e413

update SC to read rdf graph Ignore-this: 7f6788bae887723c9ac12644c1a382da
author drewp@bigasterisk.com
date Wed, 18 Jul 2012 09:59:10 +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