Files @ 1f877950ad28
Branch filter:

Location: light9/bin/listsongs

Drew Perttula
new picamserve for raspberry pi camera -> http, especially with crop control
Ignore-this: 38fc34a6eff577c05129df87d6133a95
#!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
"""

from run_local import log
from twisted.internet import reactor
from rdflib import RDF
from light9.namespaces import L9
from light9.rdfdb.syncedgraph import SyncedGraph

graph = SyncedGraph("listsongs")

@graph.initiallySynced.addCallback
def printSongs(result):
    with graph.currentState() as current:
        for song in current.subjects(RDF.type, L9['Song']):
            print song
    reactor.stop()

reactor.run()