Mercurial > code > home > repos > light9
view bin/listsongs @ 739:2013aba52d16
show data
Ignore-this: 815ae2c4376a3bc9a3d7272bec8c8ac3
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Fri, 15 Jun 2012 07:52:05 +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