view bin/listsongs @ 1738:a2faa1b70dbe

redoing Note draw object and note adjusters Ignore-this: 85e32623f7696a7c8ed47ab8eac05b66
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 17 May 2018 07:44:34 +0000
parents 6fa4288da8a6
children 7772cc48e016
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
"""

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

graph = SyncedGraph(networking.rdfdb.url, "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()