view bin/listsongs @ 876:e263c4bd73f9

pass dmx choice into dmxserver Ignore-this: 182e13858be1aa68fc956e345dbbf8ed
author Drew Perttula <drewp@bigasterisk.com>
date Fri, 07 Jun 2013 07:13:24 +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