Mercurial > code > home > repos > light9
view bin/listsongs @ 684:83c239d3fd33
a note about where to use nt instead of n3, but i'm not doing it yet
Ignore-this: 5fd66a91e57fb2266bdc2dbc11d0f1c7
author | drewp@bigasterisk.com |
---|---|
date | Tue, 21 Jun 2011 02:03:31 +0000 |
parents | 8a59efa577c1 |
children | d8202a0a7fd5 |
line wrap: on
line source
#!/usr/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